TuyAPI 🌧 🔌
A library for communicating with devices that use the Tuya cloud network. These devices are branded under many different names, but if port 6668 is open on your device chances are this library will work with it.
Installation
npm install codetheweb/tuyapi
Basic Usage
const TuyaDevice = require('tuyapi');
let tuya = new TuyaDevice({
id: 'xxxxxxxxxxxxxxxxxxxx',
key: 'xxxxxxxxxxxxxxxx',
ip: 'xxx.xxx.xxx.xxx'});
tuya.get().then(status => {
console.log('Status:', status);
tuya.set({set: !status}).then(result => {
console.log('Result of setting status to ' + !status + ': ' + result);
tuya.get().then(status => {
console.log('New status:', status);
return;
});
});
});
This should report the current status, set the device to the opposite of what it currently is, then report the changed status.
See the setup instructions for how to find the needed parameters.
📝 Notes
- Only one TCP connection can be in use with a device at once. If using this, do not have the app on your phone open.
- Some devices ship with older firmware that may not work with
tuyapi
. If you're experiencing issues, please try updating the device's firmware in the offical app.
📓 Docs
See the docs.
TODO
- Document details of protocol
- Figure out correct CRC algorithm
- Keep connection open between requests
Contributors
Related
Ports
- python-tuya a Python port by clach04
- m4rcus.TuyaCore a .NET port by Marcus-L
Projects built with TuyAPI
- tuya-cli: a CLI interface for Tuya devices
- homebridge-tuya: a Homebridge plugin for Tuya devices
- tuyaweb: a web interface for controlling devices by bmachek
- homebridge-igenix-air-conditioner: a Homebridge plugin for the Igenix IG9901WIFI air conditioner
- magichome-led-controller: a node to use magichome led RGB controller in node-red
To add your projects to either of the above lists, please open a pull request.