Revert "add temperature_step to logger"

This reverts commit 9c3b301aa0.
This commit is contained in:
Andy Thomas
2024-01-17 20:21:54 +01:00
parent d7363e950b
commit 452bf9c282

View File

@@ -96,9 +96,6 @@ script:
} else if (key == "target_temp_low") {
ESP_LOGD(TAG, "set_target_temperature_low(%f)", (stof(value) / 10));
call.set_target_temperature_low(stof(value) / 10);
} else if (key == "temperature_step") {
ESP_LOGD(TAG, "set_temperature_step(%f)", (stof(value) / 10));
call.set_temperature_step(stof(value) / 10);
} else if (key == "hvac_mode") {
ESP_LOGD(TAG, "hvac_mode(%s)", value.c_str());
call.set_mode(value);