| /* |
| * |
| * Copyright (c) 2021 Project CHIP Authors |
| * Copyright (c) 2019 Google LLC. |
| * 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. |
| */ |
| |
| #include "SwitchManager.h" |
| #include "binding-handler.h" |
| #include <lib/support/CHIPMem.h> |
| #include <lib/support/logging/CHIPLogging.h> |
| |
| SwitchManager SwitchManager::sSwitch; |
| using namespace ::chip; |
| using namespace chip::DeviceLayer; |
| static uint8_t multiPressCount = 1; |
| |
| void SwitchManager::Init(void) |
| { |
| uint8_t multiPressMax = 2; |
| chip::app::Clusters::Switch::Attributes::MultiPressMax::Set(GENERICSWITCH_ENDPOINT_ID, multiPressMax); |
| } |
| |
| void SwitchManager::ToggleHandler(AppEvent * aEvent) |
| { |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| BindingCommandData * data = Platform::New<BindingCommandData>(); |
| VerifyOrReturn(data != nullptr, ChipLogError(NotSpecified, "CHIP_ERROR_NO_MEMORY")); |
| |
| data->localEndpointId = SWITCH_ENDPOINT_ID; |
| data->clusterId = chip::app::Clusters::OnOff::Id; |
| data->commandId = chip::app::Clusters::OnOff::Commands::Toggle::Id; |
| data->isGroup = true; |
| |
| DeviceLayer::PlatformMgr().ScheduleWork(SwitchWorkerFunction, reinterpret_cast<intptr_t>(data)); |
| } |
| |
| void SwitchManager::LevelHandler(AppEvent * aEvent) |
| { |
| static uint8_t sLevel; |
| |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| BindingCommandData * data = Platform::New<BindingCommandData>(); |
| VerifyOrReturn(data != nullptr, ChipLogError(NotSpecified, "CHIP_ERROR_NO_MEMORY")); |
| |
| data->localEndpointId = SWITCH_ENDPOINT_ID; |
| data->clusterId = chip::app::Clusters::LevelControl::Id; |
| data->commandId = chip::app::Clusters::LevelControl::Commands::MoveToLevel::Id; |
| data->level = (sLevel == MIN_LEVEL) ? MAX_LEVEL : MIN_LEVEL; |
| sLevel = data->level; |
| |
| ChipLogProgress(NotSpecified, "Level - %d", sLevel); |
| DeviceLayer::PlatformMgr().ScheduleWork(SwitchWorkerFunction, reinterpret_cast<intptr_t>(data)); |
| } |
| |
| void SwitchManager::ColorHandler(AppEvent * aEvent) |
| { |
| static uint8_t color; |
| |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| BindingCommandData * data = Platform::New<BindingCommandData>(); |
| VerifyOrReturn(data != nullptr, ChipLogError(NotSpecified, "CHIP_ERROR_NO_MEMORY")); |
| |
| data->localEndpointId = SWITCH_ENDPOINT_ID; |
| data->clusterId = chip::app::Clusters::ColorControl::Id; |
| data->commandId = chip::app::Clusters::ColorControl::Commands::MoveToColor::Id; |
| if (color == COLOR_AMBER) |
| { |
| color = COLOR_GREEN; |
| data->colorXY.x = 36044; |
| data->colorXY.y = 29490; |
| ChipLogProgress(NotSpecified, "Color - AMBER"); |
| } |
| else |
| { |
| color = COLOR_AMBER; |
| data->colorXY.x = 7536; |
| data->colorXY.y = 54131; |
| ChipLogProgress(NotSpecified, "Color - GREEN"); |
| } |
| |
| DeviceLayer::PlatformMgr().ScheduleWork(SwitchWorkerFunction, reinterpret_cast<intptr_t>(data)); |
| } |
| |
| void SwitchManager::GenericSwitchInitialPressHandler(AppEvent * aEvent) |
| { |
| // Press moves Position from 0 (idle) to 1 (press) |
| uint8_t newPosition = 1; |
| |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| ChipLogDetail(NotSpecified, "GenericSwitchInitialPress new position %d", newPosition); |
| SystemLayer().ScheduleLambda([newPosition] { |
| chip::app::Clusters::Switch::Attributes::CurrentPosition::Set(GENERICSWITCH_ENDPOINT_ID, newPosition); |
| // InitialPress event takes newPosition as event data |
| chip::app::Clusters::SwitchServer::Instance().OnInitialPress(GENERICSWITCH_ENDPOINT_ID, newPosition); |
| }); |
| } |
| |
| void SwitchManager::GenericSwitchLongPressHandler(AppEvent * aEvent) |
| { |
| // Press moves Position from 0 (idle) to 1 (press) |
| uint8_t newPosition = 1; |
| |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| ChipLogDetail(NotSpecified, "GenericSwitchLongPress new position %d", newPosition); |
| SystemLayer().ScheduleLambda([newPosition] { |
| // LongPress event takes newPosition as event data |
| chip::app::Clusters::SwitchServer::Instance().OnLongPress(GENERICSWITCH_ENDPOINT_ID, newPosition); |
| }); |
| } |
| |
| void SwitchManager::GenericSwitchShortReleaseHandler(AppEvent * aEvent) |
| { |
| // Release moves Position from 1 (press) to 0 |
| uint8_t newPosition = 0; |
| uint8_t previousPosition = 1; |
| |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| ChipLogDetail(NotSpecified, "GenericSwitchShortRelease new position %d", newPosition); |
| SystemLayer().ScheduleLambda([newPosition, previousPosition] { |
| chip::app::Clusters::Switch::Attributes::CurrentPosition::Set(GENERICSWITCH_ENDPOINT_ID, newPosition); |
| // Short Release event takes newPosition as event data |
| chip::app::Clusters::SwitchServer::Instance().OnShortRelease(GENERICSWITCH_ENDPOINT_ID, previousPosition); |
| }); |
| } |
| |
| void SwitchManager::GenericSwitchLongReleaseHandler(AppEvent * aEvent) |
| { |
| // Release moves Position from 1 (press) to 0 |
| uint8_t newPosition = 0; |
| uint8_t previousPosition = 1; |
| |
| if (aEvent->Type != AppEvent::kEventType_Button) |
| { |
| ChipLogError(NotSpecified, "Event type not supported!"); |
| return; |
| } |
| |
| ChipLogDetail(NotSpecified, "GenericSwitchLongRelease new position %d", newPosition); |
| SystemLayer().ScheduleLambda([newPosition, previousPosition] { |
| chip::app::Clusters::Switch::Attributes::CurrentPosition::Set(GENERICSWITCH_ENDPOINT_ID, newPosition); |
| // LongRelease event takes newPosition as event data |
| chip::app::Clusters::SwitchServer::Instance().OnLongRelease(GENERICSWITCH_ENDPOINT_ID, previousPosition); |
| }); |
| } |
| |
| void SwitchManager::GenericSwitchMultipressOngoingHandler(AppEvent * aEvent) |
| { |
| uint8_t newPosition = 1; |
| |
| multiPressCount++; |
| |
| ChipLogDetail(NotSpecified, "GenericSwitchMultiPressOngoing (%d)", multiPressCount); |
| |
| SystemLayer().ScheduleLambda([newPosition] { |
| chip::app::Clusters::SwitchServer::Instance().OnMultiPressOngoing(GENERICSWITCH_ENDPOINT_ID, newPosition, multiPressCount); |
| }); |
| } |
| |
| void SwitchManager::GenericSwitchMultipressCompleteHandler(AppEvent * aEvent) |
| { |
| uint8_t previousPosition = 0; |
| |
| ChipLogProgress(NotSpecified, "GenericSwitchMultiPressComplete (%d)", multiPressCount); |
| |
| SystemLayer().ScheduleLambda([previousPosition] { |
| chip::app::Clusters::SwitchServer::Instance().OnMultiPressComplete(GENERICSWITCH_ENDPOINT_ID, previousPosition, |
| multiPressCount); |
| }); |
| |
| multiPressCount = 1; |
| } |