Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mathieu2301/tuya-cloud-api

API For Tuya Cloud
https://github.com/mathieu2301/tuya-cloud-api

tuya tuya-api tuya-cloud

Last synced: 2 months ago
JSON representation

API For Tuya Cloud

Awesome Lists containing this project

README

        

# Tuya Cloud API
API for Tuya Cloud

No dependencies 💪

___
## Installation

```
npm i tuya-cloud
```

## Example (test.js)

```javascript
const tuyaCloud = require('tuya-cloud');

tuyaCloud.connect({
region: 'eu', // eu (Default) / us / cn / in
clientID: 'xxxxxxxxxxxxxxxxxxxx',
secret: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
}).then(async (tuya) => {
console.log('Logged !')

const tempSensor = tuya.device('xxxxxxxxxxxxxxxxxxxxxx');

setInterval(async () => {
console.log(await tempSensor.getInfos());
console.log(await tempSensor.getStatus());
}, 10000);

const light = tuya.device('xxxxxxxxxxxxxxxxxxxxxx');

console.log(await light.getFunctions());
console.log(await light.getStatus());

light.sendCommands([
{
code: 'colour_data',
value: {
h: 120, // Green
s: 1000,
v: 1000,
},
},
]);

}).catch((error) => {
console.error(error.message);
});

```

___
## Problems

If you have errors in console or unwanted behavior, just reload the page.
If the problem persists, please create an issue [here](https://github.com/Mathieu2301/Tuya-Cloud-API/issues).