----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 81 | // Constructor |
| 82 | //----------------------------------------------------------------------------- |
| 83 | Alarm::Alarm |
| 84 | ( |
| 85 | uint32 const _homeId, |
| 86 | uint8 const _nodeId |
| 87 | ): |
| 88 | CommandClass( _homeId, _nodeId ), |
| 89 | m_v1Params(false), |
| 90 | m_ClearTimeout ( 5000 ) |
| 91 | { |
| 92 | Timer::SetDriver(GetDriver()); |
| 93 | SetStaticRequest( StaticRequest_Values ); |
| 94 | } |
| 95 | |
| 96 | |
| 97 | //----------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected