mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-16 03:59:11 +01:00
60ed23486b
Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
12 lines
218 B
C
12 lines
218 B
C
#ifndef DOORMESSAGE_H
|
|
#define DOORMESSAGE_H
|
|
|
|
struct Doormessage {
|
|
bool isOpen = { false };
|
|
bool isUnlockButton = { false };
|
|
bool isLockButton = { false };
|
|
bool isEmergencyUnlock = { false };
|
|
};
|
|
|
|
#endif
|