jazzyisj
(Jason)
1
Anybody have “transition” or “flash” working with Lutron Caseta lights?
Neither of these work for me.
- service: light.turn_on
data:
entity_id: light.living_room_pot_lights
transition: 60
- service: light.turn_on
data:
entity_id: light.living_room_pot_lights
flash: short
jwelter
(John Welter)
2
They work on the Upsert custom integration component.
jazzyisj
(Jason)
3
Of course that integration doesn’t support the non-pro bridge. 
Thanks for the info tho!
i have mine flashing with this script, still tweaking delays
alias: Alarmo flashing lights
sequence:
- service: scene.create
data:
scene_id: before_alarm
snapshot_entities:
- light.living_room_main_lights
- repeat:
sequence:
- service: light.turn_on
target:
entity_id:
- light.living_room_main_lights
device_id: []
area_id: []
data:
rgb_color:
- 0
- 0
- 255
brightness_pct: 100
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 20
- service: light.turn_off
target:
entity_id:
- light.living_room_main_lights
device_id: []
area_id: []
data: {}
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 200
until:
- condition: state
entity_id: alarm_control_panel.alarmo
state: disarmed
- scene: scene.before_alarm
mode: single
icon: mdi:lightbulb
description: ""