From 1a1df7a2b922c034eb00a0174c35eaaf7927fbe8 Mon Sep 17 00:00:00 2001 From: Ronald Schaten Date: Mon, 21 Mar 2016 10:13:36 +0100 Subject: [PATCH] generate basic JSON output --- things.ino | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/things.ino b/things.ino index 21f937c..2adbf5d 100644 --- a/things.ino +++ b/things.ino @@ -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");