mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-24 23:07:17 +00:00
xsns_103_sen5x bugfix (#18297)
This commit is contained in:
parent
3cbe3dbf8b
commit
736ac74f53
@ -177,7 +177,7 @@ void SEN5XShow(bool json) {
|
||||
}
|
||||
if (ahum_available) {
|
||||
ResponseAppendTHD(temperature, humidity);
|
||||
ResponseAppend_P(PSTR(",\"" D_JSON_AHUM "\":%4_f"), abs_humidity);
|
||||
ResponseAppend_P(PSTR(",\"" D_JSON_AHUM "\":%4_f"), &abs_humidity);
|
||||
}
|
||||
ResponseJsonEnd();
|
||||
#ifdef USE_WEBSERVER
|
||||
@ -194,7 +194,7 @@ void SEN5XShow(bool json) {
|
||||
}
|
||||
if (ahum_available) {
|
||||
WSContentSend_THD(types, temperature, humidity);
|
||||
WSContentSend_PD(HTTP_SNS_F_ABS_HUM, types, 4, abs_humidity);
|
||||
WSContentSend_PD(HTTP_SNS_F_ABS_HUM, types, 4, &abs_humidity);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user