From 6ded581a371d37b2fedf1eea957a857205bd1411 Mon Sep 17 00:00:00 2001 From: Barbudor Date: Sat, 11 Dec 2021 09:18:14 +0000 Subject: [PATCH] fix O2 sensor message format --- tasmota/xsns_78_ezoo2.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xsns_78_ezoo2.ino b/tasmota/xsns_78_ezoo2.ino index ffeea4a86..81a40867e 100644 --- a/tasmota/xsns_78_ezoo2.ino +++ b/tasmota/xsns_78_ezoo2.ino @@ -39,7 +39,7 @@ struct EZOO2 : public EZOStruct { dtostrfd(O2, 2, str); if (json) { - ResponseAppend_P(PSTR(",\"%s\":{\"" D_JSON_O2 "\":%d}" ), name, str); + ResponseAppend_P(PSTR(",\"%s\":{\"" D_JSON_O2 "\":%s}" ), name, str); #ifdef USE_WEBSERVER }else { WSContentSend_PD(HTTP_SNS_O2, name, str);