mirror of https://github.com/arendst/Tasmota.git
Updated MagicHome LED strip controller (markdown)
parent
e647796206
commit
ea0a8e7209
|
@ -69,7 +69,7 @@ Due to variants, you can configure:
|
|||
If you have a variant with an IR Remote (as per the opening picture), you can use the new `rule` command to make the remote buttons change the light levels. For example, this rule allows me to turn it on and off, change the brightness, and turn it on to full white:
|
||||
|
||||
```
|
||||
mosquitto_pub -t 'cmnd/light/rule1' -m 'on IrReceived#Data=FFF807 do power OFF endon on IrReceived#Data=FFB04F do WAKEUP endon on IrReceived#Data=FF906F do dimmer + endon on IrReceived#Data=FFB847 do dimmer - endon on IrReceived#Data=FFA857 do color #000000ff endon'
|
||||
mosquitto_pub -t 'cmnd/light/rule1' -m 'on IrReceived#Data=0xFFF807 do power OFF endon on IrReceived#Data=0xFFB04F do WAKEUP endon on IrReceived#Data=0xFF906F do dimmer + endon on IrReceived#Data=0xFFB847 do dimmer - endon on IrReceived#Data=0xFFA857 do color #000000ff endon'
|
||||
```
|
||||
|
||||
### Full Set of rules for IR remote
|
||||
|
@ -88,7 +88,7 @@ mosquitto_pub -t 'cmnd/light/rule2' -m '1'
|
|||
mosquitto_pub -t 'cmnd/light/rule3' -m '1'
|
||||
```
|
||||
|
||||
The hex codes for the "Data" value come from the data tag when looking at the JSON sent via MQTT. From here you can program it to do what ever you want. See here for more details: https://github.com/arendst/Sonoff-Tasmota/wiki/Rules
|
||||
The hex codes for the "Data" value come from the data tag when looking at the JSON sent via MQTT. You can also view this data on the Tasmota console screen. From here you can program it to do what ever you want. See here for more details: https://github.com/arendst/Sonoff-Tasmota/wiki/Rules
|
||||
|
||||
![](https://i.imgur.com/AWXrYTp.jpg)
|
||||
|
||||
|
|
Loading…
Reference in New Issue