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 statesensor, abattery levelsensor and asignalsensor (disabled by default) for each device. | 
| siren | Represents Elro Connects alarms as a siren. Turn the siren ONto test it. Turn itOFFto silence the (test) alarm. | 
The device_state sensor can have of the following states:
- fault
- silence
- test_alarm
- fire_alarm
- alarm
- normal
- unknown
- offline
- open
- closed
- low_battery
- temperature_alarm
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.
- Install the Home Assistant Community Store (HACS).
- Select integrationas category and click+to add an integration.
- Find and install install Elro Connects via HACS.
- When the installation via HACS is done, restart Home Assistant.
- In the HA UI go to Configuration->Integrationsclick+and search forElro Connects
- Using the tool of choice open the directory (folder) for your HA configuration (where you find configuration.yaml).
- If you do not have a custom_componentsdirectory (folder) there, you need to create it.
- In the custom_componentsdirectory (folder) create a new folder calledelro_connects.
- Download all the files from the custom_components/elro_connects/directory (folder) in this repository.
- Place the files you downloaded in the new directory (folder) you created.
- Restart Home Assistant
- In the HA UI go to Configuration->Integrationsclick+and search forElro Connects
Using your HA configuration directory (folder) as a starting point you should now also have something like this:
- You need the IP-address and your Elro Connects cloud credentials (usernameandpassword) to setup the integration. This will get theconnector_idandapi_keyfor local access of your connector. After the setup has finished setup, the cloud credentials will not be used during operation.
- An alternative is a manual setup. For this you need to fill in the connector_id, leaveusernameandpasswordfields open. which can be obtained from the Elro Connects app. Go to thehometab and click on the settings wheel. Selectcurrent connector. A list will be shown with your connectors. The ID starts withST_xxx....
- The API key is probably not needed as long as it is provided by the connector locally. This behavior might change in the future.
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
...