How to turn off the blue led on the shutter buttons?

Post Reply
root
Site Admin
Posts: 6
Joined: Sat Feb 04, 2023 12:23 am

How to turn off the blue led on the shutter buttons?

Post by root »

There are three blue led indicators on each buttons.
You can use following command to turn it on/off
Turn off: TuyaSend4 7,0
Turn on: TuyaSend4 7,1
temp1.JPG
temp1.JPG (67.62 KiB) Viewed 85 times
scarver
Posts: 9
Joined: Thu Mar 06, 2025 3:06 pm

Re: How to turn off the blue led on the shutter buttons?

Post by scarver »

Pressing the pause button three times in succession switches the brightness levels of the LEDs in the switch background! Light-medium-off-...
macom
Posts: 1
Joined: Wed Apr 16, 2025 4:32 pm

Re: How to turn off the blue led on the shutter buttons?

Post by macom »

The change seems to be not persistent.
Which events does it revert? How to make it persistent?

EDIT: Workaround - Execute automation in home assistant:

Code: Select all

alias: LED off
description: ""
triggers:
  - trigger: time
    at: "12:20:00"
conditions: []
actions:
  - action: mqtt.publish
    metadata: {}
    data:
      qos: "2"
      topic: cmnd/MyShutte1/TuyaSend4
      payload: 7,0
mode: single
Post Reply