uzlonewolf

Results 284 comments of uzlonewolf

It sounds like @fu-raz is making a signalrgb plug-in, no idea if they're also adding it to TinyTuya or not. I can add it to TinyTuya if they don't. Unfortunately...

Well, my light bar finally came in, but I'm super busy and it's going to be a while before I can get to it. Are you planning on adding support...

Are you opening a persistent connection to catch asynchronous updates? Some DPs are only broadcasted when the device feels like it, you cannot query them directly. > it came back...

If it only updates asynchronously then sending UPDATEDPS will not do anything, you can only wait for the device to broadcast it. I have never seen a device which uploaded...

As for MITM-ing the cloud, it's not for the faint of heart. Tuya uses SSL/TLS in PSK mode and you need to get a full-chip firmware dump of your device...

Hmm, looking at the bit list I wonder if setting bit 11 (turning 2228796 into 2230844) would cause it to start sending updates. `d.set_value("110", 2230844)` As for dumping the firmware,...

https://github.com/jasonacox/tinytuya/blob/master/examples/Contrib/IRRemoteControlDevice-example.py

Hi @rluvaton, were you able to get it working with the example?

Hmm, it does appear to be kinda buried at the bottom in favor of parsing it into its head+key components. A more succinct example would be: ```python ir = Contrib.IRRemoteControlDevice(...

Hi @rluvaton, did the above example help any?