2015-09-24 21:12:59 +02:00
|
|
|
#ifndef DOORMESSAGE_H
|
|
|
|
#define DOORMESSAGE_H
|
|
|
|
|
|
|
|
struct Doormessage {
|
2015-09-25 03:26:07 +02:00
|
|
|
bool isOpen = { false };
|
2015-09-24 21:12:59 +02:00
|
|
|
bool isUnlockButton = { false };
|
|
|
|
bool isLockButton = { false };
|
|
|
|
bool isEmergencyUnlock = { false };
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|