tom-23 / homebridge-magichome-led

The magichome plugin for home bridge fixed.
Apache License 2.0
6 stars 0 forks source link

A better homebridge plugin for the MagicHome LED Controller

cus, why not?

The aims of this project:

Installation

npm install -g homebridge-magichome-led

And add this to your config.json:

"platforms": [
    {
      "platform" : "MagicHomeLED"
    }
  ]

Devices should autodetect and appear in the home app with their mac address and model number. You can rename thease using the home app.

Manual Config

Sometimes, there can be an issue with detecting devices. You can define devices too in the config.json file:

"platforms": [
    {
      "platform" : "MagicHomeLED",
      "discover": false,
      "devices": [
        {
          "address" : "192.168.X.XXX",
          "id": "MAC_ADDRESS",
          "model": "XXXXXXXX"
        }
      ]
    }
  ]

Todo