-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStateManager.cpp
65 lines (52 loc) · 1.33 KB
/
StateManager.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
#include <Arduino.h>
#include <FastLED.h>
#include "StateManager.h"
#include "LedControl.h"
State StateManager::_state = State::Off;
bool StateManager::_initialised = false;
bool StateManager::initialised()
{
return _initialised;
}
void StateManager::setState(State state, bool immediate)
{
_initialised = true;
if (_state == state)
{
return;
}
switch (state)
{
case State::Off:
// Note that the state is deliberately not changed to off as this is intended
// as a mechanism to silence alerts
Serial.println("[StateManager] Turning LEDs off");
if (!immediate)
{
LedControl::fadeOut();
}
break;
case State::On:
Serial.println("[StateManager] Updating state to on");
if (!immediate)
{
LedControl::fadeIn();
}
_state = state;
break;
case State::Monitor:
Serial.println("[StateManager] Updating state to monitor");
if (!immediate)
{
// Briefly display flame effect when monitoring
LedControl::on();
LedControl::fadeOut(FADE_DURATION * 10);
}
_state = state;
break;
}
}
State StateManager::getState()
{
return _state;
}