1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-30 09:43:31 +02:00
doorlockd-mirror/doorlockd/lib/doormessage.h
Ralf Ramsauer 60ed23486b Improved directory structure
Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
2015-09-29 14:33:53 +02:00

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