forked from thehookup/MQTT-Roomba-ESP01
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Roomba500_NO_POWER_SAVING.ino
175 lines (155 loc) · 3.92 KB
/
Roomba500_NO_POWER_SAVING.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
#include <PubSubClient.h>
#include <ESP8266WiFi.h>
#include <ESP8266mDNS.h>
#include <SimpleTimer.h>
#include <Roomba.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
//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.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
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 == "start")
{
startCleaning();
}
if (newPayload == "stop")
{
stopCleaning();
}
}
}
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 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);
}
void loop()
{
if (!client.connected())
{
reconnect();
}
client.loop();
timer.run();
}