| 116 | |
| 117 | |
| 118 | Color::Color |
| 119 | ( |
| 120 | uint32 const _homeId, |
| 121 | uint8 const _nodeId |
| 122 | ): |
| 123 | CommandClass( _homeId, _nodeId ), |
| 124 | m_refreshinprogress ( false ), |
| 125 | m_coloridxcount ( 0 ) |
| 126 | { |
| 127 | m_com.EnableFlag(COMPAT_FLAG_COLOR_IDXBUG, false); |
| 128 | m_dom.EnableFlag(STATE_FLAG_COLOR_CHANNELS, 0); |
| 129 | |
| 130 | for (uint8 i = 0; i < 9; i++) |
| 131 | m_colorvalues[i] = 0; |
| 132 | SetStaticRequest( StaticRequest_Values ); |
| 133 | } |
| 134 | |
| 135 | //----------------------------------------------------------------------------- |
| 136 | // <Color::RequestState> |
nothing calls this directly
no test coverage detected