xsns_103_sen5x bugfix (#18297)

This commit is contained in:
Anton ACE 2023-03-30 09:49:48 +03:00 committed by GitHub
parent 3cbe3dbf8b
commit 736ac74f53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
}