The Elro Connects integration will allow users to integrate their Elro Connects fire, heat, CO, water, or smoke alarms as a siren entity into Home Assistant. The alarms can be tested (and silenced) through the siren turn on (and turn off) services. The integration discovers entities (automatically) through an Elro Connects K1 connector plug. The entity names assigned in the Elro Connects app will be synced with Home Assistant.
There is also a K2 connector available, but this K2 connector will not work with this software.
The integration only supports the Elro Connects K1 connector (SF40GA) mainly sold in Germany, the Netherlands, Belgium and France. The manufactor of this connector is Siterwell, and its products are also sold under the name FamilyWell Smart Security EcoSystem (gateway product GS188A). This integration support the legacy gateway, not the new generation that is working via Tuya using a zigbee gateway. The integration is not tested with the Siterwell branded devices, but some user reports indicate this is working too.
This component will set up the following platforms.
Platform | Description |
---|---|
sensor |
Adds a device state sensor, a battery level sensor and a signal sensor (disabled by default) for each device. |
siren |
Represents Elro Connects alarms as a siren. Turn the siren ON to test it. Turn it OFF to silence the (test) alarm. |
The device_state
sensor can have of the following states:
fault
silence
test_alarm
fire_alarm
alarm
normal
unknown
offline
Note that the sensors are polled about every 15 seconds. So it might take some time before an alarm state will be propagated. If an unknown state is found that is not supported yet, the hexadecimal code will be assigned as state. Please open an issue here if a new state needs to be supported.
If the name of the device is changed in HA, it is also updated in the Elro Connects app. Note the name has a 15 character length limit.
The siren
platform (for enabling a test alarm) was tested and is supported for Fire, Heat, CO and Water alarms.
integration
as category and click +
to add an integration.Configuration
-> Integrations
click +
and search for Elro Connects
configuration.yaml
).custom_components
directory (folder) there, you need to create it.custom_components
directory (folder) create a new folder called elro_connects
.custom_components/elro_connects/
directory (folder) in this repository.Configuration
-> Integrations
click +
and search for Elro Connects
Using your HA configuration directory (folder) as a starting point you should now also have something like this:
username
and password
) to setup the integration. This will get the connector_id
and api_key
for local access of your connector. After the setup has finished setup, the cloud credentials will not be used during operation.connector_id
, leave username
and password
fields open. which can be obtained from the Elro Connects app. Go to the home
tab and click on the settings wheel. Select current connector
. A list will be shown with your connectors. The ID starts with ST_xxx...
.custom_components/elro_connects/translations/en.json
custom_components/elro_connects/translations/nl.json
custom_components/elro_connects/__init__.py
custom_components/elro_connects/api.py
custom_components/elro_connects/sensor.py
custom_components/elro_connects/siren.py
custom_components/elro_connects/config_flow.py
custom_components/elro_connects/const.py
custom_components/elro_connects/manifest.json
...