forked from thehookup/MQTT-Roomba-ESP01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoombaESP01_CONFIGURE.ino
265 lines (241 loc) · 6.24 KB
/
RoombaESP01_CONFIGURE.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
#include <PubSubClient.h>
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <SimpleTimer.h>
#include <Roomba.h>
#include <WiFiUdp.h>
#include <ArduinoOTA.h>
//USER CONFIGURED SECTION START//
const char* ssid = "YOUR_WIRELESS_SSID";
const char* password = "YOUR_WIRELESS_SSID";
const char* mqtt_server = "YOUR_MQTT_SERVER_ADDRESS";
const int mqtt_port = YOUR_MQTT_SERVER_PORT;
const char *mqtt_user = "YOUR_MQTT_USERNAME";
const char *mqtt_pass = "YOUR_MQTT_PASSWORD";
const char *mqtt_client_name = "Roomba"; // Client connections can't have the same connection name
//pick an OTA password to use when updating over the air
const char *OTApassword = "YOUR_OTA_PASSWORD";
const int OTAport = 8266;
//USER CONFIGURED SECTION END//
WiFiClient espClient;
PubSubClient client(espClient);
SimpleTimer timer;
Roomba roomba(&Serial, Roomba::Baud115200);
// Variables
bool boot = true;
long battery_Current_mAh = 0;
long battery_Voltage = 0;
long battery_Total_mAh = 0;
long battery_percent = 0;
char battery_percent_send[50];
char battery_Current_mAh_send[50];
uint8_t tempBuf[10];
//Functions
void setup_wifi()
{
WiFi.hostname(mqtt_client_name);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
}
}
void reconnect()
{
// Loop until we're reconnected
int retries = 0;
while (!client.connected())
{
if(retries < 50)
{
// Attempt to connect
if (client.connect(mqtt_client_name, mqtt_user, mqtt_pass, "roomba/status", 0, 0, "Dead Somewhere"))
{
// Once connected, publish an announcement...
if(boot == false)
{
client.publish("checkIn/roomba", "Reconnected");
}
if(boot == true)
{
client.publish("checkIn/roomba", "Rebooted");
boot = false;
}
// ... and resubscribe
songs();
ArduinoOTA.handle();
client.subscribe("roomba/commands");
}
else
{
retries++;
// Wait 5 seconds before retrying
delay(5000);
}
}
if(retries >= 50)
{
ESP.restart();
}
}
}
void callback(char* topic, byte* payload, unsigned int length)
{
String newTopic = topic;
payload[length] = '\0';
String newPayload = String((char *)payload);
if (newTopic == "roomba/commands")
{
if (newPayload == "test")
{
client.publish("roomba/status", "Test New");
}
if (newPayload == "start")
{
startCleaning();
}
if (newPayload == "stop")
{
stopCleaning();
}
if (newPayload == "restart")
{
client.publish("roomba/status", "Rebooting");
ESP.restart();
}
if (newPayload == "installsongfour")
{
songs();
}
if (newPayload == "songone")
{
playSongOne();
}
if (newPayload == "songtwo")
{
playSongTwo();
}
if (newPayload == "songthree")
{
playSongThree();
}
}
}
void startCleaning()
{
Serial.write(128);
delay(50);
Serial.write(131);
delay(50);
Serial.write(135);
client.publish("roomba/status", "Cleaning");
}
void stopCleaning()
{
Serial.write(128);
delay(50);
Serial.write(131);
delay(50);
Serial.write(143);
client.publish("roomba/status", "Returning");
}
void playSongOne()
{
Serial.write(128);
delay(50);
Serial.write(131);
delay(50);
byte Playsong1[2]={141,0}; //Strange Encounters
Serial.write(Playsong1,2);
client.publish("roomba/status", "Singing song One");
}
void playSongTwo()
{
Serial.write(128);
delay(50);
Serial.write(131);
delay(50);
byte Playsong2[2]={141,1}; //Strange Encounters
Serial.write(Playsong2,2);
client.publish("roomba/status", "Singing song Two");
}
void playSongThree()
{
Serial.write(128);
delay(50);
Serial.write(131);
delay(50);
byte Playsong3[2]={141,2}; //Strange Encounters
Serial.write(Playsong3,2);
delay(5000);
byte Playsong4[2]={141,3}; //Strange Encounters
Serial.write(Playsong4,2);
client.publish("roomba/status", "Singing song Three");
}
void sendInfoRoomba()
{
roomba.start();
roomba.getSensors(21, tempBuf, 1);
battery_Voltage = tempBuf[0];
delay(50);
roomba.getSensors(25, tempBuf, 2);
battery_Current_mAh = tempBuf[1]+256*tempBuf[0];
delay(50);
roomba.getSensors(26, tempBuf, 2);
battery_Total_mAh = tempBuf[1]+256*tempBuf[0];
if(battery_Total_mAh != 0)
{
int nBatPcent = 100*battery_Current_mAh/battery_Total_mAh;
String temp_str2 = String(nBatPcent);
temp_str2.toCharArray(battery_percent_send, temp_str2.length() + 1); //packaging up the data to publish to mqtt
client.publish("roomba/battery", battery_percent_send);
}
if(battery_Total_mAh == 0)
{
client.publish("roomba/battery", "NO DATA");
}
String temp_str = String(battery_Voltage);
temp_str.toCharArray(battery_Current_mAh_send, temp_str.length() + 1); //packaging up the data to publish to mqtt
client.publish("roomba/charging", battery_Current_mAh_send);
}
void setup()
{
Serial.begin(115200);
Serial.write(129);
delay(50);
Serial.write(11);
delay(50);
setup_wifi();
client.setServer(mqtt_server, mqtt_port);
client.setCallback(callback);
timer.setInterval(5000, sendInfoRoomba);
ArduinoOTA.setPort(OTAport);
ArduinoOTA.setHostname(mqtt_client_name);
ArduinoOTA.setPassword((const char *)OTApassword);
ArduinoOTA.begin();
}
void songs() {
byte Song0[17]={140,0,7,31,60,43,55,55,50,67,45,79,40,91,35,103,30};
byte Song1[35]={140,1,16,36,20,37,20,0,40,36,20,37,20,0,30,36,20,37,20,0,20,36,20,37,20,0,10,36,20,37,20,0,5,38,64}; //Jaws
byte Song2[13]={140,2,5,79,48,81,48,77,48,65,50,72,64}; //Strange Encounters 1
byte Song3[13]={140,3,5,69,48,71,48,67,48,55,48,62,64}; //Strange Encounters
Serial.write(128);
delay(50);
Serial.write(131);
delay(50);
Serial.write(Song0,17);
Serial.write(Song1,35);
Serial.write(Song2,13);
Serial.write(Song3,13);
client.publish("checkIn/roomba", "Songs Installed");
}
void loop()
{
ArduinoOTA.handle();
if (!client.connected())
{
reconnect();
}
client.loop();
timer.run();
}