Skip to content

Commit

Permalink
fix ens16x web display
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudor committed Sep 23, 2023
1 parent 8fa628b commit adc9902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasmota/tasmota_xsns_sensor/xsns_111_ens16x.ino
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void ens16xShow(bool json)
ResponseAppend_P(PSTR(",\"%s\":{\"AQIS\":%d,\"" D_JSON_ECO2 "\":%d,\"" D_JSON_TVOC "\":%d}"), name, pENS16X->AQIS, pENS16X->eCO2, pENS16X->TVOC);
#ifdef USE_WEBSERVER
} else {
WSContentSend_PD(HTTP_SNS_ENS16x, name, pENS16X->AQIS, pENS16X->eCO2, pENS16X->TVOC);
WSContentSend_PD(HTTP_SNS_ENS16x, name, pENS16X->AQIS, name, pENS16X->eCO2, name, pENS16X->TVOC);
#endif
}
}
Expand Down

0 comments on commit adc9902

Please sign in to comment.