/* * * Copyright (c) 2024 Project CHIP Authors * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include namespace chip { namespace app { namespace Clusters { namespace RefrigeratorAndTemperatureControlledCabinetMode { const uint8_t ModeNormal = 0; const uint8_t ModeRapidCool = 1; const uint8_t ModeRapidFreeze = 2; /// This is an application level delegate to handle LaundryWasherMode commands according to the specific business logic. class RefrigeratorAndTemperatureControlledCabinetModeDelegate : public ModeBase::Delegate { private: using ModeTagStructType = detail::Structs::ModeTagStruct::Type; ModeTagStructType modeTagsNoarmal[1] = { { .value = to_underlying(ModeTag::kAuto) } }; ModeTagStructType modeTagsRapidCool[1] = { { .value = to_underlying(ModeTag::kRapidCool) } }; ModeTagStructType modeTagsRapidFreeze[3] = { { .value = to_underlying(ModeBase::ModeTag::kMax) }, { .value = to_underlying(ModeTag::kRapidFreeze) } }; const detail::Structs::ModeOptionStruct::Type kModeOptions[3] = { detail::Structs::ModeOptionStruct::Type{ .label = CharSpan::fromCharString("Normal"), .mode = ModeNormal, .modeTags = DataModel::List(modeTagsNoarmal) }, detail::Structs::ModeOptionStruct::Type{ .label = CharSpan::fromCharString("Rapid Cool"), .mode = ModeRapidCool, .modeTags = DataModel::List(modeTagsRapidCool) }, detail::Structs::ModeOptionStruct::Type{ .label = CharSpan::fromCharString("Rapid Freeze"), .mode = ModeRapidFreeze, .modeTags = DataModel::List(modeTagsRapidFreeze) }, }; CHIP_ERROR Init() override; void HandleChangeToMode(uint8_t mode, ModeBase::Commands::ChangeToModeResponse::Type & response) override; CHIP_ERROR GetModeLabelByIndex(uint8_t modeIndex, MutableCharSpan & label) override; CHIP_ERROR GetModeValueByIndex(uint8_t modeIndex, uint8_t & value) override; CHIP_ERROR GetModeTagsByIndex(uint8_t modeIndex, DataModel::List & tags) override; public: ~RefrigeratorAndTemperatureControlledCabinetModeDelegate() override = default; }; ModeBase::Instance * Instance(); void Shutdown(); } // namespace RefrigeratorAndTemperatureControlledCabinetMode } // namespace Clusters } // namespace app } // namespace chip