-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
72 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# RELEASE NOTES | ||
|
||
## v0.2.0 - New Tuya Device Support | ||
|
||
* PyPI 0.2.0 | ||
* Add support for Tuya protocols 3.2, 3.4 and 3.5 devices | ||
|
||
## v0.1.0 | ||
|
||
* PyPI 0.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 | ||
|
||
## v0.0.25 | ||
|
||
* Bug fix in deviceRaw() not honoring timeout settings | ||
* Set sw response variable to False as default | ||
|
||
## v0.0.24 | ||
|
||
* 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 - TinyTuya | ||
|
||
* Added support to use tinytuya, replacing pytuya: | ||
* dds 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 | ||
|
||
## v0.0.22 - Scan Max Retry Option | ||
|
||
* Added option to allow users to specify maximum retries for scan functions: | ||
|
||
```bash | ||
# specify 50 retries via command line | ||
python3 -m tuyapower 50 | ||
``` | ||
|
||
```python | ||
# invoke verbose interactive scan | ||
tuyapower.scan(50) | ||
|
||
# return payload of devices | ||
devices = tuyapower.deviceScan(false, 50) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters