You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
360 B

  1. # If you want to control light presets from Home Assistant, then you can
  2. # make use of the following service.
  3. api:
  4. services:
  5. - service: activate_preset
  6. variables:
  7. my_group: string
  8. my_preset: string
  9. then:
  10. - preset.activate:
  11. group: !lambda 'return my_group;'
  12. preset: !lambda 'return my_preset;'