blob: 12415839b6425c972c2bc703e1f2fd22af9b41e9 [file] [log] [blame]
/*
*
* 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.
*/
#include "AppTask.h"
#include "ButtonManager.h"
#include "WindowCovering.h"
LOG_MODULE_DECLARE(app, CONFIG_CHIP_APP_LOG_LEVEL);
namespace {
constexpr int kToggleMoveTypeTriggerTimeout = 700;
k_timer sToggleMoveTypeTimer;
#if CONFIG_CHIP_BUTTON_MANAGER_IRQ_MODE
#define OPEN_WINDOW_BUTTON BUTTON_EXAMPLE_ACTION
#define CLOSE_WINDOW_BUTTON BUTTON_THREAD_START
const struct gpio_dt_spec sOpenWindowButtonDt = OPEN_WINDOW_BUTTON;
const struct gpio_dt_spec sCloseWindowButtonDt = CLOSE_WINDOW_BUTTON;
#else
const struct gpio_dt_spec sButtonCol1Dt = BUTTON_COL_1;
const struct gpio_dt_spec sButtonCol2Dt = BUTTON_COL_2;
const struct gpio_dt_spec sButtonRow1Dt = BUTTON_ROW_1;
const struct gpio_dt_spec sButtonRow2Dt = BUTTON_ROW_2;
#endif
Button sOpenButton;
Button sCloseButton;
bool sIsToggleMoveTypeTimerActive = false;
} // namespace
AppTask AppTask::sAppTask;
CHIP_ERROR AppTask::Init(void)
{
InitCommonParts();
#if CONFIG_CHIP_BUTTON_MANAGER_IRQ_MODE
sOpenButton.Configure(&sOpenWindowButtonDt, OpenActionAndToggleMoveTypeButtonEventHandler);
sCloseButton.Configure(&sCloseWindowButtonDt, CloseActionButtonEventHandler);
#else
sOpenButton.Configure(&sButtonRow1Dt, &sButtonCol2Dt, OpenActionAndToggleMoveTypeButtonEventHandler);
sCloseButton.Configure(&sButtonRow2Dt, &sButtonCol1Dt, CloseActionButtonEventHandler);
#endif
ButtonManagerInst().AddButton(sOpenButton);
ButtonManagerInst().AddButton(sCloseButton);
// Initialize ToggleMoveType timer
k_timer_init(&sToggleMoveTypeTimer, &AppTask::OpenTimerTimeoutCallback, nullptr);
k_timer_user_data_set(&sToggleMoveTypeTimer, this);
CHIP_ERROR err = ConnectivityMgr().SetBLEDeviceName("TelinkWindow");
if (err != CHIP_NO_ERROR)
{
LOG_ERR("SetBLEDeviceName fail");
return err;
}
return CHIP_NO_ERROR;
}
void AppTask::OpenActionAndToggleMoveTypeButtonEventHandler(void)
{
AppEvent event;
event.Type = AppEvent::kEventType_Button;
event.ButtonEvent.Action = kButtonPushEvent;
event.Handler = ToggleMoveTypeHandler;
sAppTask.PostEvent(&event);
}
void AppTask::CloseActionButtonEventHandler(void)
{
AppEvent event;
event.Type = AppEvent::kEventType_Button;
event.ButtonEvent.Action = kButtonPushEvent;
event.Handler = CloseHandler;
sAppTask.PostEvent(&event);
}
void AppTask::OpenTimerTimeoutCallback(k_timer * timer)
{
if (!timer)
{
return;
}
AppEvent event;
event.Type = AppEvent::kEventType_Timer;
event.Handler = OpenTimerEventHandler;
sAppTask.PostEvent(&event);
}
void AppTask::OpenTimerEventHandler(AppEvent * aEvent)
{
if (aEvent->Type != AppEvent::kEventType_Timer)
{
return;
}
sIsToggleMoveTypeTimerActive = false;
OpenHandler(aEvent);
}
void AppTask::ToggleMoveTypeHandler(AppEvent * aEvent)
{
if (!sIsToggleMoveTypeTimerActive)
{
k_timer_start(&sToggleMoveTypeTimer, K_MSEC(kToggleMoveTypeTriggerTimeout), K_NO_WAIT);
sIsToggleMoveTypeTimerActive = true;
}
else
{
k_timer_stop(&sToggleMoveTypeTimer);
sIsToggleMoveTypeTimerActive = false;
sAppTask.ToggleMoveType();
}
}
void AppTask::OpenHandler(AppEvent * aEvent)
{
WindowCovering::Instance().SetSingleStepTarget(OperationalState::MovingUpOrOpen);
}
void AppTask::CloseHandler(AppEvent * aEvent)
{
WindowCovering::Instance().SetSingleStepTarget(OperationalState::MovingDownOrClose);
}
void AppTask::ToggleMoveType()
{
if (WindowCovering::Instance().GetMoveType() == WindowCoveringType::Lift)
{
WindowCovering::Instance().SetMoveType(WindowCoveringType::Tilt);
LOG_INF("Window covering move: tilt");
}
else
{
WindowCovering::Instance().SetMoveType(WindowCoveringType::Lift);
LOG_INF("Window covering move: lift");
}
}