Update feedback flash to 0.5 seconds

This commit is contained in:
2025-12-20 15:33:41 -08:00
parent 4f344e7b16
commit 27d322f09f

View File

@@ -8,7 +8,7 @@
# Features: # Features:
# - Cycles through available modes in input_select # - Cycles through available modes in input_select
# - Updates LED color to match new mode (ROYGBIV scheme) # - Updates LED color to match new mode (ROYGBIV scheme)
# - Flashes LED to confirm mode change (3-second pulse) # - Flashes LED to confirm mode change (0.5-second pulse)
# #
# Requirements: # Requirements:
# - Inovelli Blue Dimmer (VZM31-SN) paired with Zigbee2MQTT # - Inovelli Blue Dimmer (VZM31-SN) paired with Zigbee2MQTT
@@ -88,9 +88,9 @@ action:
data: data:
value: "{{ next_color }}" value: "{{ next_color }}"
# Flash LED to confirm mode change (3-second pulse) # Flash LED to confirm mode change (0.5-second pulse)
- service: mqtt.publish - service: mqtt.publish
data: data:
topic: "zigbee2mqtt/{{ zigbee2mqtt_device_name }}/set" topic: "zigbee2mqtt/{{ zigbee2mqtt_device_name }}/set"
payload: >- payload: >-
{"led_effect": {"effect": "pulse", "color": {{ next_color }}, "level": 100, "duration": 3}} {"led_effect": {"effect": "pulse", "color": {{ next_color }}, "level": 100, "duration": 0.5}}