-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEggBoiler_ESP8266.ino
202 lines (168 loc) · 5.86 KB
/
EggBoiler_ESP8266.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
/***************************************************
Adafruit MQTT Library ESP8266 Example
Must use ESP8266 Arduino from:
https://github.com/esp8266/Arduino
Works great with Adafruit's Huzzah ESP board & Feather
----> https://www.adafruit.com/product/2471
----> https://www.adafruit.com/products/2821
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
Written by Tony DiCola for Adafruit Industries.
MIT license, all text above must be included in any redistribution
****************************************************/
#include <ESP8266WiFi.h>
#include <ESP8266WiFiMulti.h>
#include "Adafruit_MQTT.h"
#include "Adafruit_MQTT_Client.h"
// Define the pin to connect to
#define relayPin 16
unsigned int timer = 0;
bool flag = false;
bool flag1 = false;
/************************* WiFi Access Point *********************************/
#define WLAN_SSID "*********"
#define WLAN_PASS "*********"
#define WLAN_SSID1 "*********"
#define WLAN_PASS1 "*********"
#define WLAN_SSID2 "*********"
#define WLAN_PASS2 "*********"
/************************* Adafruit.io Setup *********************************/
#define AIO_SERVER "io.adafruit.com"
#define AIO_SERVERPORT 1883 // use 8883 for SSL
#define AIO_USERNAME "username"
#define AIO_KEY "key"
/************ Global State (you don't need to change this!) ******************/
ESP8266WiFiMulti multiple;
// Create an ESP8266 WiFiClient class to connect to the MQTT server.
WiFiClient client;
// or... use WiFiFlientSecure for SSL
//WiFiClientSecure client;
// Setup the MQTT client class by passing in the WiFi client and MQTT server and login details.
Adafruit_MQTT_Client mqtt(&client, AIO_SERVER, AIO_SERVERPORT, AIO_USERNAME, AIO_KEY);
/****************************** Feeds ***************************************/
// Setup a feed called 'onoff' for publishing.
// Notice MQTT paths for AIO follow the form: <username>/feeds/<feedname>
Adafruit_MQTT_Publish onoffbutton = Adafruit_MQTT_Publish(&mqtt, AIO_USERNAME "/feeds/eggboiler");
// Setup a feed called 'onoff' for subscribing to changes.
Adafruit_MQTT_Subscribe onoffbutton1 = Adafruit_MQTT_Subscribe(&mqtt, AIO_USERNAME "/feeds/eggboiler");
/*************************** Sketch Code ************************************/
// Bug workaround for Arduino 1.6.6, it seems to need a function declaration
// for some reason (only affects ESP8266, likely an arduino-builder bug).
void MQTT_connect();
void setup() {
Serial.begin(115200);
delay(10);
Serial.println(F("Adafruit MQTT demo"));
// Connect to WiFi access point.
Serial.println();
Serial.print("Connecting to WiFi");
//Serial.println(WLAN_SSID);
multiple.addAP(WLAN_SSID, WLAN_PASS);
multiple.addAP(WLAN_SSID1, WLAN_PASS1);
multiple.addAP(WLAN_SSID2, WLAN_PASS2);
while (multiple.run() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println();
Serial.print("Connected to: ");
Serial.println(WiFi.SSID());
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println();
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
pinMode(relayPin, OUTPUT);
// Setup MQTT subscription for onoff feed.
mqtt.subscribe(&onoffbutton1);
}
void loop() {
// Ensure the connection to the MQTT server is alive (this will make the first
// connection and automatically reconnect when disconnected). See the MQTT_connect
// function definition further below.
MQTT_connect();
// Logic for automatic switching off of the setup
if (flag == true) {
timer++;
Serial.println(timer);
if ( timer == 180 || (strcmp((char *)onoffbutton1.lastread, "OFF") == 0) ) {
// Now we can publish stuff!
if (! onoffbutton.publish("OFF")) {
Serial.println(F("Failed"));
} else {
Serial.println(F("OK!"));
}
digitalWrite(relayPin, LOW);
timer = 0;
flag = false;
flag1 = true;
}
}
if (flag1 == true) {
timer++;
if ( timer == 12 ) {
// Now we can publish stuff!
if (! onoffbutton.publish("OFF")) {
Serial.println(F("Failed"));
} else {
Serial.println(F("OK!"));
}
digitalWrite(relayPin, LOW);
timer = 0;
flag1 = false;
}
}
// this is our 'wait for incoming subscription packets' busy subloop
// try to spend your time here
Adafruit_MQTT_Subscribe *subscription;
while ((subscription = mqtt.readSubscription(5000))) {
if (subscription == &onoffbutton1) {
Serial.print(F("Got: "));
Serial.println((char *)onoffbutton1.lastread);
}
if ((strcmp((char *)onoffbutton1.lastread, "ON") == 0)) {
flag = true;
digitalWrite(relayPin, HIGH);
}
if ((strcmp((char *)onoffbutton1.lastread, "OFF") == 0)) {
flag = false;
timer = 0;
digitalWrite(relayPin, LOW);
}
}
// ping the server to keep the mqtt connection alive
// NOT required if you are publishing once every KEEPALIVE seconds
/*
if(! mqtt.ping()) {
mqtt.disconnect();
}
*/
}
// Function to connect and reconnect as necessary to the MQTT server.
// Should be called in the loop function and it will take care if connecting.
void MQTT_connect() {
int8_t ret;
// Stop if already connected.
if (mqtt.connected()) {
return;
}
Serial.print("Connecting to MQTT... ");
uint8_t retries = 3;
while ((ret = mqtt.connect()) != 0) { // connect will return 0 for connected
Serial.println(mqtt.connectErrorString(ret));
Serial.println("Retrying MQTT connection in 5 seconds...");
mqtt.disconnect();
delay(5000); // wait 5 seconds
retries--;
if (retries == 0) {
// basically die and wait for WDT to reset me
while (1);
}
}
Serial.println("MQTT Connected!");
}