mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-12-22 18:34:25 +01:00
8ed116bf7f
Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
11 lines
189 B
C
11 lines
189 B
C
#ifndef DOORMESSAGE_H
|
|
#define DOORMESSAGE_H
|
|
|
|
struct Doormessage {
|
|
bool isUnlockButton = { false };
|
|
bool isLockButton = { false };
|
|
bool isEmergencyUnlock = { false };
|
|
};
|
|
|
|
#endif
|