@@ -62,10 +62,22 @@ const Clusters::Descriptor::Structs::SemanticTagStruct::Type freezerTagList[]
62
62
#include " chef-dishwasher-mode-delegate-impl.h"
63
63
#endif // MATTER_DM_PLUGIN_DISHWASHER_MODE_SERVER
64
64
65
+ #ifdef MATTER_DM_PLUGIN_LAUNDRY_WASHER_MODE_SERVER
66
+ #include " chef-laundry-washer-mode.h"
67
+ #endif // MATTER_DM_PLUGIN_LAUNDRY_WASHER_MODE_SERVER
68
+
69
+ #ifdef MATTER_DM_PLUGIN_LAUNDRY_WASHER_CONTROLS_SERVER
70
+ #include " chef-laundry-washer-controls-delegate-impl.h"
71
+ #endif // MATTER_DM_PLUGIN_LAUNDRY_WASHER_CONTROLS_SERVER
72
+
65
73
#ifdef MATTER_DM_PLUGIN_OPERATIONAL_STATE_SERVER
66
74
#include " chef-operational-state-delegate-impl.h"
67
75
#endif // MATTER_DM_PLUGIN_OPERATIONAL_STATE_SERVER
68
76
77
+ #ifdef MATTER_DM_PLUGIN_TEMPERATURE_CONTROL_SERVER
78
+ #include " temperature-control/static-supported-temperature-levels.h"
79
+ #endif // MATTER_DM_PLUGIN_TEMPERATURE_CONTROL_SERVER
80
+
69
81
Protocols::InteractionModel::Status emberAfExternalAttributeReadCallback (EndpointId endpoint, ClusterId clusterId,
70
82
const EmberAfAttributeMetadata * attributeMetadata,
71
83
uint8_t * buffer, uint16_t maxReadLength)
@@ -124,6 +136,10 @@ Protocols::InteractionModel::Status emberAfExternalAttributeReadCallback(Endpoin
124
136
case chip::app::Clusters::DishwasherMode::Id:
125
137
return chefDishwasherModeReadCallback (endpoint, clusterId, attributeMetadata, buffer, maxReadLength);
126
138
#endif // MATTER_DM_PLUGIN_DISHWASHER_MODE_SERVER
139
+ #ifdef MATTER_DM_PLUGIN_LAUNDRY_WASHER_MODE_SERVER
140
+ case chip::app::Clusters::LaundryWasherMode::Id:
141
+ return chefLaundryWasherModeReadCallback (endpoint, clusterId, attributeMetadata, buffer, maxReadLength);
142
+ #endif // MATTER_DM_PLUGIN_LAUNDRY_WASHER_MODE_SERVER
127
143
#ifdef MATTER_DM_PLUGIN_OPERATIONAL_STATE_SERVER
128
144
case chip::app::Clusters::OperationalState::Id:
129
145
return chefOperationalStateReadCallback (endpoint, clusterId, attributeMetadata, buffer, maxReadLength);
@@ -202,6 +218,10 @@ Protocols::InteractionModel::Status emberAfExternalAttributeWriteCallback(Endpoi
202
218
case chip::app::Clusters::DishwasherMode::Id:
203
219
return chefDishwasherModeWriteCallback (endpoint, clusterId, attributeMetadata, buffer);
204
220
#endif // MATTER_DM_PLUGIN_DISHWASHER_MODE_SERVER
221
+ #ifdef MATTER_DM_PLUGIN_LAUNDRY_WASHER_MODE_SERVER
222
+ case chip::app::Clusters::LaundryWasherMode::Id:
223
+ return chefLaundryWasherModeWriteCallback (endpoint, clusterId, attributeMetadata, buffer);
224
+ #endif // MATTER_DM_PLUGIN_LAUNDRY_WASHER_MODE_SERVER
205
225
#ifdef MATTER_DM_PLUGIN_OPERATIONAL_STATE_SERVER
206
226
case chip::app::Clusters::OperationalState::Id:
207
227
return chefOperationalStateWriteCallback (endpoint, clusterId, attributeMetadata, buffer);
0 commit comments