npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-tuya-colorlight

v1.0.10

Published

Tuya color LED light control for homebridge. Based on codetheweb's Tuya API and tuya outlet plugins.

Downloads

19

Readme

Tuya LED Color Light Support for Homebridge

Example config.json for LED Color Light Controllers that support RGB or RGBWW:

"accessories": [
	{
        "accessory": "TuyaColorLight",
        "name": "Fountain Color Light",
        "ip": "192.168.104.31",
        "devId": "XXXXXXXXXX",
        "localKey": "XXXXXXXXXXXXXX",
        "gwId":"XXXXXXXXXXXXXXXX",
        "productKey":"IXXXXXXXXXW",
        "apiMinTimeout" : 100,
        "apiMaxTimeout" : 1000,
        "apiRetries": 1,
        "apiDebug" : false,
        "refreshInterval" : 120,
        "debugPrefix" : "~~~!~~~ ",
        "debug" : false,
        "deviceEnabled" : true
    }
]

Example config.json for Tuya based multiple LED Color Lights:

"accessories": [
    {
        "accessory": "TuyaColorLight",
        "name": "Fountain Color Light",
        "ip": "192.168.104.31",
        "productId":"IXXXXXXXXXW",
        "devId": "XXXXXXXXXX",
        "localKey": "XXXXXXXXXXXXXX",
        "apiMinTimeout" : 100,
        "apiMaxTimeout" : 1000,
        "apiRetries": 1,
        "apiDebug" : false,
        "refreshInterval" : 120,
        "debugPrefix" : "~~~!~~~ ",
        "debug" : false,
        "deviceEnabled" : true
    },

    {
        "accessory": "TuyaColorLight",
        "name": "Tree Color Light",
        "ip": "192.168.104.32",
        "productId":"IXXXXXXXXXW",
        "devId": "XXXXXXXXXX",
        "localKey": "XXXXXXXXXXXXXX",
        "apiMinTimeout" : 100,
        "apiMaxTimeout" : 1000,
        "apiRetries": 1,
        "apiDebug" : false,
        "refreshInterval" : 120,
        "debugPrefix" : "~~~!~~~ ",
        "debug" : false,
        "deviceEnabled" : true
    }
]

This was originally derived from the homebridge-tuya-outlet plugin and modified to utilize the 'dps' in the Tuya api for managing multiple device function points.

Carefully read and review the procedures to obtain the Tuya api device ID (hint: it has the MAC address in it) and the localKey. It's quite a procedure, but it's easy once learned: Tuya API Sniffing Procedures

This plugin requires a modified version of the tuyapi that I extended found here: homebridge-tuyapi-extended

See tuyapi for original inspiration.

Tested on the following LED lights (Non affiliated links following:)

This plugin should work with any TUYA based LED Color light that can be added to the Tuya, or Smart Life apps. A popular brand I've found is LOHAS Lights or on Amazon: LOHAS Lights on Amazon

Helpful things to note:

  1. I found it is best to assign a static IP address through DHCP on my router to each device. Add that IP address to the config file in homebridge when setting up your devices. So each unique physical device should have it's own static ip. Even though this is not required in the original tuyapi and homebridge-tuya-outlet, I found that there is a potential hang in homebridge while waiting on the IP address to be obtained. By adding it static, it reduced the wait time and lag when accessing these devices.

  2. At this time, until the homebridge-tuyapi-extended is updated, if you add a device and it is in your config file, but unplugged, this may cause your homebridge to crash or hang. This is being worked out, and a reason for the fork of the original tuyapi.