firmware/src/PowerFSM.h

19 lines
507 B
C
Raw Normal View History

2020-02-22 20:01:59 +00:00
#pragma once
#include "Fsm.h"
// See sw-design.md for documentation
#define EVENT_PRESS 1
#define EVENT_WAKE_TIMER 2
#define EVENT_RECEIVED_PACKET 3
#define EVENT_PACKET_FOR_PHONE 4
#define EVENT_RECEIVED_TEXT_MSG 5
#define EVENT_BOOT 6
2020-02-23 02:02:44 +00:00
#define EVENT_BLUETOOTH_PAIR 7
#define EVENT_NODEDB_UPDATED 8 // NodeDB has a big enough change that we think you should turn on the screen
#define EVENT_CONTACT_FROM_PHONE 9 // the phone just talked to us over bluetooth
2020-02-22 20:01:59 +00:00
2020-02-22 21:14:10 +00:00
extern Fsm powerFSM;
void PowerFSM_setup();