Advertisement
petrfaitl

groups.yaml example

Jan 13th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.75 KB | None | 0 0
  1. default_view:
  2.   name: Home
  3.   view: true
  4.   entities:
  5.  - group.lights
  6.  
  7. # This block is what you need to configure at least three of your lights, including your node device
  8. lights:
  9.   name: Lumiere
  10.   view: false
  11.   icon: mdi:lightbulb
  12.   control: hidden
  13.   entities:
  14.  - light.cuisine_switch
  15.   - light.salon
  16.   - light.lumiere_plafond
  17.  
  18. # Further examples how to configure groups.yaml
  19. weather:
  20.   view: true
  21.   name: Weather
  22.   entities:
  23.  - group.sun
  24.   - group.forecast
  25. sun:
  26.   view: false
  27.   entities:
  28.  - sensor.time
  29.   - sun.sun
  30.   - sensor.sun_rising
  31.   - sensor.sun_setting
  32. forecast:
  33.   view: false
  34.   name: Daily Forecast
  35.   entities:
  36.  - sensor.pws_weather_1d_metric_2
  37.   - sensor.pws_weather_1n_metric_2
  38.   - sensor.pws_weather_2d_metric_2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement