----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 137 | // Constructor |
| 138 | //----------------------------------------------------------------------------- |
| 139 | DoorLockLogging::DoorLockLogging |
| 140 | ( |
| 141 | uint32 const _homeId, |
| 142 | uint8 const _nodeId |
| 143 | ): |
| 144 | CommandClass( _homeId, _nodeId ), |
| 145 | m_CurRecord(0) |
| 146 | { |
| 147 | m_dom.EnableFlag(STATE_FLAG_DOORLOCKLOG_MAXRECORDS, 0); |
| 148 | SetStaticRequest( StaticRequest_Values ); |
| 149 | } |
| 150 | |
| 151 | //----------------------------------------------------------------------------- |
| 152 | // <DoorLockLogging::RequestState> |
nothing calls this directly
no test coverage detected