A Homebridge platform plugin that creates virtual buttons that can be triggered using HTTP requests from real buttons like Flic or an Elgato Streamdeck.
npm install homebridge-button-platform
This Homebridge platform plugin creates virtual buttons that can be triggered
using HTTP requests. It was originally created to provide HomeKit support for
Flic smart buttons before the Flic Hub LR got native HomeKit
support but can be leveraged by anything that can send HTTP requests.
> Flic Hub LR now supports HomeKit: Flic released a firmware update for the
Flic Hub LR on 2 December 2020 which included native HomeKit support.
Visit
HomeKit access.
This plugin requires a working home hub.
Before you install, ensure you have setup a HomePod, HomePod mini, Apple TV or
iPad as a home hub for HomeKit. A
home hub is required to run automations triggered by the button events generated
by this plugin.
The simplest method to install and configure this plugin is viahomebridge-config-ui-x.
To install manually, run the following command in your Homebridge directory.
Depending on how you installed Homebridge, you may need to add the -g and/or
the --unsafe-perms parameters:
``shell`
npm install [-g|--unsafe-perms] homebridge-button-platform
The -g option will install the plugin globally and the --unsafe-perms option
is needed for some platforms to install successfully.
The plugin can be configured via the homebridge-config-ui-x
admin interface.
To configure the plugin manually, add the following configuration to the
platforms block of your Homebridge config.json file:
`json`
"platforms": [
{
"platform": "button-platform",
"port": 3001,
"buttons": [
"My Button",
"Your Button",
"Their Button"
]
}
]
You can add as many buttons to the array as you need. Each button will get its
own URI on which the server will listen for events. You can determine the URI
for each button by checking the Homebridge logs for
The Event URI for
> Note: renaming a button in config.json is the same as deleting the old
button and adding a new one, i.e. any configuration will be lost.
To trigger a button event, send an HTTP GET request with a specific queryPOST
string value or an HTTP request to your Homebridge hostname or IP address
and the port specified in the configuration of the platform, plus the URI for the
button.
The simplest method of triggering an event is to use a simple GET request withevent
the query string parameter of set to one of the valid event types:
* click or single-pressdouble-click
* or double-presshold
* or long-press
For example, to send a single click event to a button using curl:
`shell`
$ curl http://
Success
You could also use this URL with a normal web browser.
Here’s a screenshot of what an Internet Request action should look like in the
Flic app if your Homebridge server is homebridge.local and the plugin
was listening on port 3001:
The values are as follows:
| Field | Value |
|:------|:------|
| Hub Action | Internet Request |
| URL | http://homebridge.local:3001/button-name?event=click |
| Type | GET |
The plugin from v1.5 onwards automatically creates a
battery service when it detects it's being triggered by a Flic button and will
update the battery level with the current value from the Flic whenever the
button is pushed.
You can use the "Website" Stream Deck action to trigger an event. In the
Stream Deck configuration, drag the "Website" action to a key and configure
the URL to be http://homebridge.local:3001/button-name?event=click which uses theGET
same parameters as the request above:
> Top tip: If you enable the GET request in background option, a browser will
> not open when you hit the key.
requestIf you use an HTTP POST request you must set the Content-Type header to eitherapplication/json or application/x-www-form-urlencoded. The body of the requestevent
needs a field named with a value of one of the event types defined above.
For example, to send a double press event to a button using curl with a JSON
payload:
`shell`
$ curl -X POST \
-H 'Content-Type: application/json' \
-d '{"event": "double-click"}' \
http://
You can also POST with an application/x-www-form-urlencoded payload:
`shell``
$ curl -X POST \
-H 'Content-Type: application/x-www-form-urlencoded' \
-d 'event=double-click' \
http://
This is useful when used in with a larger form-based application.
Check the Homebridge logs for any warnings as the plugin will log any attempts
to trigger an invalid event or any invalid URIs.