-
Notifications
You must be signed in to change notification settings - Fork 0
/
EspantaCuco.ino
197 lines (166 loc) · 4.38 KB
/
EspantaCuco.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
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include <Adafruit_NeoPixel.h>
#include <SPI.h>
#include "credentials.h"
//neopixel
#define PIN 4 //D2
#define NUMPIXELS 16
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
WiFiClient espClient;
PubSubClient client(espClient);
long lastMsg = 0;
char msg[50];
int value = 0;
//TODO: move rgb animation to library
void showColor(uint8_t r, uint8_t g, uint8_t b)
{
for(int i=0;i<NUMPIXELS;i++){
if(i%2==0){
pixels.setPixelColor(i, pixels.Color(r,g,b));
//pixels.fill(pixels.Color(r,g,b),0,1); //partial
pixels.show();
}else{
pixels.setPixelColor(i, pixels.Color(0,0,0));
pixels.show();
}
}
}
void showRed(void)
{
showColor(255,0,0);
}
void showGreen(void)
{
showColor(0,255,0);
}
void showBlue(void)
{
showColor(0,0,255);
}
void showWhite(void)
{
showColor(255,255,255);
}
void turnOff(void)
{
showColor(0,0,0);
}
void setup() {
pinMode(BUILTIN_LED, OUTPUT); // Initialize the BUILTIN_LED pin as an output
Serial.begin(115200);
setup_wifi();
client.setServer(mqtt_server, 1883);
client.setCallback(callback);
pixels.begin();
pixels.setBrightness(50);
showRed();
}
void setup_wifi() {
Serial.print("MAC:");
Serial.println(WiFi.macAddress()); // print MAC
//TODO: start in AP mode to set WiFi parameters
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void callback(char* topic, byte* payload, unsigned int length) {
Serial.print("Message arrived [");
Serial.print(topic);
Serial.print("] ");
for (int i = 0; i < length; i++) {
Serial.print(payload[i]);
Serial.print(" ");
}
Serial.println();
// Convert char to String object
String mqttMsg = String((char*)payload);
Serial.print("#");
Serial.print(mqttMsg);
Serial.print("\n");
//Compare message to get RGB color
if( memcmp( (char *)payload, "rgb(", 4)==0){
Serial.print("RGB received\n");
int endStr = mqttMsg.indexOf(")");
String subStr = mqttMsg.substring(4,endStr);
Serial.print("#");
Serial.print(subStr);
Serial.print("\n");
int endRed = subStr.indexOf(",");
String redStr = subStr.substring(0,endRed);
int endGreen = subStr.indexOf(",",endRed+1);
String greenStr = subStr.substring(endRed+1,endGreen);
int endBlue = subStr.indexOf(",",endGreen+1);
String blueStr = subStr.substring(endGreen+1,endBlue);
Serial.print("->");
Serial.print(redStr);
Serial.print("\n->");
Serial.print(greenStr);
Serial.print("\n->");
Serial.print(blueStr);
for(int i=0;i<NUMPIXELS;i++){
pixels.setPixelColor(i, pixels.Color(redStr.toInt(),greenStr.toInt(),blueStr.toInt()));
pixels.show();
}
}
// Switch on the LED if an 1 was received as first character
else if ((char)payload[0] == 'r') {
showRed();
}else if ((char)payload[0] == 'g') {
showGreen();
}else if ((char)payload[0] == 'b') {
showBlue();
}else if ((char)payload[0] == 'w') {
showWhite();
}else if ((char)payload[0] == 'o') {
turnOff();
}else {
digitalWrite(BUILTIN_LED, HIGH); // Turn the LED off by making the voltage HIGH
}
}
void reconnect() {
// Loop until we're reconnected
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
// Attempt to connect
if (client.connect("ESP8266Client")) {
Serial.println("connected");
// Once connected, publish an announcement...
client.publish("outTopic", "hello world 1");
// ... and resubscribe
client.subscribe("light");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
// Wait 5 seconds before retrying
delay(10000);
}
}
}
void loop() {
if (!client.connected()) {
reconnect();
}
client.loop();
long now = millis();
if (now - lastMsg > 60000) {
lastMsg = now;
++value;
snprintf (msg, 75, "stat #%ld", value);
Serial.print("Publish message: ");
Serial.println(msg);
client.publish("outTopic", msg);
}
}