2024/10/20

번개표 Matter Wifi Bulb / Effect script



마지막 남은 Yeelight wifi 전구를 걷어내고 번개표 Matter 전구로 알림등 교체. bulb Effect는 script로 구현.
Transition은 HA에서 설정하는 건 적용안되니 Tuya앱에서 그라데이션 0.5정도로 설정. Transition은 delay시간보다는 짧게 설정해야 제대로 적용됨.
Yeelight 전구에 내장된 effect보단 못하지만 범용적으로 쓸 수 있는게 장점.

police_effect:
  sequence:
    - repeat:
        until:
          - condition: state
            entity_id: light.notify
            state: 'off'
        sequence:
          - service: light.turn_on
            data:
              transition:0
              rgb_color: [255, 0, 0]
              entity_id: light.notify
          - delay:
              milliseconds: '700'
          - service: light.turn_on
            data:
              transition: 0
              rgb_color: [0, 0, 255]
              entity_id: light.notify
          - delay:
              milliseconds: '700'
              brightness: 250
              brightness: 250
red_effect:
  sequence:
    - repeat:
        until:
          - condition: state
            entity_id: light.notify
            state: 'off'
        sequence:
          - service: light.turn_on
            data:
              brightness: 250
              rgb_color: [255, 0, 0]
              entity_id: light.notify
          - delay:
              milliseconds: '700'
          - service: light.turn_on
            data:
              brightness: 10
              rgb_color: [255, 0, 0]
              entity_id: light.notify
          - delay:
              milliseconds: '700'

** 번개표 Matter Wifi 스마트벌브: https://ntxlds.blogspot.com/2024/08/matter-wifi.html