generate basic JSON output

This commit is contained in:
Ronald Schaten 2016-03-21 10:13:36 +01:00
parent badd6deaad
commit 1a1df7a2b9

View File

@ -381,6 +381,22 @@ void setup() {
delay(100);
});
http_server.on("/json", [](){
read_sensor();
DynamicJsonBuffer jsonBuffer;
JsonObject& json = jsonBuffer.createObject();
json["mqtt_server"] = mqtt_server;
json["mqtt_port"] = mqtt_port;
json["mqtt_topic"] = mqtt_topic;
json["temperature"] = str_temperature;
json["humidity"] = str_humidity;
json["heatindex"] = str_heatindex;
String response;
json.printTo(response);
http_server.send(200, "text/plain", response);
delay(100);
});
// start the web server
http_server.begin();
Serial.println("HTTP server started");