homebridge-tuya-plus 3.2.0 → 3.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/new-device.md +4 -1
- package/Readme.MD +7 -11
- package/config.schema.json +509 -535
- package/lib/SimpleFanAccessory.js +88 -38
- package/lib/SimpleFanLightAccessory.js +185 -70
- package/package.json +1 -1
- package/wiki/Supported-Device-Types.md +7 -10
|
@@ -15,7 +15,10 @@ Example: Generic Brand Lightbulb with Hex Color support, and 255 brightness.
|
|
|
15
15
|
Does this device work in any fashion in the plugin?
|
|
16
16
|
|
|
17
17
|
**Device Schema**
|
|
18
|
-
Please print your devices schema below:
|
|
18
|
+
Please print your devices schema below. Ideally, you should sign up for the Tuya Developer Platform and share the following from the Tuya API Explorer:
|
|
19
|
+
* The **`category`** from **Smart Home Basic Service** > **Get Device List**.
|
|
20
|
+
* The **`model`** from **IoT Core** > **Device Control** > **Query Things Data Model**.
|
|
21
|
+
|
|
19
22
|
|
|
20
23
|
|
|
21
24
|
**Additional context**
|
package/Readme.MD
CHANGED
|
@@ -74,16 +74,10 @@ sudo npm install -g homebridge-tuya-plus
|
|
|
74
74
|
1. Edit the config.json file to add your device types, and parameters.
|
|
75
75
|
2. Restart Homebridge
|
|
76
76
|
|
|
77
|
-
|
|
78
77
|
## Known Issues
|
|
79
78
|
|
|
80
79
|
1. If your devices add, but you can't control them, make sure you entered the DataPoint "DP" values for your device.
|
|
81
80
|
|
|
82
|
-
## Troubleshooting
|
|
83
|
-
1. Make sure the plugin is up-to date
|
|
84
|
-
2. Check for existing issues
|
|
85
|
-
|
|
86
|
-
|
|
87
81
|
## Contributing
|
|
88
82
|
|
|
89
83
|
If you have new accessory logic for a new device, please add a function defined by manufacturer, and describe your changes in the readME file.
|
|
@@ -96,10 +90,12 @@ If you have new accessory logic for a new device, please add a function defined
|
|
|
96
90
|
* [CodeTheWeb](https://github.com/CodeTheWeb) - developer of [TuyaApi](https://github.com/codetheweb/tuyapi), who gratiously provided this repo's name.
|
|
97
91
|
* [Oznu](https://github.com/oznu) - developer of Homebridge, added ```config.schema.json``` , fixed dependencies, and helped inspire this readME off his [gsh](https://github.com/oznu/homebridge-gsh) plugin.
|
|
98
92
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
93
|
+
#
|
|
102
94
|
|
|
103
|
-
|
|
95
|
+
Go check out my other Homebridge plugins:
|
|
104
96
|
|
|
105
|
-
|
|
97
|
+
* [homebridge-futurehome](https://github.com/adrianjagielak/homebridge-futurehome) ([npm](https://npmjs.com/package/homebridge-futurehome))
|
|
98
|
+
* [homebridge-tuya-plus](https://github.com/adrianjagielak/homebridge-tuya-plus) ([npm](https://npmjs.com/package/homebridge-tuya-plus))
|
|
99
|
+
* [homebridge-eqiva-swift-bridge](https://github.com/adrianjagielak/eqiva-smart-lock-bridge) ([npm](https://npmjs.com/package/homebridge-eqiva-swift-bridge))
|
|
100
|
+
* [homebridge-intex-plus](https://github.com/adrianjagielak/homebridge-intex-plus) ([npm](https://npmjs.com/package/homebridge-intex-plus))
|
|
101
|
+
* [homebridge-simple-router-status](https://github.com/adrianjagielak/homebridge-simple-router-status) ([npm](https://npmjs.com/package/homebridge-simple-router-status))
|