----------------------------------------------------------------------------- Create the values managed by this command class -----------------------------------------------------------------------------
| 227 | // Create the values managed by this command class |
| 228 | //----------------------------------------------------------------------------- |
| 229 | void TimeParameters::CreateVars |
| 230 | ( |
| 231 | uint8 const _instance |
| 232 | ) |
| 233 | { |
| 234 | if( Node* node = GetNodeUnsafe() ) |
| 235 | { |
| 236 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, TimeParametersIndex_Date, "Date", "", true, false, "", 0 ); |
| 237 | node->CreateValueString( ValueID::ValueGenre_System, GetCommandClassId(), _instance, TimeParametersIndex_Time, "Time", "", true, false, "", 0 ); |
| 238 | node->CreateValueButton( ValueID::ValueGenre_System, GetCommandClassId(), _instance, TimeParametersIndex_Set, "Set Date/Time", 0); |
| 239 | node->CreateValueButton( ValueID::ValueGenre_System, GetCommandClassId(), _instance, TimeParametersIndex_Refresh, "Refresh Date/Time", 0); |
| 240 | |
| 241 | } |
| 242 | } |
nothing calls this directly
no test coverage detected