A Homebridge plugin providing support for the Connexoon (Somfy), TaHoma (Somfy) and Cozytouch (Atlantic, Thermor, Sauter) platforms and accessories working over the RTS protocol.
This plugin's implementation is inspired by and initially based on Romain Duboc's homebridge-tahoma plugin.
This plugin does not support Somfy IO devices, only RTS devices. Use the homebridge-tahoma plugin if you have IO devices in your installation.
node --version
).npm install -g homebridge
npm install -g homebridge-connexoon
Important: If the plugin fails with login errors, make sure to set the
service
configuration to one that works for your geographical region, as your Somfy account will be linked to only one of the services (servers). See the settings section below.
Note: it is also possible to install this plugin in a local
npm
package instead using the homebridge option--plugin-path
.
To configure homebridge-connexoon, add the Connexoon
platform to the platforms
section of your homebridge's config.js
file:
{
"bridge": { "...": "..." },
"description": "...",
"platforms": [
{
"platform": "Connexoon",
"name": "My Connexoon Hub",
"username": "<Somfy account username>",
"password": "<Somfy account password>",
"service": "Connexoon"
}
]
}
The platform can be configured with the following parameters:
Parameter | Type | Default | Note |
---|---|---|---|
username |
String | null |
Your Somfy / TaHoma / Cozytouch account username. |
password |
String | null |
Your Somfy / TaHoma / Cozytouch account password. |
service |
String | ConnexoonRTS |
The name of the service used by your hub. Can be: Cozytouch , TaHoma , Connexoon or ConnexoonRTS . |
Parameter | Type | Default | Note |
---|---|---|---|
devices |
Object | null |
A JSON object that allows to configure specific devices, using their name as key and configuration Object as value. Accepted configurations differ from device to device. See sections below. |
pollingInterval |
Number (minutes) | 10 |
The polling interval for refreshing the platform's accessories state for automations, in minutes. By detault set to 10 minutes, it can be set to 0 to disable polling. Note that the information is refreshed on demand when using the Home app, this configuration is designed to let Homekit automations react to state updates in the background. |
useListedDevicesOnly |
Boolean | false |
If set to true , only the devices listed in the devices setting will be included in the platform. Other devices will be filtered out. To include a device with no additional configuration, use an empty object as value: "Bedroom Blind": {} . |
Each device can receive additional configurations according to its device type registered in the Connexoon app (or equivalent).
Screens (such as window blinds) and Roller Shutters accept the commands
configuration:
{
"platforms": [
{
"platform": "Connexoon",
"...": "...",
"devices": {
"Bedroom Blind": {
"commands": ["close", "my", "open"]
}
}
}
]
}
Note that the above configuration is the default for a Screen, and thus does not need to declared in the homebridge configuration file to use the default.
commands
- Array - OptionalAn Array of Strings mapping RTS commands (one of open
, my
, close
) to homekit window covering positions.
The default value is:
["close", "my", "open"]
The above configuration means that the shade will have three 'steps' in the Home app, with the bottom one sending the close
command, the middle one sending the my
command and the top one sending the open
command.
If your shades have been installed in the opposite direction, simply reverse the commands array to:
["open", "my", "close"]
It is also possible to override the configuration to have only two 'steps' for the shade's closure, and for instance, use the 'my' preferred position as the open state, with:
["close", "my"]
This platform has been designed to support RTS devices only. As of now, the following device types are supported:
Support for more types may be added as needed.
Since the RTS protocol is one-way, actual closure state is unknown and must be inferred from the last command that was submitted to the device.
Please feel free to contribute to this plugin by adding support for new device types, implementing new features or fixing bugs. Pull requests are welcome.
Homebridge 是一个轻量级 NodeJS 服务器,它模拟 iOS HomeKit API,提供从 HomeKit 到“智能家居”设备制造商提供的各种第三方 API 的基本桥接。通过 Homebridge 的桥接,可以让 Siri 控制完全不支持 HomeKit 的设备。 此外 Homebridge 支持插件。
homebridge-vsx homebridge-vsx is a plugin made for homebridge,which allows switching on and off your Pioneer AV receiver. All AV receivers (VSX and SC),which work with the iControl AV5 App are support
homebridge-sesame Control and monitor your Sesame smart lock with HomeKit integration. Prerequisites Installation of Homebridge iOS 11 or later Sesame lock with enabled cloud integration Sesame Wifi A
homebridge-panasonictv A homebridge plugin for turning on and off your Panasonic Viera TV. The plugin also has experimental support for changing the volume and channel. These characteristics are not r
Quick Start | Contribute A Wake on Lan plugin for Homebridge Turn your PCs, laptops, servers and more on and off through Siri Quick Start To install the plugin, head over to the machine with Homebridg
Docker Homebridge This Alpine/Ubuntu Linux based Docker image allows you to run Nfarina's Homebridge on your home network which emulates the iOS HomeKit API. This is a multi-arch image and will also r