summaryrefslogtreecommitdiffstats
path: root/movement/movement.h
diff options
context:
space:
mode:
Diffstat (limited to 'movement/movement.h')
-rw-r--r--movement/movement.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/movement/movement.h b/movement/movement.h
index 2e7630b2..9fa540ca 100644
--- a/movement/movement.h
+++ b/movement/movement.h
@@ -215,7 +215,11 @@ typedef struct {
// LED stuff
int16_t light_ticks;
-
+
+ // alarm stuff
+ int16_t alarm_ticks;
+ bool is_buzzing;
+
// button tracking for long press
uint8_t light_down_timestamp;
uint8_t mode_down_timestamp;
@@ -241,4 +245,7 @@ void movement_move_to_next_face();
void movement_illuminate_led();
void movement_request_tick_frequency(uint8_t freq);
+void movement_play_signal();
+void movement_play_alarm();
+
#endif // MOVEMENT_H_