----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 349 | // Constructor |
| 350 | //----------------------------------------------------------------------------- |
| 351 | CentralScene::CentralScene |
| 352 | ( |
| 353 | uint32 const _homeId, |
| 354 | uint8 const _nodeId |
| 355 | ): |
| 356 | CommandClass( _homeId, _nodeId ), |
| 357 | m_slowrefresh( false ), |
| 358 | m_sequence( 0 ) |
| 359 | { |
| 360 | m_dom.EnableFlag(STATE_FLAG_CS_SCENECOUNT, 0); |
| 361 | m_dom.EnableFlag(STATE_FLAG_CS_CLEARTIMEOUT, 1000); |
| 362 | Timer::SetDriver(GetDriver()); |
| 363 | SetStaticRequest( StaticRequest_Values ); |
| 364 | } |
| 365 | |
| 366 | |
| 367 | //----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected