-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathledstrip.ino
198 lines (155 loc) · 4.36 KB
/
ledstrip.ino
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
#include <ArduinoJson.h>
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#include <Adafruit_NeoPixel.h>
#include <NeoPixelBus.h>
#include <NeoPixelAnimator.h>
#include "FS.h"
#include <OTAHelper.h>
#include "SceneHelper.h"
#include "StripConfig.h"
OTAHelper otaHelper;
SceneHelper sceneHelper;
Adafruit_NeoPixel strip = Adafruit_NeoPixel();
NeoPixelAnimator animations(1);
RgbColor startColor(0, 0, 0);
RgbColor targetColor(0, 0, 0);
struct configurationStruct {
struct wifiStruct {
const char* ssid;
const char* key;
};
struct deviceStruct {
const char* name;
int pixels;
};
struct animationStruct {
int duration;
};
wifiStruct wifi;
deviceStruct device;
animationStruct animation;
};
configurationStruct configuration;
void setup() {
Serial.begin(57600);
SPIFFS.begin();
if (!readConfigurationAndInit()) return;
sceneHelper.onChange([&](uint8_t r, uint8_t g, uint8_t b) {
Serial.printf(
"\nScene changed, changing color of strip to rgb(%d,%d,%d).\n",
r, g, b
);
// Our current color is the last animations target color.
startColor = targetColor;
targetColor = RgbColor(r, g, b);
animations.StartAnimation(
0,
configuration.animation.duration,
blendingAnimation
);
});
}
void loop() {
otaHelper.handle();
sceneHelper.handle();
if (animations.IsAnimating())
{
animations.UpdateAnimations();
strip.show();
}
}
void blendingAnimation(const AnimationParam& param)
{
RgbColor color = RgbColor::LinearBlend(
startColor,
targetColor,
param.progress
);
for (uint16_t i = 0; i < configuration.device.pixels; i++) {
strip.setPixelColor(i, strip.Color(color.R, color.G, color.B));
}
}
bool readConfigurationAndInit()
{
Serial.print("Reading configuration file.....");
File configFile = SPIFFS.open("/config.json", "r");
if (!configFile) {
Serial.println("Failed to open config file");
return false;
}
Serial.println(".. ok.");
size_t size = configFile.size();
std::unique_ptr<char[]> buf(new char[size]);
configFile.readBytes(buf.get(), size);
DynamicJsonBuffer jsonBuffer;
JsonObject& config = jsonBuffer.parseObject(buf.get());
configuration.wifi.ssid = config["wifi"]["ssid"];
configuration.wifi.key = config["wifi"]["key"];
configuration.device.name = config["device"]["name"];
configuration.device.pixels = config["device"]["pixels"];
configuration.animation.duration = config["animation"]["duration"];
Serial.printf(
"\nconfiguration.wifi.ssid = %s\n"
"configuration.wifi.key = *********\n"
"configuration.device.name = %s\n"
"configuration.device.pixels = %d\n"
"configuration.animation.duration = %d\n\n",
configuration.wifi.ssid,
configuration.device.name,
configuration.device.pixels,
configuration.animation.duration
);
connectWifi();
otaHelper.setDeviceName(configuration.device.name);
sceneHelper.setDeviceName(configuration.device.name);
otaHelper.setup();
prepareLedStrip();
loadScenes(config["scenes"]);
return true;
}
void connectWifi()
{
WiFi.mode(WIFI_STA);
WiFi.begin(
configuration.wifi.ssid,
configuration.wifi.key
);
Serial.print("Connecting to wifi..");
while (WiFi.status() != WL_CONNECTED) {
Serial.print(".");
delay(500);
}
Serial.println(".. ok.\n");
}
void prepareLedStrip()
{
strip.updateLength(configuration.device.pixels);
strip.setPin(LED_STRIP_PIN);
strip.updateType(LED_STRIP_TYPE);
strip.begin();
strip.clear();
strip.show();
Serial.println("Cleared led strip.\n");
}
void loadScenes(JsonArray& scenes)
{
for (auto& sceneInfo : scenes) {
char* name = strdup(sceneInfo["name"]);
JsonArray& color = sceneInfo["rgb"];
uint8_t r = color[0];
uint8_t g = color[1];
uint8_t b = color[2];
bool isOffSwitch = sceneInfo["isOffSwitch"];
Scene scene;
scene.name = name;
if (isOffSwitch) {
scene.isOffSwitch = true;
} else {
scene.r = r;
scene.g = g;
scene.b = b;
}
sceneHelper.add(scene);
}
}