| 12345678910111213141516171819202122232425262728 |
- logLevel: "INFO"
- actions:
- - title: Turn heating up
- icon: '🔼'
- shell: /opt/heating.sh up
- - title: Turn heating down
- icon: '🔽'
- shell: /opt/heating.sh down
- entities:
- - file: /etc/OliveTin/entities/heating.yaml
- name: heating
- dashboards:
- - title: Heating Control Panel
- contents:
- - title: "{{ heater.title }}"
- entity: heating
- type: fieldset
- contents:
- - type: display
- title: |
- <span class = "icon">🌡</span> <br />{{ heating.temperature }}
- - title: Turn heating up
- - title: Turn heating down
|