default alarm status values
This commit is contained in:
parent
8a419375aa
commit
9cf8305ad8
@ -4,11 +4,13 @@
|
||||
const int DOOR_OPEN = HIGH;
|
||||
const int DOOR_CLOSED = LOW;
|
||||
struct AlarmStatus{
|
||||
int doorStatus;
|
||||
bool doorChanged;
|
||||
bool isArmed;
|
||||
bool isFired;
|
||||
bool ledOn;
|
||||
int doorStatus =DOOR_OPEN;
|
||||
bool doorChanged =false;
|
||||
bool isArmed = false;
|
||||
bool isFired =false;
|
||||
bool ledOn =true;
|
||||
bool muted =false;
|
||||
bool silent =false; //low sound
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user