notifications.h 472 B

12345678910111213
  1. #pragma once
  2. #include "../modules/flipp_pomodoro.h"
  3. #include <notification/notification_messages.h>
  4. extern const NotificationSequence work_start_notification;
  5. extern const NotificationSequence rest_start_notification;
  6. /// @brief Defines a notification sequence that should indicate start of specific pomodoro stage.
  7. const NotificationSequence *stage_start_notification_sequence_map[] = {
  8. [Work] = &work_start_notification,
  9. [Rest] = &rest_start_notification,
  10. };