-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp8266.ino
228 lines (187 loc) · 4.58 KB
/
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
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
#include <Wire.h>
#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
#include <Adafruit_Sensor.h>
#include <TSL2561.h>
#include <Adafruit_BME280.h>
#include <Adafruit_HTU21DF.h>
// Configuration
#define WIFI_SSID ""
#define WIFI_PASS ""
#define WEB_SERVER_PORT 80
#define I2C_ADDR_TSL2561 0x39
#define I2C_ADDR_BME280 0x76
// Web server
ESP8266WebServer webServer(WEB_SERVER_PORT);
// Sensors
TSL2561 tsl2561(I2C_ADDR_TSL2561);
Adafruit_BME280 bme280;
Adafruit_HTU21DF htu21df;
void setup()
{
setupI2C();
setupSerial();
setupWiFi();
setupWebServer();
setupSensors();
}
void loop()
{
webServer.handleClient();
delay(25);
}
void handle404()
{
webServer.send(404, "text/plain", "404 Not Found");
}
void handlePressure()
{
float pressure = bme280.readPressure() / 100;
webServer.send(200, "text/plain", String(pressure));
}
void handleHumidity()
{
float humidity = readHumidity();
webServer.send(200, "text/plain", String(humidity));
}
void handleTemperature()
{
float temperature = readTemperature();
webServer.send(200, "text/plain", String(temperature));
}
void handleIlluminanceIr()
{
unsigned int illuminance = tsl2561.getLuminosity(TSL2561_INFRARED);
webServer.send(200, "text/plain", String(illuminance));
}
void handleIlluminanceVisible()
{
unsigned int illuminance = tsl2561.getLuminosity(TSL2561_VISIBLE);
webServer.send(200, "text/plain", String(illuminance));
}
void handleIlluminanceFull()
{
unsigned int illuminance = tsl2561.getLuminosity(TSL2561_FULLSPECTRUM);
webServer.send(200, "text/plain", String(illuminance));
}
void handleRoot()
{
Serial.println("[WebServer] Request: /");
// Read sensor values
unsigned int visible = tsl2561.getLuminosity(TSL2561_VISIBLE);
unsigned int full = tsl2561.getLuminosity(TSL2561_FULLSPECTRUM);
unsigned int ir = tsl2561.getLuminosity(TSL2561_INFRARED);
float temperature = readTemperature();
float humidity = readHumidity();
float pressure = bme280.readPressure() / 100;
String response = "";
response += "{";
response += "\"illuminance\":{";
response += "\"visible\":";
response += visible;
response += ",\"full\":";
response += full;
response += ",\"ir\":";
response += ir;
response += "}";
response += ",\"temperature\":";
response += temperature;
response += ",\"humidity\":";
response += humidity;
response += ",\"pressure\":";
response += pressure;
response += "}";
webServer.send(200, "application/json", response);
}
float readHumidity()
{
return (bme280.readHumidity() + htu21df.readHumidity()) / 2;
}
float readTemperature()
{
return (bme280.readTemperature() + htu21df.readTemperature()) / 2;
}
void setupI2C()
{
Wire.begin(D2, D1);
}
void setupSerial()
{
Serial.begin(9600);
Serial.println();
}
void setupWiFi()
{
Serial.println("[WiFi] Setup");
Serial.print("[WiFi] Connecting to: ");
Serial.print(WIFI_SSID);
Serial.print("..");
WiFi.mode(WIFI_STA);
WiFi.begin(WIFI_SSID, WIFI_PASS);
while (WiFi.status() != WL_CONNECTED)
{
delay(250);
Serial.print(".");
}
Serial.println();
Serial.println("[WiFi] Connected!");
Serial.print("[WiFi] IP: ");
Serial.println(WiFi.localIP());
}
void setupWebServer()
{
Serial.println("[WebServer] Setup");
webServer.on("/", HTTP_GET, handleRoot);
webServer.on("/illuminance/full", HTTP_GET, handleIlluminanceFull);
webServer.on("/illuminance/visible", HTTP_GET, handleIlluminanceVisible);
webServer.on("/illuminance/ir", HTTP_GET, handleIlluminanceIr);
webServer.on("/temperature", HTTP_GET, handleTemperature);
webServer.on("/humidity", HTTP_GET, handleHumidity);
webServer.on("/pressure", HTTP_GET, handlePressure);
webServer.onNotFound(handle404);
Serial.println("[WebServer] Starting..");
webServer.begin();
Serial.println("[WebServer] Running!");
}
void setupSensors()
{
setupSensorTSL2561();
setupSensorBME280();
setupSensorHTU21DF();
}
void setupSensorTSL2561()
{
Serial.println("[TSL2561] Setup");
Serial.print("[TSL2561] Connecting..");
while (!tsl2561.begin())
{
delay(50);
Serial.print(".");
}
Serial.println();
Serial.println("[TSL2561] Connected!");
}
void setupSensorBME280()
{
Serial.println("[BME280] Setup");
Serial.print("[BME280] Connecting..");
while (!bme280.begin(I2C_ADDR_BME280))
{
delay(50);
Serial.print(".");
}
Serial.println();
Serial.println("[BME280] Connected!");
}
void setupSensorHTU21DF()
{
Serial.println("[HTU21DF] Setup");
Serial.print("[HTU21DF] Connecting..");
while (!htu21df.begin())
{
delay(50);
Serial.print(".");
}
Serial.println();
Serial.println("[HTU21DF] Connected!");
}