-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpartycat-sunrise-alarm-clock.ino
213 lines (177 loc) · 5.34 KB
/
partycat-sunrise-alarm-clock.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#include <ESP8266WiFi.h>
#include <ws2812_i2s.h>
#include "ntp.h"
// Define these in the config.h file
//#define WIFI_SSID "yourwifi"
//#define WIFI_PASSWORD "yourpassword"
//#define WEBSERVER_USERNAME "something"
//#define WEBSERVER_PASSWORD "something"
#include "config.h"
// Interval in ms to resync NTP
#define ntpSyncInterval (600000)
unsigned long lastNTPRequest = 0;
unsigned long lastNTPSync = 0;
// Interval in ms to update animation
#define animationInterval (10)
unsigned long lastAnimationUpdate = 0;
// Value of millis() when an animation starts.
// (used as basis for animation timeline)
unsigned long animationStartTime = 0;
// Which animation is presently playing (if any)
#define ANIM_STATE_OFF (0)
#define ANIM_STATE_SUNRISE (1)
#define ANIM_STATE_FADEOUT (2)
int animationState = ANIM_STATE_OFF;
// WS2812 layout parameters
#define NUM_LEDS 120
#define LEDS_PER_ROW 24
static WS2812 ledstrip;
static Pixel_t pixels[NUM_LEDS];
#define DEVICE_NAME "partycat"
#define RED_LED_PIN 16
#define WHITE_PIN 14
#define PWM_RANGE_FULL (1024)
#define SETTINGS_VERSION "s4d3"
struct Settings {
// Time in seconds after midnight to begin sunrise
int onTime;
// Time in seconds after midnight to turn off the light
int offTime;
// How quickly to advance the sunrise frames (default 1)
int fps;
// Timezone offset
int timeZone;
} settings = {
23400,
28800,
1,
-7
};
#include "libdcc/webserver.h"
#include "libdcc/settings.h"
#include "animation.h"
String formatSettings() {
return \
String("onTime=") + String(settings.onTime) + \
String(",offTime=") + String(settings.offTime) + \
String(",fps=") + String(settings.fps) + \
String(",timeZone=") + String(settings.timeZone);
}
void handleSettings() {
REQUIRE_AUTH;
for (int i=0; i<server.args(); i++) {
if (server.argName(i).equals("onTime")) {
settings.onTime = server.arg(i).toFloat();
} else if (server.argName(i).equals("offTime")) {
settings.offTime = server.arg(i).toFloat();
} else if (server.argName(i).equals("fps")) {
settings.fps = server.arg(i).toInt();
} else if (server.argName(i).equals("timeZone")) {
settings.timeZone = server.arg(i).toInt();
} else {
Serial.println("Unknown argument: " + server.argName(i) + ": " + server.arg(i));
}
}
saveSettings();
String msg = String("Settings saved: ") + formatSettings();
Serial.println(msg);
server.send(200, "text/plain", msg);
}
void setup() {
analogWriteRange(PWM_RANGE_FULL);
pinMode(WHITE_PIN, OUTPUT);
digitalWrite(RED_LED_PIN, LOW);
pinMode(RED_LED_PIN, OUTPUT);
digitalWrite(RED_LED_PIN, LOW);
Serial.begin(115200);
loadSettings();
ledstrip.init(NUM_LEDS);
setColour(0, 0, 0);
WiFi.mode(WIFI_AP_STA);
WiFi.softAP("Internet Lightbox", WEBSERVER_PASSWORD);
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
server.on("/settings", handleSettings);
server.on("/restart", handleRestart);
server.on("/status", handleStatus);
server.onNotFound(handleNotFound);
server.begin();
Serial.println("Starting UDP");
udp.begin(localPort);
Serial.print("Local port: ");
Serial.println(udp.localPort());
}
void loop() {
// Connect to wifi if not already
if (WiFi.status() != WL_CONNECTED) {
flash(3);
Serial.println("Connecting to wifi...");
delay(1000);
return;
}
// Handle incoming NTP packet
if (udp.parsePacket()) {
Serial.print("packet received after ");
Serial.print(millis() - lastNTPRequest);
Serial.print("ms... ");
setTime(readNTPpacket(settings.timeZone));
Serial.println("DONE");
lastNTPSync = millis();
}
// Handle web request
server.handleClient();
// Run CRON algorithm, but only if we have sync'd to NTP
if (lastNTPSync != 0) {
if (elapsedSecsToday(now()) > settings.offTime) {
if (animationState == ANIM_STATE_SUNRISE) {
Serial.println("Start fadeout");
animationState = ANIM_STATE_FADEOUT;
animationStartTime = millis();
}
} else if (elapsedSecsToday(now()) > settings.onTime) {
if (animationState == ANIM_STATE_OFF) {
Serial.println("Start sunrise");
animationState = ANIM_STATE_SUNRISE;
animationStartTime = millis();
}
}
}
// Animate
if (animationState == ANIM_STATE_SUNRISE && (millis() - lastAnimationUpdate > animationInterval)) {
drawSunriseFrame();
lastAnimationUpdate = millis();
}
if (animationState == ANIM_STATE_FADEOUT && (millis() - lastAnimationUpdate > animationInterval)) {
if (!drawFadeoutFrame()) {
Serial.println("Finished fadeout");
animationState = ANIM_STATE_OFF;
animationStartTime = 0;
}
lastAnimationUpdate = millis();
}
// Send NTP packet at regular intervals,
// or more frequently if we haven't had a successful sync in the last 10 intervals (or ever)
if (
(millis() - lastNTPRequest > ntpSyncInterval) ||
(((lastNTPSync == 0) || (millis() - lastNTPSync > ntpSyncInterval * 10)) && millis() - lastNTPRequest > 1000)
) {
flash(2);
lastNTPRequest = millis();
sendNTPpacket();
}
}
void flash(int times) {
for (int i=0; i<times; i++) {
digitalWrite(RED_LED_PIN, HIGH);
delay(50);
digitalWrite(RED_LED_PIN, LOW);
delay(100);
}
}
void setColour(uint8_t r, uint8_t g, uint8_t b) {
for(int i=0; i<NUM_LEDS; i++) {
pixels[i].R = r;
pixels[i].G = g;
pixels[i].B = b;
}
ledstrip.show(pixels);
}