| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * Copyright (c) 2023 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 "LEDWidget.h"
- #include "PWMDevice.h"
- #include <app/clusters/window-covering-server/window-covering-delegate.h>
- #include <app/clusters/window-covering-server/window-covering-server.h>
- #include <cstdint>
- using namespace chip::app::Clusters::WindowCovering;
- class WindowCovering
- {
- public:
- struct AttributeUpdateData
- {
- chip::EndpointId mEndpoint;
- chip::AttributeId mAttributeId;
- };
- WindowCovering();
- static WindowCovering & Instance()
- {
- static WindowCovering sInstance;
- return sInstance;
- }
- PWMDevice & GetLiftIndicator() { return mLiftIndicator; }
- PWMDevice & GetTiltIndicator() { return mTiltIndicator; }
- void StartMove(WindowCoveringType aMoveType);
- void SetSingleStepTarget(OperationalState aDirection);
- void SetMoveType(WindowCoveringType aMoveType) { mCurrentUIMoveType = aMoveType; }
- WindowCoveringType GetMoveType() { return mCurrentUIMoveType; }
- void PositionLEDUpdate(WindowCoveringType aMoveType);
- static void SchedulePostAttributeChange(chip::EndpointId aEndpoint, chip::AttributeId aAttributeId);
- static constexpr chip::EndpointId Endpoint() { return 1; };
- private:
- void SetBrightness(WindowCoveringType aMoveType, uint16_t aPosition);
- void SetTargetPosition(OperationalState aDirection, chip::Percent100ths aPosition);
- uint8_t PositionToBrightness(uint16_t aPosition, WindowCoveringType aMoveType);
- static void UpdateOperationalStatus(WindowCoveringType aMoveType, OperationalState aDirection);
- static bool TargetCompleted(WindowCoveringType aMoveType, NPercent100ths aCurrent, NPercent100ths aTarget);
- static void StartTimer(WindowCoveringType aMoveType, uint32_t aTimeoutMs);
- static chip::Percent100ths CalculateSingleStep(WindowCoveringType aMoveType);
- static void DriveCurrentLiftPosition(intptr_t);
- static void DriveCurrentTiltPosition(intptr_t);
- static void MoveTimerTimeoutCallback(chip::System::Layer * systemLayer, void * appState);
- static void DoPostAttributeChange(intptr_t aArg);
- WindowCoveringType mCurrentUIMoveType;
- PWMDevice mLiftIndicator;
- PWMDevice mTiltIndicator;
- bool mInLiftMove{ false };
- bool mInTiltMove{ false };
- };
|