diff --git a/nspanel_blueprint.yaml b/nspanel_blueprint.yaml index cb61018..f60f112 100644 --- a/nspanel_blueprint.yaml +++ b/nspanel_blueprint.yaml @@ -8305,88 +8305,92 @@ action: - alias: climate button press conditions: - '{{ nspanel_event.page == page.climate }}' - - '{{ "button" in nspanel_event.component }}' + - '{{ nspanel_event.component in ["button01", "button02", "button03", "button04", "button05", "button06", "button07"] }}' - '{{ nspanel_event.value == "release" }}' sequence: - - if: '{{ nspanel_event.component in ["button08", "button09"] }}' - then: # Custom buttons - - wait_template: > - {% set button_wait = states(nspanelevent) %} - {% set button_wait = button_wait | from_json if button_wait is string and button_wait not in ["unavailable", "unknown", "", None] else { "page": "unknown", "component": "unknown", "value": "unknown" } %} - {{ - button_wait.page == nspanel_event.page and - button_wait.component == nspanel_event.component and - button_wait.value == "release" - }} - timeout: - seconds: 1 - continue_on_timeout: true - - *climate-update_custom_buttons-variables + - *variables-settings_entity + - *variables-climate_entity + - condition: '{{ settings_entity_domain == "climate" }}' + - variables: + new_hvac_mode: > + {{ + page_climate.buttons.hvac_mode + | selectattr("component", "defined") + | selectattr("component", "eq", nspanel_event.component) + | map(attribute="mode") + | list + | first + }} + - condition: '{{ new_hvac_mode in hvac_modes and new_hvac_mode in ["off", "heat", "cool", "heat_cool", "auto", "dry", "fan_only"] }}' + - service: climate.set_hvac_mode + data: + hvac_mode: '{{ new_hvac_mode }}' + target: + entity_id: '{{ climate_entity }}' + continue_on_error: true + - *climate-update_buttons + + - alias: climate custom button press + conditions: + - '{{ nspanel_event.page == page.climate }}' + - '{{ nspanel_event.component in ["button08", "button09"] }}' + - '{{ nspanel_event.value == "press" }}' + sequence: + - wait_template: > + {% set button_wait = states(nspanelevent) %} + {% set button_wait = button_wait | from_json if button_wait is string and button_wait not in ["unavailable", "unknown", "", None] else { "page": "unknown", "component": "unknown", "value": "unknown" } %} + {{ + button_wait.page == nspanel_event.page and + button_wait.component == nspanel_event.component and + button_wait.value == "release" + }} + timeout: + seconds: 1 + continue_on_timeout: true + - *climate-update_custom_buttons-variables + - variables: + ##### Entity - Page Button - Toggle Entity ##### + button_wait: > + {{ + states(nspanelevent) + if nspanelevent is string and states(nspanelevent) not in ["unavailable", "unknown", "", None] + else { "page": "unknown", "component": "unknown", "value": "unknown" } + }} + last_click_button: '{{ climate_custom_buttons | selectattr("component", "defined") | selectattr("component", "eq", nspanel_event.component) | list }}' + - condition: '{{ last_click_button | count >= 0 and button_wait.page == nspanel_event.page }}' + - if: '{{ not wait.completed }}' + then: # Long press + - choose: + - conditions: '{{ button_wait.component == "button08" }}' + sequence: !input climate_button08_hold_custom_action + - conditions: '{{ button_wait.component == "button09" }}' + sequence: !input climate_button09_hold_custom_action + else: # Short press - variables: - ##### Entity - Page Button - Toggle Entity ##### - button_wait: > + last_click_button: '{{ last_click_button[0] }}' + entity_domain: > {{ - states(nspanelevent) - if nspanelevent is string and states(nspanelevent) not in ["unavailable", "unknown", "", None] - else { "page": "unknown", "component": "unknown", "value": "unknown" } + last_click_button.entity.split(".")[0] | default("unknown") + if + last_click_button.entity is string and + last_click_button.entity | length > 0 and + last_click_button.entity.split(".") | count > 0 + else "unknown" }} - last_click_button: '{{ climate_custom_buttons | selectattr("component", "defined") | selectattr("component", "eq", nspanel_event.component) | list }}' - - condition: '{{ last_click_button | count >= 0 and button_wait.page == nspanel_event.page }}' - - if: '{{ not wait.completed }}' - then: # Long press - - choose: - - conditions: '{{ button_wait.component == "button08" }}' - sequence: !input climate_button08_hold_custom_action - - conditions: '{{ button_wait.component == "button09" }}' - sequence: !input climate_button09_hold_custom_action - else: # Short press - - variables: - last_click_button: '{{ last_click_button[0] }}' - entity_domain: > - {{ - last_click_button.entity.split(".")[0] | default("unknown") - if - last_click_button.entity is string and - last_click_button.entity | length > 0 and - last_click_button.entity.split(".") | count > 0 - else "unknown" - }} - - condition: '{{ entity_domain not in ["unknown", "person", "binary_sensor", "sensor", "climate"] }}' - - service: >- - {% if entity_domain in ["light", "switch", "cover", "input_boolean", "automation", "fan"] %} - {{ entity_domain }}.toggle - {% elif entity_domain in ["button", "input_button"] %} - {{ entity_domain }}.press - {% elif entity_domain in ["scene", "script"] %} - {{ entity_domain }}.turn_on - {% else %} - homeassistant.update_entity - {% endif %} - data: - entity_id: '{{ last_click_button.entity }}' - continue_on_error: true - else: # Climate buttons - - *variables-settings_entity - - *variables-climate_entity - - condition: '{{ settings_entity_domain == "climate" }}' - - variables: - new_hvac_mode: > - {{ - page_climate.buttons.hvac_mode - | selectattr("component", "defined") - | selectattr("component", "eq", nspanel_event.component) - | map(attribute="mode") - | list - | first - }} - - condition: '{{ new_hvac_mode in hvac_modes and new_hvac_mode in ["off", "heat", "cool", "heat_cool", "auto", "dry", "fan_only"] }}' - - service: climate.set_hvac_mode + - condition: '{{ entity_domain not in ["unknown", "person", "binary_sensor", "sensor", "climate"] }}' + - service: >- + {% if entity_domain in ["light", "switch", "cover", "input_boolean", "automation", "fan"] %} + {{ entity_domain }}.toggle + {% elif entity_domain in ["button", "input_button"] %} + {{ entity_domain }}.press + {% elif entity_domain in ["scene", "script"] %} + {{ entity_domain }}.turn_on + {% else %} + homeassistant.update_entity + {% endif %} data: - hvac_mode: '{{ new_hvac_mode }}' - target: - entity_id: '{{ climate_entity }}' + entity_id: '{{ last_click_button.entity }}' continue_on_error: true - - *climate-update_buttons - alias: Button page - Button press conditions: diff --git a/nspanel_eu.HMI b/nspanel_eu.HMI index 957149b..a93787a 100644 Binary files a/nspanel_eu.HMI and b/nspanel_eu.HMI differ diff --git a/nspanel_eu.tft b/nspanel_eu.tft index dbacc12..266010a 100644 Binary files a/nspanel_eu.tft and b/nspanel_eu.tft differ diff --git a/nspanel_eu_code/weather02.txt b/nspanel_eu_code/weather02.txt index 5c39501..dfe10b4 100644 --- a/nspanel_eu_code/weather02.txt +++ b/nspanel_eu_code/weather02.txt @@ -65,7 +65,7 @@ Text date Text : Max. Text Size : 25 -Text value01 +Text temperature Attributes ID : 8 Scope : local @@ -75,7 +75,7 @@ Text value01 Text : Max. Text Size : 15 -Text value05 +Text value01 Attributes ID : 9 Scope : local @@ -85,7 +85,7 @@ Text value05 Text : Max. Text Size : 15 -Text value04 +Text value05 Attributes ID : 10 Scope : local @@ -95,7 +95,7 @@ Text value04 Text : Max. Text Size : 15 -Text value02 +Text value04 Attributes ID : 11 Scope : local @@ -105,7 +105,7 @@ Text value02 Text : Max. Text Size : 15 -Text value03 +Text value02 Attributes ID : 12 Scope : local @@ -115,7 +115,7 @@ Text value03 Text : Max. Text Size : 15 -Text value01_icon +Text value03 Attributes ID : 13 Scope : local @@ -123,9 +123,9 @@ Text value01_icon Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 10 + Max. Text Size : 15 -Text value02_icon +Text value01_icon Attributes ID : 14 Scope : local @@ -135,7 +135,7 @@ Text value02_icon Text : Max. Text Size : 10 -Text value03_icon +Text value02_icon Attributes ID : 15 Scope : local @@ -145,7 +145,7 @@ Text value03_icon Text : Max. Text Size : 10 -Text value04_icon +Text value03_icon Attributes ID : 16 Scope : local @@ -155,7 +155,7 @@ Text value04_icon Text : Max. Text Size : 10 -Text value05_icon +Text value04_icon Attributes ID : 17 Scope : local @@ -165,7 +165,7 @@ Text value05_icon Text : Max. Text Size : 10 -Text temperature +Text value05_icon Attributes ID : 18 Scope : local @@ -173,7 +173,7 @@ Text temperature Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 15 + Max. Text Size : 10 Picture weather_icon Attributes diff --git a/nspanel_eu_code/weather03.txt b/nspanel_eu_code/weather03.txt index 5ef9270..c05f616 100644 --- a/nspanel_eu_code/weather03.txt +++ b/nspanel_eu_code/weather03.txt @@ -65,7 +65,7 @@ Text date Text : Max. Text Size : 25 -Text value01 +Text temperature Attributes ID : 8 Scope : local @@ -75,7 +75,7 @@ Text value01 Text : Max. Text Size : 15 -Text value05 +Text value01 Attributes ID : 9 Scope : local @@ -85,7 +85,7 @@ Text value05 Text : Max. Text Size : 15 -Text value04 +Text value05 Attributes ID : 10 Scope : local @@ -95,7 +95,7 @@ Text value04 Text : Max. Text Size : 15 -Text value02 +Text value04 Attributes ID : 11 Scope : local @@ -105,7 +105,7 @@ Text value02 Text : Max. Text Size : 15 -Text value03 +Text value02 Attributes ID : 12 Scope : local @@ -115,7 +115,7 @@ Text value03 Text : Max. Text Size : 15 -Text value01_icon +Text value03 Attributes ID : 13 Scope : local @@ -123,9 +123,9 @@ Text value01_icon Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 10 + Max. Text Size : 15 -Text value02_icon +Text value01_icon Attributes ID : 14 Scope : local @@ -135,7 +135,7 @@ Text value02_icon Text : Max. Text Size : 10 -Text value03_icon +Text value02_icon Attributes ID : 15 Scope : local @@ -145,7 +145,7 @@ Text value03_icon Text : Max. Text Size : 10 -Text value04_icon +Text value03_icon Attributes ID : 16 Scope : local @@ -155,7 +155,7 @@ Text value04_icon Text : Max. Text Size : 10 -Text value05_icon +Text value04_icon Attributes ID : 17 Scope : local @@ -165,7 +165,7 @@ Text value05_icon Text : Max. Text Size : 10 -Text temperature +Text value05_icon Attributes ID : 18 Scope : local @@ -173,7 +173,7 @@ Text temperature Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 15 + Max. Text Size : 10 Picture weather_icon Attributes diff --git a/nspanel_eu_code/weather04.txt b/nspanel_eu_code/weather04.txt index ba3bcf6..1def451 100644 --- a/nspanel_eu_code/weather04.txt +++ b/nspanel_eu_code/weather04.txt @@ -65,7 +65,7 @@ Text date Text : Max. Text Size : 25 -Text value01 +Text temperature Attributes ID : 8 Scope : local @@ -75,7 +75,7 @@ Text value01 Text : Max. Text Size : 15 -Text value05 +Text value01 Attributes ID : 9 Scope : local @@ -85,7 +85,7 @@ Text value05 Text : Max. Text Size : 15 -Text value04 +Text value05 Attributes ID : 10 Scope : local @@ -95,7 +95,7 @@ Text value04 Text : Max. Text Size : 15 -Text value02 +Text value04 Attributes ID : 11 Scope : local @@ -105,7 +105,7 @@ Text value02 Text : Max. Text Size : 15 -Text value03 +Text value02 Attributes ID : 12 Scope : local @@ -115,7 +115,7 @@ Text value03 Text : Max. Text Size : 15 -Text value01_icon +Text value03 Attributes ID : 13 Scope : local @@ -123,9 +123,9 @@ Text value01_icon Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 10 + Max. Text Size : 15 -Text value02_icon +Text value01_icon Attributes ID : 14 Scope : local @@ -135,7 +135,7 @@ Text value02_icon Text : Max. Text Size : 10 -Text value03_icon +Text value02_icon Attributes ID : 15 Scope : local @@ -145,7 +145,7 @@ Text value03_icon Text : Max. Text Size : 10 -Text value04_icon +Text value03_icon Attributes ID : 16 Scope : local @@ -155,7 +155,7 @@ Text value04_icon Text : Max. Text Size : 10 -Text value05_icon +Text value04_icon Attributes ID : 17 Scope : local @@ -165,7 +165,7 @@ Text value05_icon Text : Max. Text Size : 10 -Text temperature +Text value05_icon Attributes ID : 18 Scope : local @@ -173,7 +173,7 @@ Text temperature Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 15 + Max. Text Size : 10 Picture weather_icon Attributes diff --git a/nspanel_eu_code/weather05.txt b/nspanel_eu_code/weather05.txt index 52c56c3..31fa499 100644 --- a/nspanel_eu_code/weather05.txt +++ b/nspanel_eu_code/weather05.txt @@ -65,7 +65,7 @@ Text date Text : Max. Text Size : 25 -Text value01 +Text temperature Attributes ID : 8 Scope : local @@ -75,7 +75,7 @@ Text value01 Text : Max. Text Size : 15 -Text value05 +Text value01 Attributes ID : 9 Scope : local @@ -85,7 +85,7 @@ Text value05 Text : Max. Text Size : 15 -Text value04 +Text value05 Attributes ID : 10 Scope : local @@ -95,7 +95,7 @@ Text value04 Text : Max. Text Size : 15 -Text value02 +Text value04 Attributes ID : 11 Scope : local @@ -105,7 +105,7 @@ Text value02 Text : Max. Text Size : 15 -Text value03 +Text value02 Attributes ID : 12 Scope : local @@ -115,7 +115,7 @@ Text value03 Text : Max. Text Size : 15 -Text value01_icon +Text value03 Attributes ID : 13 Scope : local @@ -123,9 +123,9 @@ Text value01_icon Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 10 + Max. Text Size : 15 -Text value02_icon +Text value01_icon Attributes ID : 14 Scope : local @@ -135,7 +135,7 @@ Text value02_icon Text : Max. Text Size : 10 -Text value03_icon +Text value02_icon Attributes ID : 15 Scope : local @@ -145,7 +145,7 @@ Text value03_icon Text : Max. Text Size : 10 -Text value04_icon +Text value03_icon Attributes ID : 16 Scope : local @@ -155,7 +155,7 @@ Text value04_icon Text : Max. Text Size : 10 -Text value05_icon +Text value04_icon Attributes ID : 17 Scope : local @@ -165,7 +165,7 @@ Text value05_icon Text : Max. Text Size : 10 -Text temperature +Text value05_icon Attributes ID : 18 Scope : local @@ -173,7 +173,7 @@ Text temperature Send Component ID : disabled Associated Keyboard: none Text : - Max. Text Size : 15 + Max. Text Size : 10 Picture weather_icon Attributes diff --git a/nspanel_us.HMI b/nspanel_us.HMI index a04a47b..c3130c6 100644 Binary files a/nspanel_us.HMI and b/nspanel_us.HMI differ diff --git a/nspanel_us.tft b/nspanel_us.tft index e227cd5..46e6995 100644 Binary files a/nspanel_us.tft and b/nspanel_us.tft differ diff --git a/nspanel_us_code/weather02.txt b/nspanel_us_code/weather02.txt index 40fad53..dfe10b4 100644 --- a/nspanel_us_code/weather02.txt +++ b/nspanel_us_code/weather02.txt @@ -45,109 +45,9 @@ Text day Text : Max. Text Size : 20 -Text value01 - Attributes - ID : 5 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value05 - Attributes - ID : 6 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value04 - Attributes - ID : 7 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value02 - Attributes - ID : 8 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value03 - Attributes - ID : 9 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value01_icon - Attributes - ID : 11 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value02_icon - Attributes - ID : 12 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value03_icon - Attributes - ID : 13 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value04_icon - Attributes - ID : 14 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value05_icon - Attributes - ID : 15 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - Text loading Attributes - ID : 16 + ID : 6 Scope : local Dragging : 0 Send Component ID : disabled @@ -157,7 +57,7 @@ Text loading Text date Attributes - ID : 17 + ID : 7 Scope : local Dragging : 0 Send Component ID : disabled @@ -167,7 +67,7 @@ Text date Text temperature Attributes - ID : 18 + ID : 8 Scope : local Dragging : 0 Send Component ID : disabled @@ -175,6 +75,106 @@ Text temperature Text : Max. Text Size : 15 +Text value01 + Attributes + ID : 9 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value05 + Attributes + ID : 10 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value04 + Attributes + ID : 11 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value02 + Attributes + ID : 12 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value03 + Attributes + ID : 13 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value01_icon + Attributes + ID : 14 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value02_icon + Attributes + ID : 15 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value03_icon + Attributes + ID : 16 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value04_icon + Attributes + ID : 17 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value05_icon + Attributes + ID : 18 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + Picture weather_icon Attributes ID : 3 @@ -184,7 +184,7 @@ Picture weather_icon Hotspot weather_back Attributes - ID : 10 + ID : 5 Scope : local Dragging : 0 Send Component ID: disabled diff --git a/nspanel_us_code/weather03.txt b/nspanel_us_code/weather03.txt index a88d2b8..c05f616 100644 --- a/nspanel_us_code/weather03.txt +++ b/nspanel_us_code/weather03.txt @@ -45,109 +45,9 @@ Text day Text : Max. Text Size : 20 -Text value01 - Attributes - ID : 5 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value05 - Attributes - ID : 6 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value04 - Attributes - ID : 7 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value02 - Attributes - ID : 8 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value03 - Attributes - ID : 9 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value01_icon - Attributes - ID : 11 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value02_icon - Attributes - ID : 12 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value03_icon - Attributes - ID : 13 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value04_icon - Attributes - ID : 14 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value05_icon - Attributes - ID : 15 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - Text loading Attributes - ID : 16 + ID : 6 Scope : local Dragging : 0 Send Component ID : disabled @@ -157,7 +57,7 @@ Text loading Text date Attributes - ID : 17 + ID : 7 Scope : local Dragging : 0 Send Component ID : disabled @@ -167,7 +67,7 @@ Text date Text temperature Attributes - ID : 18 + ID : 8 Scope : local Dragging : 0 Send Component ID : disabled @@ -175,6 +75,106 @@ Text temperature Text : Max. Text Size : 15 +Text value01 + Attributes + ID : 9 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value05 + Attributes + ID : 10 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value04 + Attributes + ID : 11 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value02 + Attributes + ID : 12 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value03 + Attributes + ID : 13 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value01_icon + Attributes + ID : 14 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value02_icon + Attributes + ID : 15 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value03_icon + Attributes + ID : 16 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value04_icon + Attributes + ID : 17 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value05_icon + Attributes + ID : 18 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + Picture weather_icon Attributes ID : 3 @@ -184,7 +184,7 @@ Picture weather_icon Hotspot weather_back Attributes - ID : 10 + ID : 5 Scope : local Dragging : 0 Send Component ID: disabled diff --git a/nspanel_us_code/weather04.txt b/nspanel_us_code/weather04.txt index 25d0bb3..1def451 100644 --- a/nspanel_us_code/weather04.txt +++ b/nspanel_us_code/weather04.txt @@ -45,109 +45,9 @@ Text day Text : Max. Text Size : 20 -Text value01 - Attributes - ID : 5 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value05 - Attributes - ID : 6 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value04 - Attributes - ID : 7 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value02 - Attributes - ID : 8 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value03 - Attributes - ID : 9 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value01_icon - Attributes - ID : 11 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value02_icon - Attributes - ID : 12 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value03_icon - Attributes - ID : 13 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value04_icon - Attributes - ID : 14 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value05_icon - Attributes - ID : 15 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - Text loading Attributes - ID : 16 + ID : 6 Scope : local Dragging : 0 Send Component ID : disabled @@ -157,7 +57,7 @@ Text loading Text date Attributes - ID : 17 + ID : 7 Scope : local Dragging : 0 Send Component ID : disabled @@ -167,7 +67,7 @@ Text date Text temperature Attributes - ID : 18 + ID : 8 Scope : local Dragging : 0 Send Component ID : disabled @@ -175,6 +75,106 @@ Text temperature Text : Max. Text Size : 15 +Text value01 + Attributes + ID : 9 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value05 + Attributes + ID : 10 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value04 + Attributes + ID : 11 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value02 + Attributes + ID : 12 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value03 + Attributes + ID : 13 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value01_icon + Attributes + ID : 14 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value02_icon + Attributes + ID : 15 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value03_icon + Attributes + ID : 16 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value04_icon + Attributes + ID : 17 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value05_icon + Attributes + ID : 18 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + Picture weather_icon Attributes ID : 3 @@ -184,7 +184,7 @@ Picture weather_icon Hotspot weather_back Attributes - ID : 10 + ID : 5 Scope : local Dragging : 0 Send Component ID: disabled diff --git a/nspanel_us_code/weather05.txt b/nspanel_us_code/weather05.txt index c633765..31fa499 100644 --- a/nspanel_us_code/weather05.txt +++ b/nspanel_us_code/weather05.txt @@ -45,109 +45,9 @@ Text day Text : Max. Text Size : 20 -Text value01 - Attributes - ID : 5 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value05 - Attributes - ID : 6 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value04 - Attributes - ID : 7 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value02 - Attributes - ID : 8 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value03 - Attributes - ID : 9 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 15 - -Text value01_icon - Attributes - ID : 11 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value02_icon - Attributes - ID : 12 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value03_icon - Attributes - ID : 13 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value04_icon - Attributes - ID : 14 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - -Text value05_icon - Attributes - ID : 15 - Scope : local - Dragging : 0 - Send Component ID : disabled - Associated Keyboard: none - Text : - Max. Text Size : 10 - Text loading Attributes - ID : 16 + ID : 6 Scope : local Dragging : 0 Send Component ID : disabled @@ -157,7 +57,7 @@ Text loading Text date Attributes - ID : 17 + ID : 7 Scope : local Dragging : 0 Send Component ID : disabled @@ -167,7 +67,7 @@ Text date Text temperature Attributes - ID : 18 + ID : 8 Scope : local Dragging : 0 Send Component ID : disabled @@ -175,6 +75,106 @@ Text temperature Text : Max. Text Size : 15 +Text value01 + Attributes + ID : 9 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value05 + Attributes + ID : 10 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value04 + Attributes + ID : 11 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value02 + Attributes + ID : 12 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value03 + Attributes + ID : 13 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 15 + +Text value01_icon + Attributes + ID : 14 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value02_icon + Attributes + ID : 15 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value03_icon + Attributes + ID : 16 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value04_icon + Attributes + ID : 17 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + +Text value05_icon + Attributes + ID : 18 + Scope : local + Dragging : 0 + Send Component ID : disabled + Associated Keyboard: none + Text : + Max. Text Size : 10 + Picture weather_icon Attributes ID : 3 @@ -184,7 +184,7 @@ Picture weather_icon Hotspot weather_back Attributes - ID : 10 + ID : 5 Scope : local Dragging : 0 Send Component ID: disabled