@@ -60,6 +60,7 @@ esphome:
|
|||||||
- priority: 600.0 # This is where most sensors are set up.
|
- priority: 600.0 # This is where most sensors are set up.
|
||||||
then:
|
then:
|
||||||
- lambda: |-
|
- lambda: |-
|
||||||
|
set_timezone->execute(id(mui_timezone).c_str());
|
||||||
if (isnan(blueprint_status->raw_state)) blueprint_status->publish_state(0);
|
if (isnan(blueprint_status->raw_state)) blueprint_status->publish_state(0);
|
||||||
device_name->publish_state("${name}");
|
device_name->publish_state("${name}");
|
||||||
notification_label->publish_state("");
|
notification_label->publish_state("");
|
||||||
@@ -875,14 +876,9 @@ api:
|
|||||||
variables:
|
variables:
|
||||||
timezone: string
|
timezone: string
|
||||||
then:
|
then:
|
||||||
- lambda: |-
|
- script.execute:
|
||||||
if (!timezone.empty()) {
|
id: set_timezone
|
||||||
time_provider->dump_config();
|
timezone: !lambda return timezone;
|
||||||
ESP_LOGI("api.service.set_timezone", "Setting timezone: %s", timezone.c_str());
|
|
||||||
time_provider->set_timezone(timezone.c_str());
|
|
||||||
time_provider->call_setup();
|
|
||||||
time_provider->dump_config();
|
|
||||||
}
|
|
||||||
|
|
||||||
# Wake Up Service
|
# Wake Up Service
|
||||||
- service: wake_up
|
- service: wake_up
|
||||||
@@ -1000,6 +996,12 @@ display:
|
|||||||
##### START - GLOBALS CONFIGURATION #####
|
##### START - GLOBALS CONFIGURATION #####
|
||||||
globals:
|
globals:
|
||||||
|
|
||||||
|
- id: mui_timezone
|
||||||
|
type: std::string
|
||||||
|
restore_value: true
|
||||||
|
max_restore_data_length: 36
|
||||||
|
initial_value: ""
|
||||||
|
|
||||||
- id: mui_bytes_per_char
|
- id: mui_bytes_per_char
|
||||||
type: uint8_t
|
type: uint8_t
|
||||||
restore_value: true
|
restore_value: true
|
||||||
@@ -2859,6 +2861,19 @@ script:
|
|||||||
NextionComponent component = extractNextionComponent(component_id, current_page->state);
|
NextionComponent component = extractNextionComponent(component_id, current_page->state);
|
||||||
if (component.is_current_page) disp1->send_command_printf("vis %s,%i", component.component_id, show ? 1 : 0);
|
if (component.is_current_page) disp1->send_command_printf("vis %s,%i", component.component_id, show ? 1 : 0);
|
||||||
|
|
||||||
|
- id: set_timezone
|
||||||
|
mode: restart
|
||||||
|
parameters:
|
||||||
|
timezone: string
|
||||||
|
then:
|
||||||
|
- lambda: |-
|
||||||
|
id(mui_timezone) = timezone;
|
||||||
|
if (!timezone.empty()) {
|
||||||
|
ESP_LOGD("script.set_timezone", "Setting timezone: %s", timezone.c_str());
|
||||||
|
time_provider->set_timezone(timezone.c_str());
|
||||||
|
time_provider->call_setup();
|
||||||
|
time_provider->dump_config();
|
||||||
|
}
|
||||||
|
|
||||||
- id: stop_all
|
- id: stop_all
|
||||||
mode: restart
|
mode: restart
|
||||||
|
|||||||
Reference in New Issue
Block a user