homebridge-daylight icon indicating copy to clipboard operation
homebridge-daylight copied to clipboard

Doesn't Work, Missing Platform Name

Open dakotahp opened this issue 4 years ago • 1 comments

I believe this plugin is deprecated due to not implementing the newest API for Homebridge. There is no platform name implemented and specifying it in the config doesn't do any good since the code doesn't use any such value.

dakotahp avatar Feb 16 '20 22:02 dakotahp

The plugin works for me with the latest versions of Homebridge and Node.js

Maybe you tried to add the config inside platforms instead of accessories?

{
    "bridge": {
        "name": "Homebridge XXXX",
        "username": "XXX",
        "port": 30000,
        "pin": "XXX-XX-XXX"
    },
    "accessories": [
        homebridge-daylight config should come here
    ],
    "platforms": [
        {
            "name": "Config",
            "port": 8581,
            "platform": "config"
        }
    ]
}

nicolasherrbach avatar Apr 25 '20 19:04 nicolasherrbach