| /* |
| * |
| * Copyright (c) 2022 Project CHIP Authors |
| * |
| * 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. |
| */ |
| |
| // THIS FILE IS GENERATED BY ZAP |
| // This file is generated from clusters-Enums-Check.h.zapt |
| |
| #pragma once |
| |
| #include <clusters/FanControl/Enums.h> |
| |
| namespace chip { |
| namespace app { |
| namespace Clusters { |
| static auto __attribute__((unused)) EnsureKnownEnumValue(FanControl::AirflowDirectionEnum val) |
| { |
| using EnumType = FanControl::AirflowDirectionEnum; |
| switch (val) |
| { |
| case EnumType::kForward: |
| case EnumType::kReverse: |
| return val; |
| default: |
| return EnumType::kUnknownEnumValue; |
| } |
| } |
| static auto __attribute__((unused)) EnsureKnownEnumValue(FanControl::FanModeEnum val) |
| { |
| using EnumType = FanControl::FanModeEnum; |
| switch (val) |
| { |
| case EnumType::kOff: |
| case EnumType::kLow: |
| case EnumType::kMedium: |
| case EnumType::kHigh: |
| case EnumType::kOn: |
| case EnumType::kAuto: |
| case EnumType::kSmart: |
| return val; |
| default: |
| return EnumType::kUnknownEnumValue; |
| } |
| } |
| static auto __attribute__((unused)) EnsureKnownEnumValue(FanControl::FanModeSequenceEnum val) |
| { |
| using EnumType = FanControl::FanModeSequenceEnum; |
| switch (val) |
| { |
| case EnumType::kOffLowMedHigh: |
| case EnumType::kOffLowHigh: |
| case EnumType::kOffLowMedHighAuto: |
| case EnumType::kOffLowHighAuto: |
| case EnumType::kOffHighAuto: |
| case EnumType::kOffHigh: |
| return val; |
| default: |
| return EnumType::kUnknownEnumValue; |
| } |
| } |
| static auto __attribute__((unused)) EnsureKnownEnumValue(FanControl::StepDirectionEnum val) |
| { |
| using EnumType = FanControl::StepDirectionEnum; |
| switch (val) |
| { |
| case EnumType::kIncrease: |
| case EnumType::kDecrease: |
| return val; |
| default: |
| return EnumType::kUnknownEnumValue; |
| } |
| } |
| } // namespace Clusters |
| } // namespace app |
| } // namespace chip |