This commit is contained in:
Anthony
2022-08-28 02:11:08 -04:00
parent 8cd5a89d6a
commit cfaeaa370a
3 changed files with 11 additions and 12 deletions

View File

@@ -600,7 +600,7 @@ esp_err_t handler_cputemp(httpd_req_t *req)
const char* resp_str;
char cputemp[20];
sprintf(resp_str, "CPU Temp: %4.1f°C", temperatureRead());
sprintf(cputemp, "CPU Temp: %4.1f°C", temperatureRead());
resp_str = cputemp;