File tree 2 files changed +0
-10
lines changed
examples/refrigerator-app/silabs
2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,6 @@ using namespace chip::app::Clusters::RefrigeratorAndTemperatureControlledCabinet
39
39
using namespace chip ::DeviceLayer;
40
40
using chip::Protocols::InteractionModel::Status;
41
41
42
- #define MIN_TEMP_COLD_CABINATE 0
43
- #define MAX_TEMP_COLD_CABINATE 7
44
- #define MIN_TEMP_FREEZER_CABINATE -25
45
- #define MAX_TEMP_FREEZER_CABINATE -15
46
-
47
42
class RefrigeratorManager
48
43
{
49
44
public:
Original file line number Diff line number Diff line change @@ -74,11 +74,6 @@ CHIP_ERROR RefrigeratorManager::Init()
74
74
SetTagList (kColdCabinetEndpointId , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(refrigeratorTagList));
75
75
SetTagList (kFreezeCabinetEndpointId , Span<const Clusters::Descriptor::Structs::SemanticTagStruct::Type>(freezerTagList));
76
76
77
- TempCtrlAttr::MinTemperature::Set (kColdCabinetEndpointId , MIN_TEMP_COLD_CABINATE);
78
- TempCtrlAttr::MaxTemperature::Set (kColdCabinetEndpointId , MAX_TEMP_COLD_CABINATE);
79
- TempCtrlAttr::MinTemperature::Set (kFreezeCabinetEndpointId , MIN_TEMP_FREEZER_CABINATE);
80
- TempCtrlAttr::MaxTemperature::Set (kFreezeCabinetEndpointId , MAX_TEMP_FREEZER_CABINATE);
81
-
82
77
app::Clusters::TemperatureControl::SetInstance (&sAppSupportedTemperatureLevelsDelegate );
83
78
return CHIP_NO_ERROR;
84
79
}
You can’t perform that action at this time.
0 commit comments