change description

This commit is contained in:
Blackymas
2023-04-03 21:13:30 +02:00
parent 2953942fbd
commit 81d0bcf304

View File

@@ -17,7 +17,7 @@ And the best thing is, the installation takes only a few minutes.
The goal was to create a version that allows everyone to use the NSpanel fully local without having to deal with programming or reading hours of documentation - *AND YES WE DID IT!!!!* ;) The goal was to create a version that allows everyone to use the NSpanel fully local without having to deal with programming or reading hours of documentation - *AND YES WE DID IT!!!!* ;)
📕 Full documentation and installation is available here [NSPanel Configuration, Setup and HowTo](https://github.com/Blackymas/NSPanel_HA_Blueprint/wiki). 📕 Full documentation and installation video is available here [NSPanel Configuration, Setup and HowTo](https://github.com/Blackymas/NSPanel_HA_Blueprint/wiki).
🖼️ Home Assistant [Icon Page](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html) 🖼️ Home Assistant [Icon Page](https://htmlpreview.github.io/?https://github.com/jobr99/Generate-HASP-Fonts/blob/master/cheatsheet.html)
@@ -5902,9 +5902,9 @@ action:
- variables: - variables:
hvac_mode: "{{ states(entity_long) }}" hvac_mode: "{{ states(entity_long) }}"
outdoor_temp: >- outdoor_temp: >-
{%- if outdoortemp is match "sensor." {%- if outdoortemp is match "sensor."
and states(outdoortemp) != "unavailable" and states(outdoortemp) != "unavailable"
and states(outdoortemp).state is defined and states(outdoortemp).state is defined
and is_number(states(outdoortemp).state) -%} and is_number(states(outdoortemp).state) -%}
{{ states(outdoortemp) | round(1) }} {{ states(outdoortemp) | round(1) }}
{%- else -%} {{state_attr(weather.entity,"temperature") | round(1) if is_number(state_attr(weather.entity, "temperature")) else 0 }} {%- else -%} {{state_attr(weather.entity,"temperature") | round(1) if is_number(state_attr(weather.entity, "temperature")) else 0 }}
@@ -6170,7 +6170,7 @@ action:
## PAGE HOME ## ## PAGE HOME ##
- conditions: '{{ states(current_page) == page_home }}' - conditions: '{{ states(current_page) == page_home }}'
sequence: *refresh_page_home sequence: *refresh_page_home
## PAGE BUTTONPAGE01 ## ## PAGE BUTTONPAGE01 ##
- conditions: '{{ states(current_page) == page_buttonpage01 }}' - conditions: '{{ states(current_page) == page_buttonpage01 }}'
sequence: *refresh_page_buttonpage01 sequence: *refresh_page_buttonpage01