Open L1ght94 opened 9 months ago
Hello , I'm facing same issue now. p100.getDeviceInfo() is OK. When I execute p100.turnOn() , I got "Error: {'error_code': -1012}". My device is , 'fw_ver': '1.4.1 Build 20231103 Rel. 36519', 'hw_ver': '1.0.0', 'type': 'SMART.TAPOPLUG', 'model': 'P105', .
I hope it will be work fine.
I found a workaround for this problem and created the PR (#29).
P105 requires terminalUUID
in payload
set to the mac address of the device.
You can temporary resolve the problem by changing code like following until the PR merged.
after:
payload = {"method": method, "terminalUUID": "AB-CD-EF-01-23-45"}
You can get the device mac address in Tapo App or p100.getDeviceInfo()
.
I have a Tapo P105 with following information: Hardware Version: 1.0.0 Firmware Version: 1.4.1
I can execute .getDeviceInfo() and .get_status(), but if I try to execute .turnOn(), I get Exception: Error Code: -1012
How do I solve this?