@@ -105,23 +105,24 @@ void emberAfRefrigeratorAlarmClusterInitCallback(EndpointId endpoint) {}
105
105
*/
106
106
void emberAfTemperatureControlClusterInitCallback (EndpointId endpoint) {}
107
107
108
- /* *
109
- * @brief Handles the SetTemperature command for the Temperature Control Cluster.
110
- *
111
- * This function is called when the SetTemperature command is received from a client.
112
- * It is responsible for setting the temperature for the cabinet as per the command data.
113
- *
114
- * @param CommandHandler commandObj Pointer to the command handler object.
115
- * @param const ConcreteCommandPath commandPath The path of the command received.
116
- * @param const DecodableType & commandData
117
- * The data decoded from the SetTemperature command, which includes the desired temperature.
118
- *
119
- * @return bool Returns true if the command was handled successfully, false otherwise.
120
- *
121
- * @note The actual implementation to set the temperature is yet to be added.
122
- */
123
- bool emberAfTemperatureControlClusterSetTemperatureCallback (
124
- chip::app::CommandHandler * commandObj, const chip::app::ConcreteCommandPath & commandPath,
125
- const chip::app::Clusters::TemperatureControl::Commands::SetTemperature::DecodableType & commandData) {
126
- // TODO: Add implementation to set the temperature for the cabinet
127
- }
108
+ // /**
109
+ // * @brief Handles the SetTemperature command for the Temperature Control Cluster.
110
+ // *
111
+ // * This function is called when the SetTemperature command is received from a client.
112
+ // * It is responsible for setting the temperature for the cabinet as per the command data.
113
+ // *
114
+ // * @param CommandHandler commandObj Pointer to the command handler object.
115
+ // * @param const ConcreteCommandPath commandPath The path of the command received.
116
+ // * @param const DecodableType & commandData
117
+ // * The data decoded from the SetTemperature command, which includes the desired temperature.
118
+ // *
119
+ // * @return bool Returns true if the command was handled successfully, false otherwise.
120
+ // *
121
+ // * @note The actual implementation to set the temperature is yet to be added.
122
+ // */
123
+ // bool emberAfTemperatureControlClusterSetTemperatureCallback(
124
+ // chip::app::CommandHandler * commandObj, const chip::app::ConcreteCommandPath & commandPath,
125
+ // const chip::app::Clusters::TemperatureControl::Commands::SetTemperature::DecodableType & commandData) {
126
+ // // TODO: Add implementation to set the temperature for the cabinet
127
+ // return true;
128
+ // }
0 commit comments