homebridge-tuya-without-developer-account 1.0.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/CHANGELOG.md +10 -0
- package/LICENSE +20 -0
- package/PUBLISHING.md +80 -0
- package/README.md +233 -0
- package/SUPPORTED_DEVICES.md +206 -0
- package/config.schema.json +131 -0
- package/dist/cloud/api/TuyaHACloudAPI.js +286 -0
- package/dist/cloud/api/TuyaHASharingMQ.js +114 -0
- package/dist/cloud/device/TuyaDevice.js +50 -0
- package/dist/cloud/device/TuyaHADeviceManager.js +355 -0
- package/dist/index.js +7 -0
- package/dist/platform.js +397 -0
- package/dist/settings.js +18 -0
- package/dist/shared/AccessoryFactory.js +276 -0
- package/dist/shared/accessories/AccessoryFactory.js +305 -0
- package/dist/shared/accessories/AirConditionerAccessory.js +307 -0
- package/dist/shared/accessories/AirPurifierAccessory.js +90 -0
- package/dist/shared/accessories/AirQualitySensorAccessory.js +30 -0
- package/dist/shared/accessories/BaseAccessory.js +406 -0
- package/dist/shared/accessories/BlindsAccessory.js +199 -0
- package/dist/shared/accessories/CameraAccessory.js +121 -0
- package/dist/shared/accessories/CarbonDioxideSensorAccessory.js +52 -0
- package/dist/shared/accessories/CarbonMonoxideSensorAccessory.js +52 -0
- package/dist/shared/accessories/ContactSensorAccessory.js +30 -0
- package/dist/shared/accessories/DehumidifierAccessory.js +68 -0
- package/dist/shared/accessories/DiffuserAccessory.js +55 -0
- package/dist/shared/accessories/DimmerAccessory.js +94 -0
- package/dist/shared/accessories/DoorbellAccessory.js +91 -0
- package/dist/shared/accessories/ExtractionHoodAccessory.js +120 -0
- package/dist/shared/accessories/FanAccessory.js +129 -0
- package/dist/shared/accessories/GarageDoorAccessory.js +69 -0
- package/dist/shared/accessories/HeaterAccessory.js +102 -0
- package/dist/shared/accessories/HeaterAccessory_old.js +96 -0
- package/dist/shared/accessories/HumanPresenceSensorAccessory.js +20 -0
- package/dist/shared/accessories/HumidifierAccessory.js +137 -0
- package/dist/shared/accessories/IRAirConditionerAccessory.js +278 -0
- package/dist/shared/accessories/IRControlHubAccessory.js +49 -0
- package/dist/shared/accessories/IRControlHubSubAccessory.js +52 -0
- package/dist/shared/accessories/IRGenericAccessory.js +49 -0
- package/dist/shared/accessories/LeakSensorAccessory.js +36 -0
- package/dist/shared/accessories/LightAccessory.js +36 -0
- package/dist/shared/accessories/LightSensorAccessory.js +32 -0
- package/dist/shared/accessories/LocationWeatherAccessory.js +72 -0
- package/dist/shared/accessories/LockAccessory.js +56 -0
- package/dist/shared/accessories/MotionSensorAccessory.js +20 -0
- package/dist/shared/accessories/OutletAccessory.js +23 -0
- package/dist/shared/accessories/PetFeederAccessory.js +139 -0
- package/dist/shared/accessories/SceneAccessory.js +32 -0
- package/dist/shared/accessories/SceneSwitchAccessory.js +44 -0
- package/dist/shared/accessories/SecuritySystemAccessory.js +30 -0
- package/dist/shared/accessories/SmokeSensorAccessory.js +35 -0
- package/dist/shared/accessories/SwitchAccessory.js +148 -0
- package/dist/shared/accessories/TemperatureHumiditySensorAccessory.js +24 -0
- package/dist/shared/accessories/ThermostatAccessory.js +192 -0
- package/dist/shared/accessories/TowerRackAccessory.js +157 -0
- package/dist/shared/accessories/ValveAccessory.js +45 -0
- package/dist/shared/accessories/VibrationSensorAccessory.js +46 -0
- package/dist/shared/accessories/WeatherStationAccessory.js +58 -0
- package/dist/shared/accessories/WetBulbGlobeTemperatureAccessory.js +23 -0
- package/dist/shared/accessories/WhiteNoiseLightAccessory.js +59 -0
- package/dist/shared/accessories/WindowAccessory.js +14 -0
- package/dist/shared/accessories/WindowCoveringAccessory.js +156 -0
- package/dist/shared/accessories/WirelessSwitchAccessory.js +42 -0
- package/dist/shared/accessories/characteristic/Active.js +22 -0
- package/dist/shared/accessories/characteristic/AirQuality.js +74 -0
- package/dist/shared/accessories/characteristic/CurrentRelativeHumidity.js +23 -0
- package/dist/shared/accessories/characteristic/CurrentTemperature.js +23 -0
- package/dist/shared/accessories/characteristic/CurrentWeather.js +49 -0
- package/dist/shared/accessories/characteristic/CurrentWeatherByOpenMeteo.js +49 -0
- package/dist/shared/accessories/characteristic/CurrentWetBulbGlobeTemperature.js +48 -0
- package/dist/shared/accessories/characteristic/EnergyUsage.js +98 -0
- package/dist/shared/accessories/characteristic/Light.js +268 -0
- package/dist/shared/accessories/characteristic/LightSensor.js +23 -0
- package/dist/shared/accessories/characteristic/LockPhysicalControls.js +21 -0
- package/dist/shared/accessories/characteristic/MotionDetected.js +22 -0
- package/dist/shared/accessories/characteristic/Name.js +15 -0
- package/dist/shared/accessories/characteristic/OccupancyDetected.js +19 -0
- package/dist/shared/accessories/characteristic/On.js +25 -0
- package/dist/shared/accessories/characteristic/OutletInUse.js +14 -0
- package/dist/shared/accessories/characteristic/ProgrammableSwitchEvent.js +89 -0
- package/dist/shared/accessories/characteristic/RelativeHumidityDehumidifierThreshold.js +28 -0
- package/dist/shared/accessories/characteristic/RotationSpeed.js +78 -0
- package/dist/shared/accessories/characteristic/SecuritySystemState.js +74 -0
- package/dist/shared/accessories/characteristic/SwingMode.js +21 -0
- package/dist/shared/accessories/characteristic/TargetTemperature.js +29 -0
- package/dist/shared/accessories/characteristic/TemperatureDisplayUnits.js +25 -0
- package/dist/shared/util/ConfigHash.js +79 -0
- package/dist/shared/util/FfmpegStreamingProcess.js +126 -0
- package/dist/shared/util/InfraredTool.js +392 -0
- package/dist/shared/util/Logger.js +42 -0
- package/dist/shared/util/TuyaRecordingDelegate.js +22 -0
- package/dist/shared/util/TuyaStreamDelegate.js +329 -0
- package/dist/shared/util/color.js +23 -0
- package/dist/shared/util/util.js +135 -0
- package/homebridge-ui/public/index.html +329 -0
- package/homebridge-ui/server.js +224 -0
- package/package.json +61 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
- Renamed plugin to **Tuya without developer account for Homebridge**.
|
|
6
|
+
- Added Homebridge custom UI for QR Cloud Authentication before save.
|
|
7
|
+
- Removed user-facing legacy Tuya IoT Developer Platform setup.
|
|
8
|
+
- Removed Access ID, Access Secret, username/password, country code, local-key, local LAN, and hybrid setup paths from configuration.
|
|
9
|
+
- Made QR Cloud Authentication the only supported connection mode.
|
|
10
|
+
- Added publish-ready npm package metadata.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-2021 Tuya Inc.
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
6
|
+
in the Software without restriction, including without limitation the rights
|
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
9
|
+
furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
|
12
|
+
all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
17
|
+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
19
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
20
|
+
DEALINGS IN THE SOFTWARE.
|
package/PUBLISHING.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Publishing guide
|
|
2
|
+
|
|
3
|
+
This package is intended to be published to npm so it can be installed from the Homebridge UI.
|
|
4
|
+
|
|
5
|
+
## Package identity
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
npm package: homebridge-tuya-without-developer-account
|
|
9
|
+
Homebridge platform alias: TuyaNoDeveloperAccount
|
|
10
|
+
Display name: Tuya without developer account for Homebridge
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Before publishing
|
|
14
|
+
|
|
15
|
+
1. Create a GitHub repository:
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
https://github.com/kosztyk/homebridge-tuya-without-developer-account
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
2. Push this source tree to GitHub.
|
|
22
|
+
3. Confirm the package name is available on npm:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm view homebridge-tuya-without-developer-account name
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
If npm returns `404 Not Found`, the package name is available.
|
|
29
|
+
|
|
30
|
+
4. Run a package dry run:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm pack --dry-run
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
5. Create the package locally:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm pack
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
6. Test install the generated `.tgz` in a clean Homebridge instance:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm install --prefix /var/lib/homebridge ./homebridge-tuya-without-developer-account-1.0.0.tgz
|
|
46
|
+
hb-service restart
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Publish manually
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npm login
|
|
53
|
+
npm publish --access public
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
For an unscoped public package, `--access public` is harmless. For scoped packages it is required.
|
|
57
|
+
|
|
58
|
+
## Publish through GitHub Actions
|
|
59
|
+
|
|
60
|
+
This repository includes `.github/workflows/npm-publish.yml`.
|
|
61
|
+
|
|
62
|
+
Add this GitHub repository secret:
|
|
63
|
+
|
|
64
|
+
```text
|
|
65
|
+
NPM_TOKEN
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Then create a release or run the workflow manually.
|
|
69
|
+
|
|
70
|
+
## Homebridge UI installation
|
|
71
|
+
|
|
72
|
+
After npm publication and indexing, users can install from the Homebridge UI:
|
|
73
|
+
|
|
74
|
+
```text
|
|
75
|
+
Plugins → Search → homebridge-tuya-without-developer-account → Install
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Verification note
|
|
79
|
+
|
|
80
|
+
Publishing to npm makes the plugin installable from the Homebridge UI. Homebridge verification is a separate review process and is not automatic.
|
package/README.md
ADDED
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
# Tuya without developer account for Homebridge
|
|
2
|
+
|
|
3
|
+
A Homebridge platform plugin for Tuya and Smart Life devices that uses **Home Assistant-style Tuya QR Cloud Authentication**.
|
|
4
|
+
|
|
5
|
+
This plugin is designed for users who want to add Tuya / Smart Life devices to HomeKit through Homebridge **without creating a Tuya IoT Developer Platform account** and without entering Tuya cloud project credentials.
|
|
6
|
+
|
|
7
|
+
## What this plugin does
|
|
8
|
+
|
|
9
|
+
- Adds Tuya / Smart Life devices to Homebridge / HomeKit.
|
|
10
|
+
- Uses QR Cloud Authentication modeled after the official Tuya Home Assistant authorization flow.
|
|
11
|
+
- Shows the QR code directly inside the Homebridge plugin settings UI.
|
|
12
|
+
- Saves the Tuya QR token locally inside the Homebridge storage folder.
|
|
13
|
+
- Fetches Tuya homes, devices, scenes, device specifications, and device status through the Tuya mobile cloud API used by the QR flow.
|
|
14
|
+
- Starts an MQTT-style status listener for live status updates where supported.
|
|
15
|
+
|
|
16
|
+
## What this plugin does not require
|
|
17
|
+
|
|
18
|
+
This plugin does **not** ask for:
|
|
19
|
+
|
|
20
|
+
- Tuya IoT Developer Platform account
|
|
21
|
+
- Tuya cloud project
|
|
22
|
+
- Access ID
|
|
23
|
+
- Access Secret
|
|
24
|
+
- Tuya app username
|
|
25
|
+
- Tuya app password
|
|
26
|
+
- Country code / data center selection
|
|
27
|
+
- Local device keys
|
|
28
|
+
|
|
29
|
+
## Supported authentication method
|
|
30
|
+
|
|
31
|
+
Only one connection method is supported:
|
|
32
|
+
|
|
33
|
+
```text
|
|
34
|
+
Tuya QR Cloud Authentication
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Legacy connection methods were intentionally removed from this fork:
|
|
38
|
+
|
|
39
|
+
```text
|
|
40
|
+
Tuya IoT OpenAPI project credentials: removed
|
|
41
|
+
Smart Home username/password cloud login: removed
|
|
42
|
+
Local LAN / local-key mode: removed
|
|
43
|
+
Hybrid cloud + local mode: removed
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Installation from Homebridge UI
|
|
47
|
+
|
|
48
|
+
After the package is published to npm, users can install it from the Homebridge UI:
|
|
49
|
+
|
|
50
|
+
1. Open Homebridge UI.
|
|
51
|
+
2. Go to **Plugins**.
|
|
52
|
+
3. Search for:
|
|
53
|
+
|
|
54
|
+
```text
|
|
55
|
+
homebridge-tuya-without-developer-account
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
4. Click **Install**.
|
|
59
|
+
5. Open the plugin **Settings**.
|
|
60
|
+
6. Enter your Tuya User Code.
|
|
61
|
+
7. Click **Generate QR Code**.
|
|
62
|
+
8. Scan the QR code with the Tuya Smart or Smart Life mobile app.
|
|
63
|
+
9. Wait for the approval message.
|
|
64
|
+
10. Click **Save Configuration**.
|
|
65
|
+
11. Restart Homebridge.
|
|
66
|
+
|
|
67
|
+
## Manual installation
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
npm install -g homebridge-tuya-without-developer-account
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
For the official Homebridge Linux service layout:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
export PATH=/opt/homebridge/bin:$PATH
|
|
77
|
+
npm install --prefix /var/lib/homebridge homebridge-tuya-without-developer-account
|
|
78
|
+
hb-service restart
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## Configuration
|
|
82
|
+
|
|
83
|
+
The preferred configuration path is the Homebridge plugin GUI because the QR code is generated before saving.
|
|
84
|
+
|
|
85
|
+
The saved config block looks like this:
|
|
86
|
+
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"platform": "TuyaNoDeveloperAccount",
|
|
90
|
+
"name": "Tuya without developer account",
|
|
91
|
+
"mode": "cloud",
|
|
92
|
+
"options": {
|
|
93
|
+
"projectType": "3",
|
|
94
|
+
"userCode": "YOUR_TUYA_USER_CODE"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
The plugin keeps `mode: "cloud"` and `projectType: "3"` internally only for compatibility with the original code structure. No other connection modes are supported.
|
|
100
|
+
|
|
101
|
+
## Where to find the Tuya User Code
|
|
102
|
+
|
|
103
|
+
In the Tuya Smart or Smart Life mobile app, find the **User Code** from the account/security area used by Tuya's Home Assistant QR authorization flow.
|
|
104
|
+
|
|
105
|
+
Typical path:
|
|
106
|
+
|
|
107
|
+
```text
|
|
108
|
+
Tuya Smart / Smart Life app
|
|
109
|
+
→ Me
|
|
110
|
+
→ Settings
|
|
111
|
+
→ Account and Security
|
|
112
|
+
→ User Code
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Tuya app layouts can change, so the exact path may vary by app version and region.
|
|
116
|
+
|
|
117
|
+
## Token storage
|
|
118
|
+
|
|
119
|
+
After QR approval, the plugin saves the token in the Homebridge storage folder:
|
|
120
|
+
|
|
121
|
+
```text
|
|
122
|
+
tuya-ha-qr-auth.<USER_CODE>.json
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
For official Linux Homebridge installs this is usually:
|
|
126
|
+
|
|
127
|
+
```text
|
|
128
|
+
/var/lib/homebridge/tuya-ha-qr-auth.<USER_CODE>.json
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
The file contains Tuya QR authentication tokens. Keep it private.
|
|
132
|
+
|
|
133
|
+
## Re-authentication
|
|
134
|
+
|
|
135
|
+
From the plugin settings UI:
|
|
136
|
+
|
|
137
|
+
1. Enter the same User Code.
|
|
138
|
+
2. Click **Clear Saved Auth**.
|
|
139
|
+
3. Click **Generate QR Code**.
|
|
140
|
+
4. Scan the new QR code.
|
|
141
|
+
5. Save and restart Homebridge.
|
|
142
|
+
|
|
143
|
+
Manual reset:
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
rm -f /var/lib/homebridge/tuya-ha-qr-auth.*.json
|
|
147
|
+
hb-service restart
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
Then open the plugin settings and generate a new QR code.
|
|
151
|
+
|
|
152
|
+
## Advanced options
|
|
153
|
+
|
|
154
|
+
### Home whitelist
|
|
155
|
+
|
|
156
|
+
Optional. Limit device discovery to specific Tuya home IDs.
|
|
157
|
+
|
|
158
|
+
```json
|
|
159
|
+
{
|
|
160
|
+
"options": {
|
|
161
|
+
"userCode": "YOUR_TUYA_USER_CODE",
|
|
162
|
+
"homeWhitelist": ["123456789"]
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Device overrides
|
|
168
|
+
|
|
169
|
+
Optional. Use only when a device is discovered with the wrong category or requires schema overrides.
|
|
170
|
+
|
|
171
|
+
```json
|
|
172
|
+
{
|
|
173
|
+
"options": {
|
|
174
|
+
"userCode": "YOUR_TUYA_USER_CODE",
|
|
175
|
+
"deviceOverrides": [
|
|
176
|
+
{
|
|
177
|
+
"id": "DEVICE_ID_OR_GLOBAL",
|
|
178
|
+
"category": "kg",
|
|
179
|
+
"unbridged": false
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
Use `
|
|
187
|
+
`global` as the override ID to apply an override globally.
|
|
188
|
+
|
|
189
|
+
## Troubleshooting
|
|
190
|
+
|
|
191
|
+
### The QR code does not appear
|
|
192
|
+
|
|
193
|
+
Make sure you opened the settings for this plugin, not another Tuya plugin. The plugin name should be:
|
|
194
|
+
|
|
195
|
+
```text
|
|
196
|
+
Tuya without developer account for Homebridge
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Also make sure the package version is `1.0.0` or newer.
|
|
200
|
+
|
|
201
|
+
### Homebridge starts but no devices are added
|
|
202
|
+
|
|
203
|
+
Check the Homebridge logs. If you see:
|
|
204
|
+
|
|
205
|
+
```text
|
|
206
|
+
No saved QR authentication found
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
then the configuration was saved before the QR scan was approved. Open the plugin settings again, generate the QR code, scan it, wait for approval, save, and restart Homebridge.
|
|
210
|
+
|
|
211
|
+
### Authentication expired or invalid
|
|
212
|
+
|
|
213
|
+
Clear the saved auth from the plugin settings, generate a new QR code, scan it, save, and restart Homebridge.
|
|
214
|
+
|
|
215
|
+
### Duplicate accessories
|
|
216
|
+
|
|
217
|
+
Do not run this plugin and another Tuya Homebridge plugin against the same devices at the same time. Disable or remove the other Tuya platform block before using this plugin.
|
|
218
|
+
|
|
219
|
+
## Package identity
|
|
220
|
+
|
|
221
|
+
```text
|
|
222
|
+
npm package: homebridge-tuya-without-developer-account
|
|
223
|
+
Homebridge platform: TuyaNoDeveloperAccount
|
|
224
|
+
Display name: Tuya without developer account for Homebridge
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
## Credits
|
|
228
|
+
|
|
229
|
+
This project is based on the Homebridge Tuya plugin codebase and adapts the Tuya Home Assistant QR authorization model for Homebridge.
|
|
230
|
+
|
|
231
|
+
## License
|
|
232
|
+
|
|
233
|
+
MIT
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
# Supported Tuya Devices
|
|
2
|
+
|
|
3
|
+
First-class category name, sedond-class category name, category code can be found here:
|
|
4
|
+
https://developer.tuya.com/docs/iot/standarddescription?id=K9i5ql6waswzq
|
|
5
|
+
|
|
6
|
+
Most category code is pinyin abbreviation of Chinese name.
|
|
7
|
+
|
|
8
|
+
## Lighting
|
|
9
|
+
|
|
10
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
11
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
12
|
+
| Light | 光源 | dj<br> dsd | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorydj?id=Kaiuyzy3eheyy) |
|
|
13
|
+
| Ceiling Light | 吸顶灯 | xdd | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/ceiling-light?id=Kaiuz03xxfc4r) |
|
|
14
|
+
| Ambiance Light | 氛围灯 | fwd | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/ambient-light?id=Kaiuz06amhe6g) |
|
|
15
|
+
| String Lights | 灯串 | dc | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/dc?id=Kaof7taxmvadu) |
|
|
16
|
+
| Strip Lights | 灯带 | dd | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/dd?id=Kaof804aibg2l) |
|
|
17
|
+
| Motion Sensor Light | 感应灯 | gyd | Lightbulb<br> MotionSensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/gyd?id=Kaof8a8hycfmy) |
|
|
18
|
+
| Ceiling Fan Light | 风扇灯 | fsd | Lightbulb<br> Fanv2 | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/fsd?id=Kaof8eiei4c2v) |
|
|
19
|
+
| Solar Light | 太阳能灯 | tyndj | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/tynd?id=Kaof8j02e1t98) |
|
|
20
|
+
| Dimmer | 调光器 | tgq | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/tgq?id=Kaof8ke9il4k4) |
|
|
21
|
+
| Remote Control | 遥控器 | ykq | | | [Documentation](https://developer.tuya.com/en/docs/iot/ykq?id=Kaof8ljn81aov) |
|
|
22
|
+
| Spotlight | 射灯 | sxd | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/sxd?id=Kb7jayalltstu) |
|
|
23
|
+
| White Noise Light | 白噪音灯 | bzyd | Lightbulb<br> Switch | ✅ | Documentation |
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Electrical Products
|
|
27
|
+
|
|
28
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
29
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
30
|
+
| Switch | 开关 | kg<br> tdq | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorykgczpc?id=Kaiuz08zj1l4y) |
|
|
31
|
+
| Socket | 插座 | cz | Outlet | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorykgczpc?id=Kaiuz08zj1l4y) |
|
|
32
|
+
| Power Strip | 排插 | pc | Outlet | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorykgczpc?id=Kaiuz08zj1l4y) |
|
|
33
|
+
| Scene Switch | 场景开关 | cjkg | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorycjkg?id=Kaiuz0bcukqc5) |
|
|
34
|
+
| Card Switch | 插卡取电开关 | ckqdkg | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryckqdkg?id=Kaiuz0e3wjryy) |
|
|
35
|
+
| Curtain Switch | 窗帘开关 | clkg | Window Covering | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/category-clkg?id=Kaiuz0gitil39) |
|
|
36
|
+
| Garage Door Opener | 车库门控制器 | ckmkzq | Garage Door Opener | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryckmkzq?id=Kaiuz0ipcboee) |
|
|
37
|
+
| Dimmer Switch | 调光开关 | tgkg | Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorytgkg?id=Kaiuz0ktx7m0o) |
|
|
38
|
+
| Fan Switch | 风扇开关 | fskg | Fanv2 | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryfskg?id=Kbcs129cl1gr9) |
|
|
39
|
+
| Wireless Switch | 无线开关 | wxkg | Stateless Programmable Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/wxkg?id=Kbeo9t3ryuqm5) |
|
|
40
|
+
| Scene Light Socket | 情景灯插座 | qjdcz | Switch | ✅ | Documentation |
|
|
41
|
+
| Temperature Control Socket | 温控插座 | wkcz | Switch<br> Temperature Sensor<br> Humidity Sensor | ✅ | Documentation |
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## Large Home Appliances
|
|
45
|
+
|
|
46
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
47
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
48
|
+
| Heater | 热水器 | rs | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryrs?id=Kaiuz0nfferyx) |
|
|
49
|
+
| Ventilation System | 新风机 | xfj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryxfj?id=Kaiuz0pphkowg) |
|
|
50
|
+
| Refrigerator | 冰箱 | bx | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorybx?id=Kaiuz0s58ia6h) |
|
|
51
|
+
| Bathtub | 浴缸 | yg | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryyg?id=Kaiuz0uoisp47) |
|
|
52
|
+
| Washing Machine | 洗衣机 | xy | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryxy?id=Kaiuz0wxh08jf) |
|
|
53
|
+
| Air Conditioner | 空调 | kt | Heater Cooler<br> Humidifier Dehumidifier<br> Fanv2<br> Temperature Sensor<br> Humidity Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorykt?id=Kaiuz0z71ov2n) |
|
|
54
|
+
| Air Conditioner Controller | 空调控制器 | ktkzq | Heater Cooler<br> Humidifier Dehumidifier<br> Fanv2<br> Temperature Sensor<br> Humidity Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryktkzq?id=Kaiuz11eqy892) |
|
|
55
|
+
| Boiler | 壁挂炉 | bgl | | | [Documentation](https://developer.tuya.com/en/docs/iot/boilerbgl?id=Kaiuz13shgrhp) |
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
## Small Home Appliances
|
|
59
|
+
|
|
60
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
61
|
+
|----------------------------| ---- |---------------| ---- | ---- |------------------------------------------------------------------------------------------|
|
|
62
|
+
| Robot Vacuum | 扫地机 | sd | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorysd?id=Kaiuz16b2s6yd) |
|
|
63
|
+
| Heater | 取暖器 | qn<br>qn_old | Heater Cooler | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryqn?id=Kaiuz18kih0sm) |
|
|
64
|
+
| Air Purifier | 空气净化器 | kj | Air Purifier | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorykj?id=Kaiuz1atqo5l7) |
|
|
65
|
+
| Drying Rack | 晾衣架 | lyj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorylyj?id=Kaiuz1cy926vh) |
|
|
66
|
+
| Diffuser | 香薰机 | xxj | Air Purifier<br> Lightbulb | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryxxj?id=Kaiuz1f9mo6bl) |
|
|
67
|
+
| Extraction hood | 香薰机 | yyj | Air Purifier<br> Lightbulb | ✅ | Documentation |
|
|
68
|
+
| Curtain | 窗帘 | cl | Window Covering | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorycl?id=Kaiuz1hnpo7df) |
|
|
69
|
+
| Door and Window Controller | 门窗控制器 | mc | Window | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorymc?id=Kaiuz1jyoassg) |
|
|
70
|
+
| Thermostat | 温控器 | wk | Thermostat | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorywk?id=Kaiuz1m1xqnt6) |
|
|
71
|
+
| Thermostat Valve | 温控阀 | wkf | Thermostat | ✅ | Documentation |
|
|
72
|
+
| Bathroom Heater | 浴霸 | yb | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryyb?id=Kaiuz1oajgpib) |
|
|
73
|
+
| Irrigator | 灌溉器 | ggq<br> sfkzq | Valve | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryggq?id=Kaiuz1qib7z0k) |
|
|
74
|
+
| Humidifier | 加湿器 | jsq | Humidifier Dehumidifier | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryjsq?id=Kaiuz1smr440b) |
|
|
75
|
+
| Dehumidifier | 除湿机 | cs | Humidifier Dehumidifier | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorycs?id=Kaiuz1vcz4dha) |
|
|
76
|
+
| Fan | 风扇 | fs | Fanv2 | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryfs?id=Kaiuz1xweel1c) |
|
|
77
|
+
| Water Purifier | 净水器 | js | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryjs?id=Kaiuz204l58n9) |
|
|
78
|
+
| Electric Blanket | 电热毯 | dr | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorydr?id=Kaiuz22dyc66p) |
|
|
79
|
+
| Pet Treat Feeder | 宠物弹射喂食器 | cwtswsq | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorycwtswsq?id=Kaiuz24lq3fq5) |
|
|
80
|
+
| Pet Ball Thrower | 宠物网球发射器 | cwwqfsq | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorycwwqfsq?id=Kaiuz26r7g1up) |
|
|
81
|
+
| HVAC | 暖通器 | ntq | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryntq?id=Kaiuz292sjqcz) |
|
|
82
|
+
| Pet Feeder | 宠物喂食器 | cwwsq | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorycwwsq?id=Kaiuz2b6vydld) |
|
|
83
|
+
| Pet Fountain | 宠物饮水机 | cwysj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorycwysj?id=Kaiuz2dfro0nd) |
|
|
84
|
+
| Sofa | 沙发 | sf | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorysf?id=Kaiuz2fp9uqtt) |
|
|
85
|
+
| Electric Fireplace | 电壁炉 | dbl | | | [Documentation](https://developer.tuya.com/en/docs/iot/electric-fireplace?id=Kaiuz2hz4iyp6) |
|
|
86
|
+
| Smart Milk Kettle | 智能调奶器 | tnq | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorytnq?id=Kakf01agbfkfa) |
|
|
87
|
+
| Cat Toilet | 猫砂盆 | msp | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorymsp?id=Kakg2t7714ky7) |
|
|
88
|
+
| Towel Rack | 毛巾架 | mjj | Thermostat | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorymjj?id=Kakkmlm9k4cir) |
|
|
89
|
+
| Smart Indoor Garden | 植物生长机 | sz | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorysz?id=Kaiuz4e6h7up0) |
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
## Kitchen Appliances
|
|
93
|
+
|
|
94
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
95
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
96
|
+
| Smart Kettle | 电茶壶 | bh | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorybh?id=Kaiuz2kly679h) |
|
|
97
|
+
| Bread Maker | 面包机 | mb | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorymb?id=Kaiuz2mrs0b2m) |
|
|
98
|
+
| Coffee Maker | 咖啡机 | kfj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorykfj?id=Kaiuz2p12pc7f) |
|
|
99
|
+
| Bottle Warmer | 暖奶器 | nnq | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorynnq?id=Kaiuz2riz1s8d) |
|
|
100
|
+
| Milk Dispenser | 冲奶机 | cn | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorycn?id=Kaiuz2tosvw2a) |
|
|
101
|
+
| Sous Vide Cooker | 慢煮机 | mzj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorymzj?id=Kaiuz2vy130ux) |
|
|
102
|
+
| Rice Cabinet | 米柜 | mg | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorymg?id=Kaiuz2yb04ocu) |
|
|
103
|
+
| Induction Cooker | 电磁炉 | dcl | | | [Documentation](https://developer.tuya.com/en/docs/iot/induction-cooker?id=Kaiuz30l7adxo) |
|
|
104
|
+
| Air Fryer | 空气炸锅 | kqzg | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorykqzg?id=Kakda4kug3k1j) |
|
|
105
|
+
| Bento Box | 智能饭盒 | znfh | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryznfh?id=Kako8jffneds3) |
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
## Security & Video Surveillance
|
|
109
|
+
|
|
110
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
111
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
112
|
+
| Alarm Host | 报警主机 | mal | Security System | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorymal?id=Kaiuz33clqxaf) |
|
|
113
|
+
| Smart Camera | 智能摄像机 | sp | Motion Sensor<br> Doorbell | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorysp?id=Kaiuz35leyo12) |
|
|
114
|
+
| Wireless Doorbell | 无线门铃 | wxml | StatelessProgrammableSwitch | ✅ | Documentation |
|
|
115
|
+
| Siren Alarm | 声光报警传感器 | sgbj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorysgbj?id=Kaiuz37tlpbnu) |
|
|
116
|
+
| Gas Alarm | 燃气报警传感器 | rqbj | Leak Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryrqbj?id=Kaiuz3d162ubw) |
|
|
117
|
+
| Smoke Alarm | 烟雾报警传感器 | ywbj | Smoke Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryywbj?id=Kaiuz3f6sf952) |
|
|
118
|
+
| Temperature and Humidity Sensor | 温湿度传感器 | wsdcg | Temperature Sensor<br> Humidity Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorywsdcg?id=Kaiuz3hinij34) |
|
|
119
|
+
| Contact Sensor | 门磁传感器 | mcs | Contact Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorymcs?id=Kaiuz3bnflmh2) |
|
|
120
|
+
| Vibration Sensor | 震动传感器 | zd | Motion Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryzd?id=Kaiuz3a5vrzno) |
|
|
121
|
+
| Water Detector | 水浸传感器 | sj | Leak Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorysj?id=Kaiuz3iub2sli) |
|
|
122
|
+
| Luminance Sensor | 亮度传感器 | ldcg | Light Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryldcg?id=Kaiuz3n7u69l8) |
|
|
123
|
+
| Pressure Sensor | 压力传感器 | ylcg<br> ylcgq | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryylcg?id=Kaiuz3kc2e4gm) |
|
|
124
|
+
| Emergency Button | 紧急按钮 | sos | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorysos?id=Kaiuz3oi6agjy) |
|
|
125
|
+
| PM2.5 Detector | PM2.5传感器 | pm25<br> pm2.5<br> pm25cgq | Air Quality Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorypm25?id=Kaiuz3qof3yfu) |
|
|
126
|
+
| CO Detector | CO报警传感器 | cobj<br> cocgq | Carbon Monoxide Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorycobj?id=Kaiuz3u1j6q1v) |
|
|
127
|
+
| CO2 Detector | CO2报警传感器 | co2bj<br> co2cgq | Carbon Dioxide Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryco2bj?id=Kaiuz3wes7yuy) |
|
|
128
|
+
| Multi-functional Sensor | 多功能传感器 | dgnbj | | | [Documentation](https://developer.tuya.com/en/docs/iot/categorydgnbj?id=Kaiuz3yorvzg3) |
|
|
129
|
+
| Methane Detector | 甲烷报警传感器 | jwbj | Leak Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryjwbj?id=Kaiuz40u98lkm) |
|
|
130
|
+
| Human Motion Sensor | 人体运动传感器 | pir | Motion Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categorypir?id=Kaiuz3ss11b80) |
|
|
131
|
+
| Human Presence Sensor | 人体存在传感器 | hps | Occupancy Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/categoryhps?id=Kaiuz42yhn1hs) |
|
|
132
|
+
| Smart Lock | 智能门锁 | ms<br> jtmspro | LockMechanism | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/ms?id=Kb0o2s20fn9sy) |
|
|
133
|
+
| Environmental Detector | 环境检测仪 | hjjcy | Air Quality Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/hjjcy?id=Kbeoad8y1nnlv) |
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
## Exercise & Health
|
|
137
|
+
|
|
138
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
139
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
140
|
+
| Massage Chair | 按摩椅 | amy | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryamy?id=Kaiuz4bmwxufp) |
|
|
141
|
+
| Physiotherapy Products| 理疗产品 | liliao | | | [Documentation](https://developer.tuya.com/en/docs/iot/categoryliliao?id=Kakobe16fjw3l) |
|
|
142
|
+
| Smart Jump Rope | 跳绳 | ts | | | [Documentation](https://developer.tuya.com/en/docs/iot/ts?id=Kat27rqhu47br) |
|
|
143
|
+
| Body Fat Scale | 体脂秤 | tzc1 | | | [Documentation](https://developer.tuya.com/en/docs/iot/tzc1?id=Kat27zmbbs56t) |
|
|
144
|
+
| Smart Watch/Fitness Tracker | 手表/手环 | sb | | | [Documentation](https://developer.tuya.com/en/docs/iot/sb?id=Kat28k7efsbi9) |
|
|
145
|
+
| Smart Pill Box | 智能药盒 | znyh | | | [Documentation](https://developer.tuya.com/en/docs/iot/znyh?id=Kb2yxpjfcojdt) |
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
## Gateway Control
|
|
149
|
+
|
|
150
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
151
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
152
|
+
| Multifunctional Gateway | 多功能网关 | wg | | | [Documentation](https://developer.tuya.com/en/docs/iot/wg2?id=Kau22nplrptfe) |
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
## Energy
|
|
156
|
+
|
|
157
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
158
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
159
|
+
| Smart Electricity Meter | 智能电表 | zndb | | | [Documentation](https://developer.tuya.com/en/docs/iot/smart-meter?id=Kaiuz4gv6ack7) |
|
|
160
|
+
| Smart Water Meter | 智能水表 | znsb | | | [Documentation](https://developer.tuya.com/en/docs/iot/smart-water-meter?id=Kaiuz4jf0jy9f) |
|
|
161
|
+
| Circuit Breaker | 断路器 | dlq | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/iot/dlq?id=Kb0kidk9enyh8) |
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
## Digital Entertainment
|
|
165
|
+
|
|
166
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
167
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
168
|
+
| TV | 电视 | ds | | | [Documentation](https://developer.tuya.com/en/docs/iot/ds?id=Kat8px3b6tb9o) |
|
|
169
|
+
| Projector | 投影仪 | tyy | | | [Documentation](https://developer.tuya.com/en/docs/iot/tyy?id=Kat8qpj75z0vv) |
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
## Outdoor Travel
|
|
173
|
+
|
|
174
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
175
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
176
|
+
| Tracker | 定位器 | tracker | | | [Documentation](https://developer.tuya.com/en/docs/iot/tracker?id=Kajk21wwy2mhi) |
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
## IR Remote Control
|
|
180
|
+
|
|
181
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
182
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
183
|
+
| Universal Remote Control | 万能遥控器 | wnykq<br> hwktwkq<br> wsdykq | Temperature Sensor<br> Humidity Sensor | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/ir-control-hub-open-service?id=Kb3oe2mk8ya72) |
|
|
184
|
+
| TV | 电视 | infrared_tv | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
185
|
+
| STB | 机顶盒 | infrared_stb | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
186
|
+
| TV Box | 电视盒子 | infrared_box | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
187
|
+
| Air Conditioner | 空调 | infrared_ac | Heater Cooler<br> Humidifier Dehumidifier<br> Fanv2 | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-air-conditioner-apis?id=Kb3oe9ehg02fn) |
|
|
188
|
+
| Fan | 电风扇 | infrared_fan | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
189
|
+
| Light | 灯 | infrared_light | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
190
|
+
| Amplifier | 音响 | infrared_amplifier | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
191
|
+
| Projector | 投影仪 | infrared_projector | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
192
|
+
| DVD | DVD | qt | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
193
|
+
| Camera | 相机 | qt | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
194
|
+
| Water Heater | 热水器 | infrared_waterheater | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
195
|
+
| Air Purifier | 净化器 | infrared_airpurifier | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-common-apis?id=Kb3oe2o7z0so9) |
|
|
196
|
+
| DIY | - | qt | Switch | ✅ | [Documentation](https://developer.tuya.com/en/docs/cloud/infrared-learning-apis?id=Kb3oeap4nqqm3) |
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
## Others
|
|
200
|
+
|
|
201
|
+
| Name | Name (zh) | Code | Homebridge Service | Supported | Links |
|
|
202
|
+
| ---- | ---- | ---- | ---- | ---- | ---- |
|
|
203
|
+
| Fingerbot | 手指机器人 | szjqr | Switch | ✅ | Documentation |
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
For the undocumented product category, you can try override it to the most similar one. See [ADVANCED_OPTIONS.md](./ADVANCED_OPTIONS.md).
|