3.1.0 • Published 2 years ago

homebridge-plugin-edin v3.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

Homebridge Plugin Edin+

This is a template Homebridge platform plugin and can be used as a base to help you get started developing your own plugin.

This template should be used in conjunction with the developer documentation. A full list of all supported service types, and their characteristics is available on this site.

Watch For Changes your config.json

If you want to have your code compile automatically as you make changes, and restart Homebridge automatically between changes, you first need to add your plugin as a platform in ~/.homebridge/config.json:

{
...
    "platforms": [
        {
            "name": "Config",
            "port": 8581,
            "platform": "config"
        },
        {
            "name": "<PLUGIN_NAME>",
            //... any other options, as listed in config.schema.json ...
            "platform": "<PLATFORM_NAME>"
        }
    ]
}