Skip to content

Releases: jasonacox/tuyapower

v0.2.0 - New Tuya Device Support

08 Apr 15:38
Compare
Choose a tag to compare
  • PyPI 0.2.0
  • Add support for Tuya protocols 3.2, 3.4 and 3.5 devices

Full Changelog: v0.1.0...v0.2.0

v0.1.0

19 Jan 03:43
3a713d6
Compare
Choose a tag to compare

v0.1.0

  • PyPI v0.1.0
  • Added support for multi-switch devices
  • Update to use tinytuya in Docker by @stevoh6 in #16
  • Added err variable to output by @gamuama in #23

Full Changelog: v0.0.25...v0.1.0

v0.0.25

09 Oct 04:31
Compare
Choose a tag to compare
  • Bug fix in deviceRaw() not honoring timeout settings
  • Set sw response variable to False as default

v0.0.24

06 Sep 04:47
Compare
Choose a tag to compare

Release Updates:

  • deviceInfo() - Added better error handling for devices without expect outlet/power data in their dps response.
  • deviceRaw() - Added new function to return raw device data response.
  • test.py & plugpower.py - Updated to add device raw data to output.

v0.0.23

05 Sep 00:20
Compare
Choose a tag to compare

Added support to use tinytuya, replacing pytuya:

  • Adds support for Device IDs that are 22 characters long (pytuya only supports 20)
  • Removed misleading productKey (product SKU identity, not local Key) from scan() output
  • Attempts to import tinytuya but falls back to pytuya if unavailable

Scan Max Retry Option

02 Aug 22:22
Compare
Choose a tag to compare
  • Added option to allow users to specify maximum retries for scan functions:
# specify 50 retries via command line
python3 -m tuyapower 50
# invoke verbose interactive scan
tuyapower.scan(50)

# return payload of devices
devices = tuyapower.deviceScan(false, 50)