This commit is contained in:
Edward Firmo
2024-01-16 10:00:54 +01:00
parent 59cc6a536e
commit 519a8b48fb
2 changed files with 2 additions and 1 deletions

View File

@@ -140,7 +140,7 @@ script:
((${addon_climate_dual}) ? thermostat_embedded->target_temperature_high : -999), // target_temp_high
((${addon_climate_dual}) ? thermostat_embedded->target_temperature_low : -999), // target_temp_low
int(round(${temp_step}*10)), // temp_step
int(round(total_steps)), // total_steps //int(round((10*thermostat_embedded->target_temperature-temp_offset)/temp_step)), // slider_val
int(round(total_steps)), // total_steps
int(round(${temp_min}*10)), // temp_offset
"", // climate_icon
true // embedded_climate

View File

@@ -2,3 +2,4 @@
packages:
core_package: !include advanced/esphome/nspanel_esphome_core.yaml
upload_tft_package: !include advanced/esphome/nspanel_esphome_addon_upload_tft.yaml
...