Fork version of official Tuya Homebridge plugin. Brings a bunch of bug fix and new device support.
- Optimized code, improved code readability and maintainability.
- Improved stability.
- Less duplicate code.
- Less API errors.
- Less development costs for new accessory categroies.
- Tuya Scene supported (Tap-to-Run).
- Device overriding config supported. "non-standard" devices have possibility to be supported now.
- More than 40+ device categories supported, including most of the lights, switches, sensors ...
See CHANGELOG.md
Before use, please uninstall homebridge-tuya-platform
first. They can't run together. (But the config is compatible, no need to delete.)
Go to plugin page, search @0x5e/homebridge-tuya-platform
and install.
npm install @0x5e/homebridge-tuya-platform
There's two type of project: Custom
and Smart Home
.
The differenct between them is:
Custom
Project pull devices from project's asset.Smart Home
Project pull devices from Tuya App user's home.
If you are personal user and don't know which to choose, please use Smart Home
.
Before configuration, please goto Tuya IoT Platform
- Create a cloud develop project, select the data center where your app account located. See Mappings Between OEM App Accounts and Data Centers (If you don't know where it is, just select all.)
- Go to
Project Page
>Devices Panel
>Link Tuya App Account
, link your app account. - Go to
Project Page
>Service API
>Go to Authorize
, subscribe the following APIs (it's free for trial):- Authorization Token Management
- Device Status Notification
- IoT Core
- Industry Project Client Service (for "Custom" project)
⚠️ Extend the API trial period every 6 months here (first-time subscription only give 1 month): Tuya IoT Platform > Cloud > Cloud Services > IoT Core
platform
- required : Must be 'TuyaPlatform'options.projectType
- required : Must be '1'options.endpoint
- required : Endpoint URL from API Reference > Endpoints table.options.accessId
- required : Access ID from Tuya IoT Platform > Cloud Developoptions.accessKey
- required : Access Secret from Tuya IoT Platform > Cloud Develop
platform
- required : Must be 'TuyaPlatform'options.projectType
- required : Must be '2'options.accessId
- required : Access ID from Tuya IoT Platform > Cloud Developoptions.accessKey
- required : Access Secret from Tuya IoT Platform > Cloud Developoptions.countryCode
- required : Country Codeoptions.username
- required : Usernameoptions.password
- required : Passwordoptions.appSchema
- required : App schema. 'tuyaSmart' for Tuya Smart App, 'smartlife' for Smart Life App.options.homeWhitelist
- optional: An array of integer home ID values to whitelist. If present, only includes devices matching this Home ID value. Home ID can be found in the homebridge log.
⚠️ Don't forget to extend the API trial period every 6 months. Maybe you can set up a reminder in calendar.- The app account can't be used in multiple Homebridge/HomeAssistant instance at the same time! Please consider using different app accounts instead.
- The plugin requires the internet access to Tuya Cloud, and the lan protocol is not supported. See #90
If your device is working properly, you don't need to know this.
"Standard DP" means the device's DP Code is matching the code in documentation at: Tuya IoT Development Platform Documentation > Cloud Development > Standard Instruction Set.
For example, a Lightbulb must have switch_led
for power on/off, and optional code
bright_value
/bright_value_v2
for brightness, temp_value
/temp_value_v2
for color temperature, work_mode
for change working mode. These code can be found from above documentation.
If your Lightbulb can adjust brightness in Tuya App, but can't do with the plugin, then mostly it has an "Non-standard DP".
Yes. The device should be in the support list, then you need do these steps before it's working.
- Change device's control mode on Tuya Platform.
- Go to "Tuya Platform Cloud Development > Your Project > Devices > All Devices > View Devices by Product".
- Find your device-related product, click the "pencil" icon (Change Control Instruction Mode).
- The "Table of Instructions" shows the cloud mapping, you can know which DP Codes of your device is missing, you need to manually map them later.
- Select "DP Instruction" and save.
- Override device schema, see ADVANCED_OPTIONS.md.
See #90.
Although the plugin didn't implemented tuya local protocol now, it still remains possibility in the future.
If your device is not supported, please complete the following steps to collecting the data.
After successful launching Homebridge, the device info list will be saved inside Homebridge's persist path. You can get the file path from homebridge log:
[2022/11/3 18:37:43] [TuyaPlatform] Device list saved at /path/to/TuyaDeviceList.{uid}.json
ip
, lon
, lat
, local_key
, uid
before submit the file.
For Homebridge Web UI users:
- Go to the
Homebridge Setting
page - Turn on the
Homebridge Debug Mode -D
switch - Restart Homebridge.
For Homebridge Command Line Users:
- Start Homebridge with
-D
flag:homebridge -D
With debug mode on, you can now receive mqtt logs. Operate your device physically, or via Tuya App, then you will get mqtt logs like this:
[2022/12/8 12:51:59] [TuyaPlatform] [TuyaOpenMQ] onMessage:
topic = cloud/token/in/xxx
protocol = 4
message = {
"dataId": "xxx",
"devId": "xxx",
"productKey": "xxx",
"status": [
{
"1": "double_click",
"code": "switch1_value",
"t": "1670475119766",
"value": "double_click"
}
]
}
If you can't get any mqtt logs when controlling the device, mostly means that your device is a "non-standard device".
With the device info json and mqtt logs, please submit the issue to help us supporting new device category.
Please see https://github.com/homebridge/homebridge-plugin-template for setup development environment.
PRs and issues are welcome.
Thank you for spend time using the project. If it helps you, don't hesitate to give it a star 🌟:-)