clach04
clach04
@jepsonrob thanks for the length info, that's it for sure. I added support for this in https://github.com/clach04/python-tuya/commit/fc4612f168b5a1f0f6ca2396dbdea7e2cc10fe7b - I'm not sure if its a single byte for length or not...
@jepsonrob that script worked fine. My script also worked fine this morning (not sure why, maybe too tired last night). Interesting notes: * I'm testing on Windows at the moment...
@jepsonrob for decrypting packets, try this (needs my Python module, https://github.com/clach04/python-tuya): import base64 import time import pytuya key = 'YOUR_KEY_HERE' packet = 'Python raw bytes' PREFIX_LEN = 16 SUFFIX_LEN =...
@Marcus-L keep us posted. I'm going to be a bit of a nay-sayer and say that I suspect we do not need API access to the cloud to register the...
Forgot to add there is a chance the key is usable client side to interact with devices? I've not tried to decompile it (and probably won't have time), is that...
@nijave I'm not sure where you read `GET`. I can definitely confirm you are looking for `POST` (I'd recommend looking at the response to a `POST`). See https://github.com/codetheweb/tuyapi/blob/master/docs/SETUP.md - someone...
https://docs.tuya.com/en/mcu/mcu-protocol.html - looks like its for serial access (I don't read Chinese, I'm relying on google translate). The pictures and screen shots on the "MCU Debug" pages https://docs.tuya.com/en/mcu/FAQ/log.html and https://docs.tuya.com/en/mcu/debug_assistant.html...
Schemas - I've not had chance to try the schema code out in this project but I have taken a look at the schema information that gets stored on the...
One of the items in the readme has a note that users are in control of filenames and that files are never auto named. Is this a set-in-stone feature? If...
If search through encrypted notes (see issue #99) supported is wanted, internal find implemented in Python would be needed.