1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-11-16 12:09:10 +01:00
doorlockd-mirror/doorlockd/lib/doormessage.h

12 lines
218 B
C
Raw Normal View History

#ifndef DOORMESSAGE_H
#define DOORMESSAGE_H
struct Doormessage {
bool isOpen = { false };
bool isUnlockButton = { false };
bool isLockButton = { false };
bool isEmergencyUnlock = { false };
};
#endif