----------------------------------------------------------------------------- Create the values managed by this command class -----------------------------------------------------------------------------
| 348 | // Create the values managed by this command class |
| 349 | //----------------------------------------------------------------------------- |
| 350 | void ThermostatSetpoint::CreateVars |
| 351 | ( |
| 352 | uint8 const _instance, |
| 353 | uint8 const _index |
| 354 | ) |
| 355 | { |
| 356 | if( Node* node = GetNodeUnsafe() ) |
| 357 | { |
| 358 | node->CreateValueDecimal( ValueID::ValueGenre_User, GetCommandClassId(), _instance, _index, "Setpoint", "C", false, false, "0.0", 0 ); |
| 359 | } |
| 360 | } |
nothing calls this directly
no test coverage detected