From d404d4804addfd962cc5969560f11b87ec8bbd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Thu, 21 Dec 2017 18:35:33 +0100 Subject: [PATCH] Fix chipid --- code/espurna/ws.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/espurna/ws.ino b/code/espurna/ws.ino index 81770d28..324651d1 100644 --- a/code/espurna/ws.ino +++ b/code/espurna/ws.ino @@ -323,7 +323,7 @@ void _wsOnStart(JsonObject& root) { root["app_version"] = APP_VERSION; root["app_build"] = buildTime(); root["manufacturer"] = MANUFACTURER; - root["chipid"] = chipid; + root["chipid"] = String(chipid); root["mac"] = WiFi.macAddress(); root["device"] = DEVICE; root["hostname"] = getSetting("hostname");