Fix invalid call to page var

This commit is contained in:
Edward Firmo
2023-10-02 15:03:20 +02:00
parent 83fccfe83b
commit 985d6b5161

View File

@@ -1136,6 +1136,7 @@ text_sensor:
// Report new page to Home Assistant
ESP_LOGV("text_sensor.localevent", "Trigger HA event");
auto ha_event = new esphome::api::CustomAPIDevice();
ha_event->fire_homeassistant_event("esphome.nspanel_ha_blueprint",
{
{"type", "page_changed"},
@@ -1145,7 +1146,7 @@ text_sensor:
// Report new page to add-ons
ESP_LOGV("text_sensor.localevent", "Call add-ons scripts for new page");
id(addon_climate_set_climate).execute(page=="climate" and id(entity_id) == "embedded_climate");
id(addon_climate_set_climate).execute(x=="climate" and id(entity_id) == "embedded_climate");
// Construct new page
ESP_LOGV("text_sensor.localevent", "Construct new page");
@@ -2375,14 +2376,6 @@ script:
send_nextion_command("rest");
delay(1500);
}
else
{
ESP_LOGD("script.upload_tft.upload_end_", "Turn off Nextion");
//id(screen_power).turn_off();
delay(1500);
ESP_LOGD("script.upload_tft.upload_end_", "Restarting esphome");
ESP.restart();
}
return not retry;
};