mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2025-01-09 07:10:17 +00:00
14 lines
472 B
C
14 lines
472 B
C
#pragma once
|
|
|
|
#include "../modules/flipp_pomodoro.h"
|
|
#include <notification/notification_messages.h>
|
|
|
|
extern const NotificationSequence work_start_notification;
|
|
extern const NotificationSequence rest_start_notification;
|
|
|
|
/// @brief Defines a notification sequence that should indicate start of specific pomodoro stage.
|
|
const NotificationSequence *stage_start_notification_sequence_map[] = {
|
|
[Work] = &work_start_notification,
|
|
[Rest] = &rest_start_notification,
|
|
};
|