-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneotrellis.ino
383 lines (334 loc) · 8.41 KB
/
neotrellis.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/*
* VIN - 5V
* GND - GND
* SDA - G21
* SCL - G22
*/
/*
* Verwendete Quellen:
* - Example "NeoTrellis/Basic" der Adafruit seesaw Library
* - Example "mqtt_basic" der PubSubClient Library
*/
#include "Adafruit_NeoTrellis.h"
#include <WiFi.h>
#include <PubSubClient.h>
// Farbdefinitionen fuer Rot und Gruen
#define RED 0xFF00000
#define GREEN 0x00FF000
// Definiert die Anzahl an maximaler Runden
#define MAX_DIFFICULTY 5
const String SSID = "gameartifacts";
const String PASSWORD = "blablabla";
// Wird gesetzt, falls Verbindung mit WLAN fehlschlaegt
bool offlineMode = false;
// Wurde RFID geloest und dieses Raetsel dadurch freigeschaltet
bool rfidSolved = false;
// Wurde dieses Raetsel geloest
bool solved = false;
WiFiClient espClient;
PubSubClient mqttClient(espClient);
const char* MQTT_BROKER = "192.168.22.205";
const char* TOPIC_SOLVED = "/artifakt/matrix/solved";
const char* TOPIC_RESET = "/artifakt/matrix/reset";
const char* TOPIC_RFID_SOLVED = "/artifakt/rfid/solved";
// Speichert die korrekte Reihenfolge
int target_sequence[MAX_DIFFICULTY] = {};
// Speichert die eingegebene Reihenfolge
int input_sequence[MAX_DIFFICULTY] = {};
// Speichert das aktuelle Level und definiert dadurch die Anzahl der Buttonpresses fuer diese Stufe
int currentLevel = 0;
// Countervariable fuer Eingabe
int currentInput = 0;
Adafruit_NeoTrellis trellis;
// Behandelt MQTT Input
void handleMqtt(char* topic, byte* payload, unsigned int length) {
Serial.print("Neue Nachricht empfangen auf Thema: ");
Serial.println(topic);
Serial.print("Nachricht:");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
}
Serial.println();
if(strcmp(topic, TOPIC_RESET) == 0) {
Serial.println("Received RESET message!");
reset();
}
else if(strcmp(topic, TOPIC_SOLVED) == 0)
{
Serial.println("Received SOLVED message!");
success();
}
else if(strcmp(topic, TOPIC_RFID_SOLVED) == 0)
{
rfidSolved = true;
doAnimation();
delay(1000);
showTargetSequence();
}
else
{
Serial.print("Received message on unknown topic: ");
Serial.println(topic);
Serial.print("Message:");
for (int i = 0; i < length; i++) {
Serial.print((char)payload[i]);
}
Serial.println();
}
}
// Zuruecksetzen des Raetsels
void reset ()
{
rfidSolved = false;
solved = false;
resetInput();
currentInput = 0;
currentLevel = 0;
}
// Raetsel wurde geloest
void success ()
{
solved = true;
}
// Mit WLAN verbinden
void setupWifi ()
{
Serial.print("Connecting to ");
Serial.println(SSID);
WiFi.begin(SSID, PASSWORD);
int i = 0;
while(WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
i++;
if (i >= 20)
{
WiFi.disconnect(true);
offlineMode = true;
Serial.println("\nConnection failed, activated offlineMode.");
return;
}
}
Serial.println("\nWiFi connected.");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
// MQTT konfigurieren
void setupMqtt()
{
mqttClient.setServer(MQTT_BROKER, 1883);
mqttClient.setCallback(handleMqtt);
}
// Eingabearray zuruecksetzen
void resetInput ()
{
for(int i = 0; i < MAX_DIFFICULTY; i++)
{
input_sequence[i] = -1;
}
}
// Pruefen, ob Raetsel geloest wurde
void checkSolved ()
{
Serial.println("Checking...");
// Nur bis zum aktuellen Level pruefen
for(int i = 0; i <= currentLevel; i++)
{
if(input_sequence[i] != target_sequence[i])
{
currentLevel = 0;
// Muss -1 sein, da Variable gleich wieder inkrementiert wird
currentInput = -1;
resetInput();
flash(RED, 500);
generateTargetSequence();
showTargetSequence();
Serial.println("Not solved!");
return;
}
}
Serial.println("Current Level solved");
// Pruefen, ob Ende des Raetsels erreicht wurde
if(currentLevel+1 == MAX_DIFFICULTY)
{
flash(GREEN, 2500);
Serial.println("Solved!");
solved = true;
mqttClient.publish(TOPIC_SOLVED, "Matrix solved!");
currentLevel = 0;
currentInput = 0;
}
else
{
flash(GREEN);
currentLevel++;
currentInput = -1;
resetInput();
generateTargetSequence();
delay(500);
showTargetSequence();
}
}
// Pruefen, ob genug Buttonpresses getaetigt wurden
void checkSequence ()
{
if(currentInput >= currentLevel)
{
checkSolved();
}
}
// Verarbeitet Buttonpresses
TrellisCallback handleKeypress(keyEvent evt){
// Pruefen, ob Raetsel aktiv ist
if(!(!solved && (rfidSolved || offlineMode)))
return 0;
if (evt.bit.EDGE == SEESAW_KEYPAD_EDGE_RISING) {
// Button wurde gedrueckt
trellis.pixels.setPixelColor(evt.bit.NUM, Wheel(map(evt.bit.NUM, 0, trellis.pixels.numPixels(), 0, 255)));
input_sequence[currentInput] = evt.bit.NUM;
checkSequence();
currentInput++;
} else if (evt.bit.EDGE == SEESAW_KEYPAD_EDGE_FALLING) {
// Button wurde losgelassen
trellis.pixels.setPixelColor(evt.bit.NUM, 0);
}
trellis.pixels.show();
return 0;
}
// Setzt die Farbe fuer einen Pixel
void setColorForOnePixel(uint16_t index, uint16_t color)
{
trellis.pixels.setPixelColor(index, color);
trellis.pixels.show();
}
// Setzt die Farbe fuer alle Pixel
void setColorForAllPixels (uint32_t color)
{
for (uint16_t i=0; i<trellis.pixels.numPixels(); i++)
{
trellis.pixels.setPixelColor(i, color);
}
trellis.pixels.show();
}
// Laesst alle Pixel aufblinken
void flash (uint32_t color, long delayTime)
{
setColorForAllPixels(color);
delay(delayTime);
setColorForAllPixels(0x000000);
}
// Laesst alle Pixel fuer 200ms aufblinken
void flash (uint32_t color)
{
flash(color, 200);
}
// Laesst einen Pixel aufblinken
void flashOnePixel (uint16_t index, uint32_t color, long delayTime)
{
setColorForOnePixel(index, color);
delay(delayTime);
setColorForOnePixel(index, 0x000000);
}
// Laesst einen Pixel fuer 200ms aufblinken
void flashOnePixel (uint16_t index, uint32_t color)
{
flashOnePixel(index, color, 200);
}
// Generiert eine neue Zielsequenz
void generateTargetSequence()
{
Serial.print("Target Sequence: ");
for(int i = 0; i < MAX_DIFFICULTY; i++)
{
target_sequence[i] = random(0, 16);
Serial.print(target_sequence[i]);
Serial.print(" ");
}
Serial.println();
}
// Zeigt die Zielsequenz auf der Matrix an
void showTargetSequence ()
{
for(int i = 0; i <= currentLevel; i++)
{
flashOnePixel(target_sequence[i], Wheel(i), 500);
delay(200);
}
}
// Einrichten des Raetsels
void setup() {
Serial.begin(9600);
if (!trellis.begin()) {
Serial.println("Could not start trellis, check wiring?");
while(1) delay(1);
} else {
Serial.println("NeoPixel Trellis started");
}
setupWifi();
if(!offlineMode)
setupMqtt();
for(int i=0; i<NEO_TRELLIS_NUM_KEYS; i++){
trellis.activateKey(i, SEESAW_KEYPAD_EDGE_RISING);
trellis.activateKey(i, SEESAW_KEYPAD_EDGE_FALLING);
trellis.registerCallback(i, handleKeypress);
}
doAnimation();
}
// Animation auf der Matrix abspielen
void doAnimation ()
{
for (uint16_t i=0; i<trellis.pixels.numPixels(); i++) {
trellis.pixels.setPixelColor(i, Wheel(map(i, 0, trellis.pixels.numPixels(), 0, 255)));
trellis.pixels.show();
delay(50);
}
for (uint16_t i=0; i<trellis.pixels.numPixels(); i++) {
trellis.pixels.setPixelColor(i, 0x000000);
trellis.pixels.show();
delay(50);
}
}
// Erneut mit MQTT verbinden, falls Verbindung verloren wurde
void reconnect() {
while (!mqttClient.connected()) {
Serial.print("Reconnecting...");
if (!mqttClient.connect("Matrix_Artifact1")) {
Serial.print("failed, rc=");
Serial.print(mqttClient.state());
Serial.println(" retrying in 5 seconds");
delay(5000);
}
}
Serial.println("\nConnected!");
mqttClient.subscribe(TOPIC_SOLVED);
mqttClient.subscribe(TOPIC_RFID_SOLVED);
mqttClient.subscribe(TOPIC_RESET);
}
void loop() {
// MQTT ausfuehren, falls Raetsel mit WLAN verbunden ist
if(!offlineMode)
{
if (!mqttClient.connected()) {
reconnect();
}
mqttClient.loop();
}
// Keypresses von Matrix lesen
trellis.read();
// Frequenz der Matrix entsprechen
delay(20);
}
// Wird zum generieren von Farben verwendet
uint32_t Wheel(byte WheelPos) {
if(WheelPos < 85) {
return trellis.pixels.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
} else if(WheelPos < 170) {
WheelPos -= 85;
return trellis.pixels.Color(255 - WheelPos * 3, 0, WheelPos * 3);
} else {
WheelPos -= 170;
return trellis.pixels.Color(0, WheelPos * 3, 255 - WheelPos * 3);
}
return 0;
}