From 8d87bb8db954b4db4e03ee38eded1299ea131b29 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Sun, 4 Feb 2018 06:42:07 +0300 Subject: [PATCH] homeassistant: missing setting in WS callback --- code/espurna/homeassistant.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/code/espurna/homeassistant.ino b/code/espurna/homeassistant.ino index e2117f29..a869a2ad 100644 --- a/code/espurna/homeassistant.ino +++ b/code/espurna/homeassistant.ino @@ -18,6 +18,7 @@ bool _haSendFlag = false; void _haWebSocketOnSend(JsonObject& root) { root["haVisible"] = 1; root["haPrefix"] = getSetting("haPrefix", HOMEASSISTANT_PREFIX); + root["haEnabled"] = getSetting("haEnabled", HOMEASSISTANT_ENABLED).toInt() == 1; } #if SENSOR_SUPPORT