-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAppTask.cpp
executable file
·234 lines (196 loc) · 6.13 KB
/
AppTask.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*
*
* Copyright (c) 2024 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 "AppConfig.h"
#include "AppEvent.h"
#include "LEDWidget.h"
#include "SensorManager.h"
#include <app/server/Server.h>
#include <app/util/attribute-storage.h>
#include <assert.h>
#include <lib/support/CodeUtils.h>
#include <platform/CHIPDeviceLayer.h>
#include <platform/silabs/platformAbstraction/SilabsPlatform.h>
#include <setup_payload/OnboardingCodesUtil.h>
#include <setup_payload/QRCodeSetupPayloadGenerator.h>
#include <setup_payload/SetupPayload.h>
#if DISPLAY_ENABLED
#include <SensorsUI.h>
#endif
using namespace chip;
using namespace chip::DeviceLayer::Silabs;
namespace {
LEDWidget sOccupancyLed;
enum class ButtonTypes : uint8_t
{
kFunctionButton = 0,
kApplicationButton = 1,
};
#if defined(SL_CATALOG_SIMPLE_LED_LED1_PRESENT)
constexpr uint8_t kOccupancyLedId = 1;
#else
constexpr uint8_t kOccupancyLedId = 0;
#endif
} // namespace
AppTask AppTask::sAppTask;
CHIP_ERROR AppTask::AppInit()
{
CHIP_ERROR err = CHIP_NO_ERROR;
GetPlatform().SetButtonsCb(AppTask::ButtonEventHandler);
#ifdef DISPLAY_ENABLED
GetLCD().Init((uint8_t *) SENSOR_NAME);
#endif
sOccupancyLed.Init(kOccupancyLedId);
sOccupancyLed.Set(false);
err = SensorManager::Init();
if (err != CHIP_NO_ERROR)
{
ChipLogError(AppServer, "SensorManager::Init failed");
appError(err);
}
// Initialize mOccupancyInstance with the required feature map
BitMask<app::Clusters::OccupancySensing::Feature> featureMap(app::Clusters::OccupancySensing::Feature::kOther);
mOccupancyInstance = std::make_unique<chip::app::Clusters::OccupancySensing::Instance>(featureMap);
mOccupancyInstance->Init();
#ifdef DISPLAY_ENABLED
mCurrentSensorUI = kSensorUIEnum::kOccupancySensor;
// Show QR Code if not provisioned
#ifdef QR_CODE_ENABLED
if (BaseApplication::GetProvisionStatus())
{
GetLCD().ShowQRCode(true);
mCurrentSensorUI = kSensorUIEnum::kQrCode;
}
#endif // QR_CODE_ENABLED
UpdateSensorDisplay();
#endif // DISPLAY_ENABLED
return err;
}
CHIP_ERROR AppTask::StartAppTask()
{
return BaseApplication::StartAppTask(AppTaskMain);
}
void AppTask::AppTaskMain(void * pvParameter)
{
AppEvent event;
osMessageQueueId_t sAppEventQueue = *(static_cast<osMessageQueueId_t *>(pvParameter));
CHIP_ERROR err = sAppTask.Init();
if (err != CHIP_NO_ERROR)
{
ChipLogError(AppServer, "AppTask Init Failed!");
appError(err);
}
#if !(defined(CHIP_CONFIG_ENABLE_ICD_SERVER) && CHIP_CONFIG_ENABLE_ICD_SERVER)
sAppTask.StartStatusLEDTimer();
#endif
ChipLogProgress(AppServer, "AppTask started.");
while (true)
{
osStatus_t eventReceived = osMessageQueueGet(sAppEventQueue, &event, NULL, osWaitForever);
while (eventReceived == pdTRUE)
{
sAppTask.DispatchEvent(&event);
eventReceived = osMessageQueueGet(sAppEventQueue, &event, NULL, 0);
}
}
}
#ifdef DISPLAY_ENABLED
void AppTask::UpdateDisplay()
{
CycleSensorUI();
UpdateSensorDisplay();
}
void AppTask::UpdateSensorDisplay(void)
{
switch (mCurrentSensorUI)
{
case kSensorUIEnum::kOccupancySensor:
GetLCD().SetCustomUI(nullptr);
GetLCD().WriteDemoUI(SensorManager::IsOccupancyDetected());
break;
case kSensorUIEnum::kSensor:
GetLCD().SetCustomUI(SensorsUI::SensorUI);
GetLCD().WriteDemoUI();
break;
case kSensorUIEnum::kStatusScreen:
BaseApplication::UpdateLCDStatusScreen();
GetLCD().WriteStatus();
break;
#ifdef QR_CODE_ENABLED
case kSensorUIEnum::kQrCode:
GetLCD().ShowQRCode(true);
break;
#endif
default:
// Handle unknown sensor
// This should never happen
break;
}
}
void AppTask::CycleSensorUI()
{
mCurrentSensorUI =
static_cast<kSensorUIEnum>((static_cast<uint8_t>(mCurrentSensorUI) + 1) % static_cast<uint8_t>(kSensorUIEnum::kCount));
}
#endif // DISPLAY_ENABLED
void AppTask::ButtonEventHandler(uint8_t button, uint8_t btnAction)
{
AppEvent button_event = {};
button_event.Type = AppEvent::kEventType_Button;
button_event.ButtonEvent.Action = btnAction;
switch (ButtonTypes(button))
{
case ButtonTypes::kFunctionButton:
button_event.Handler = BaseApplication::ButtonHandler;
sAppTask.PostEvent(&button_event);
break;
case ButtonTypes::kApplicationButton:
if (SilabsPlatform::ButtonAction(btnAction) == SilabsPlatform::ButtonAction::ButtonPressed)
{
button_event.Handler = ProccessButtonEvent;
sAppTask.PostEvent(&button_event);
}
break;
default:
// Should never happen
return;
}
}
void AppTask::ProccessButtonEvent(AppEvent * event)
{
VerifyOrReturn(event != nullptr);
VerifyOrReturn(event->Type == AppEvent::kEventType_Button);
SensorManager::ButtonActionTriggered(event);
}
void AppTask::SensorAttributeUpdateEvent(AppEvent * event)
{
VerifyOrReturn(event != nullptr);
VerifyOrReturn(event->Type == AppEvent::kEventType_SensorAttributeUpdate);
#ifdef DISPLAY_ENABLED
sAppTask.UpdateSensorDisplay();
#endif // DISPLAY_ENABLED
}
void AppTask::OccupancyAttributeUpdateEvent(AppEvent * event)
{
VerifyOrReturn(event != nullptr);
VerifyOrReturn(event->Type == AppEvent::kEventType_OccupancyAttributeUpdate);
sOccupancyLed.Set(event->OccupancyEvent.occupancyDetected);
#ifdef DISPLAY_ENABLED
sAppTask.UpdateSensorDisplay();
#endif // DISPLAY_ENABLED
}