----------------------------------------------------------------------------- Constructor -----------------------------------------------------------------------------
| 99 | // Constructor |
| 100 | //----------------------------------------------------------------------------- |
| 101 | ThermostatSetpoint::ThermostatSetpoint |
| 102 | ( |
| 103 | uint32 const _homeId, |
| 104 | uint8 const _nodeId |
| 105 | ): |
| 106 | CommandClass( _homeId, _nodeId ) |
| 107 | { |
| 108 | m_com.EnableFlag(COMPAT_FLAG_TSSP_BASE, 1); |
| 109 | m_com.EnableFlag(COMPAT_FLAG_TSSP_ALTTYPEINTERPRETATION, true); |
| 110 | SetStaticRequest( StaticRequest_Values ); |
| 111 | } |
| 112 | |
| 113 | //----------------------------------------------------------------------------- |
| 114 | // <ThermostatSetpoint::RequestState> |
nothing calls this directly
no test coverage detected