add temperature_step to logger
This commit is contained in:
@@ -96,6 +96,9 @@ 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);
|
||||
|
||||
Reference in New Issue
Block a user