Display name is not recognized. #799
-
Hello, This is what my configuration looks like: openhasp:
plate35:
objects:
- obj: "p0b1" # temperature label on all pages
properties:
"text": '{{ states("sensor.my_room_temperature") }}°C'
- obj: "p1b2" # light-switch toggle button
properties:
"val": '{{ 1 if states("light.my_room") == "on" else 0 }}'
"text": '{{ "\uE6E8" if is_state("light.my_room", "on") else "\uE335" | e }}'
event:
"up":
- service: homeassistant.toggle
entity_id: "light.my_room"
- obj: "p1b3" # dropdown
event:
"changed":
- service: persistent_notification.create
data:
message: I like {{ text }} so the example... However, Home Assistant's log file says: Does anyone know what I'm doing wrong? Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It seems you included the |
Beta Was this translation helpful? Give feedback.
It seems you included the
openhasp
key twice. If you have the key in yourconfiguration.yaml
then you don't need to repeat it again inopenhasp.yaml
.