uzlonewolf
uzlonewolf
> ```python > payload = d.updatedps(['19','20'], nowait=True) > d.send(payload) > ``` `updatedps()` calls `send()` internally (hence the `nowait` arg), and when given `nowait=True` it is going to return `None`. This...
Yeah, my experience with v3.4 devices has been they're pretty random. It'll be fine for a month and then stop talking 3 times in one day. Unfortunately you're probably going...
No worries, I do the same a lot. The v3.x refers to the LAN Protocol Version - the TCP packet format, when/how keys are negotiated, when/what encryption algorithm is used,...
The comment binary is wrong, the constant is 0xB2. Should be: `1011 0010 - (0xB2) is a constant` Also, the "strange Midea AirCon values" is just a Gray code (reflected...
I picked up a few TH02 modules in #589, and they're also v2.1.8 with the same behavior. The only difference seems to be the DPs used: TH01 uses 1/2/3 while...
I traced most of the other pins out: | CBU Pin | BK7231N | Function | Pad | | ------------- | ------------- | ------------- | ------------- | |1|P14 (SPI_SCK)|SH4 CLK|SCK...
> Also iot.tuya.com, not all DP's are visible, for some reason lots of DP's are just hidden... Actually you can tell it to give you all DPs by changing the...
> but that's not working for all device types What device types does it not work for? It's worked for every device I've tried, though it usually takes 12-24 hours...
To add to the keys.json collection: For the Ledvance app: ``` { "key": "fx3fvkvusmw45d7jn8xh", "secret": "cgqx3ku34mh5qdesd7fcaru3gx7tyurr", "secret2": "armptsqyfpxa4ftvtc739ardncett3uy", "certSign": "A" } ``` For the Sylvania Smart WiFi app: ``` {...
Not easily. You basically have to pre-open persistent connections to every device in the group and then send the commands as needed. If no data is received in ~29 seconds...