/** * * Copyright (c) 2023 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. */ #pragma once #include "laundry-washer-controls-delegate.h" #include #include #include namespace chip { namespace app { namespace Clusters { namespace LaundryWasherControls { /** * @brief LaundryWasherControls Server Plugin class */ class LaundryWasherControlsServer : public AttributeAccessInterface { public: LaundryWasherControlsServer() : AttributeAccessInterface(Optional::Missing(), LaundryWasherControls::Id) {} static LaundryWasherControlsServer & Instance(); static constexpr uint8_t kMaxSpinSpeedLength = 64; /** * Set the default delegate of laundry washer server at endpoint x * @param endpoint ID of the endpoint * @param delegate The default delegate at the endpoint */ static void SetDefaultDelegate(EndpointId endpoint, Delegate * delegate); /** * API to set/get the SpinSpeedCurrent attribute */ Protocols::InteractionModel::Status SetSpinSpeedCurrent(EndpointId endpointId, DataModel::Nullable spinSpeedCurrent); Protocols::InteractionModel::Status GetSpinSpeedCurrent(EndpointId endpointId, DataModel::Nullable & spinSpeedCurrent); /** * API to set/get the NumberOfRinses attribute */ Protocols::InteractionModel::Status SetNumberOfRinses(EndpointId endpointId, NumberOfRinsesEnum newNumberOfRinses); Protocols::InteractionModel::Status GetNumberOfRinses(EndpointId endpointId, NumberOfRinsesEnum & numberOfRinses); private: CHIP_ERROR Read(const ConcreteReadAttributePath & aPath, AttributeValueEncoder & aEncoder) override; CHIP_ERROR ReadSpinSpeeds(const ConcreteReadAttributePath & aPath, AttributeValueEncoder & aEncoder); CHIP_ERROR ReadSupportedRinses(const ConcreteReadAttributePath & aPath, AttributeValueEncoder & aEncoder); static LaundryWasherControlsServer sInstance; }; } // namespace LaundryWasherControls } // namespace Clusters } // namespace app } // namespace chip