Available from:
Banggood.com
Aliexpress.com
Manufacturer:
Blitzwolf.com
Install method:
Tuya-Convert
GPIO # | Component |
---|---|
GPIO00 | None |
GPIO01 | None |
GPIO02 | None |
GPIO03 | None |
GPIO04 | PWM5 |
GPIO05 | PWM2 |
GPIO09 | None |
GPIO10 | None |
GPIO12 | PWM3 |
GPIO13 | IRrecv |
GPIO14 | PWM4 |
GPIO15 | PWM1 |
GPIO16 | None |
FLAG | None |
{"NAME":"BW-LT27","GPIO":[0,0,0,0,41,38,0,0,39,51,40,37,0],"FLAG":0,"BASE":18}
Tuya-Convert might not be possible for this device since the template was added (2020-02-06).
by blakadder
This light bulb has a built-in IR receiver connected to a GPIO which opens up many possibilities. You could theoretically use your TVs remote to control the bulb.
IrReceived strings for the remote:
Power
{"Protocol":"NEC","Bits":32,"Data":"0x21C724DB"}
Moon
{"Protocol":"NEC","Bits":32,"Data":"0x21C754AB"}
Up Arrow
{"Protocol":"NEC","Bits":32,"Data":"0x21C7847B"}
Down Arrow
{"Protocol":"NEC","Bits":32,"Data":"0x21C744BB"}
<W
{"Protocol":"NEC","Bits":32,"Data":"0x21C7E41B"}
C>
{"Protocol":"NEC","Bits":32,"Data":"0x21C714EB"}
100%
{"Protocol":"NEC","Bits":32,"Data":"0x21C704FB"}
RGB
{"Protocol":"NEC","Bits":32,"Data":"0x21C7649B"}
D
{"Protocol":"NEC","Bits":32,"Data":"0x21C7827D"}
S
{"Protocol":"NEC","Bits":32,"Data":"0x21C7C43B"}
With the following rules the remote is configured with these functions:
- Power TOGGLE
- Nighlight mode using Dimmer 10 and CT 500
- Dimmer + / -
- CT +/- (CCT mode) / Color +/- (RGB mode)
- Max brightness - Dimmer 100
- Switch between CCT and RGB mode
- Maximum white (Color FFFFFFFFFF) (CCT mode) / Single color (RGB mode)
- Wakeup mode (CCT mode) / Cycle RGB colors (RGB mode)
Rule1
ON System#Boot DO Backlog Rule1 1, Rule2 1, Rule3 0 ENDON
ON IrReceived#Data=0x21C754AB DO Backlog Dimmer 10; CT 500 ENDON
ON IrReceived#Data=0x21C724DB DO Power toggle ENDON
ON IrReceived#Data=0x21C7649B DO Backlog Rule2 2; Rule3 2 ENDON
ON IrReceived#Data=0x21C704FB DO Dimmer 100 ENDON
Rule2
ON IrReceived#Data=0x21C7847B DO Dimmer + ENDON
ON IrReceived#Data=0x21C744BB DO Dimmer - ENDON
ON IrReceived#Data=0x21C7E41B DO CT + ENDON
ON IrReceived#Data=0x21C714EB DO CT - ENDON
ON IrReceived#Data=0x21C7827D DO Color FFFFFFFFFF ENDON
ON IrReceived#Data=0x21C7C43B DO Backlog Dimmer 0; CT 300; Wakeup 100 ENDON
Rule3
ON IrReceived#Data=0x21C7847B DO Dimmer + ENDON
ON IrReceived#Data=0x21C744BB DO Dimmer - ENDON
ON IrReceived#Data=0x21C7E41B DO Color - ENDON
ON IrReceived#Data=0x21C714EB DO Color + ENDON
ON IrReceived#Data=0x21C7827D DO Scheme 0 ENDON
ON IrReceived#Data=0x21C7C43B DO Backlog Color 1; Scheme 4 ENDON
Backlog Rule1 1, Rule2 1, Rule3 0, Fade on, WakeupDuration 60
Modify WakeupDuration to how many seconds you would like the wakeup sequence to last. Fade is for smoothness of transition (adjust the fading speed with Speed +
or Speed -
)