|
21 | 21 |
|
22 | 22 | #include "ColorFormat.h"
|
23 | 23 | #include "PWMManager.h"
|
| 24 | +#include "LEDManager.h" |
24 | 25 |
|
25 | 26 | #include <app-common/zap-generated/attributes/Accessors.h>
|
26 | 27 |
|
@@ -58,7 +59,9 @@ CHIP_ERROR AppTask::Init(void)
|
58 | 59 | {
|
59 | 60 | SetExampleButtonCallbacks(LightingActionEventHandler);
|
60 | 61 | InitCommonParts();
|
61 |
| - |
| 62 | +#if (!CONFIG_PWM) |
| 63 | + LedManager::getInstance().linkLed(LedManager::EAppLed_App0, 1); |
| 64 | +#endif |
62 | 65 | Protocols::InteractionModel::Status status;
|
63 | 66 |
|
64 | 67 | app::DataModel::Nullable<uint8_t> brightness;
|
@@ -130,16 +133,24 @@ void AppTask::SetInitiateAction(Fixture_Action aAction, int32_t aActor, uint8_t
|
130 | 133 | if (aAction == ON_ACTION)
|
131 | 134 | {
|
132 | 135 | sfixture_on = true;
|
| 136 | +#ifdef CONFIG_PWM |
133 | 137 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Red, (((uint32_t) sLedRgb.r * 1000) / UINT8_MAX));
|
134 | 138 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Green, (((uint32_t) sLedRgb.g * 1000) / UINT8_MAX));
|
135 | 139 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Blue, (((uint32_t) sLedRgb.b * 1000) / UINT8_MAX));
|
| 140 | +#else |
| 141 | + LedManager::getInstance().setLed(LedManager::EAppLed_App0, true); |
| 142 | +#endif |
136 | 143 | }
|
137 | 144 | else
|
138 | 145 | {
|
139 | 146 | sfixture_on = false;
|
| 147 | +#ifdef CONFIG_PWM |
140 | 148 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Red, false);
|
141 | 149 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Green, false);
|
142 | 150 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Blue, false);
|
| 151 | +#else |
| 152 | + LedManager::getInstance().setLed(LedManager::EAppLed_App0, false); |
| 153 | +#endif |
143 | 154 | }
|
144 | 155 | }
|
145 | 156 | else if (aAction == LEVEL_ACTION)
|
@@ -217,6 +228,9 @@ void AppTask::PowerOnFactoryResetEventHandler(AppEvent * aEvent)
|
217 | 228 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Red, (bool) (sPowerOnFactoryResetTimerCnt % 2));
|
218 | 229 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Green, (bool) (sPowerOnFactoryResetTimerCnt % 2));
|
219 | 230 | PwmManager::getInstance().setPwm(PwmManager::EAppPwm_Blue, (bool) (sPowerOnFactoryResetTimerCnt % 2));
|
| 231 | +#if !CONFIG_PWM |
| 232 | + LedManager::getInstance().setLed(LedManager::EAppLed_App0, (bool) (sPowerOnFactoryResetTimerCnt % 2)); |
| 233 | +#endif |
220 | 234 | k_timer_init(&sPowerOnFactoryResetTimer, PowerOnFactoryResetTimerEvent, nullptr);
|
221 | 235 | k_timer_start(&sPowerOnFactoryResetTimer, K_MSEC(kPowerOnFactoryResetIndicationTimeMs),
|
222 | 236 | K_MSEC(kPowerOnFactoryResetIndicationTimeMs));
|
|
0 commit comments