HomeMatic central based on OCCU.
This add-on allows you to control your HomeMatic devices so they can be integrated into Home Assistant. It is based on the HomeMatic Open Central Control Unit (OCCU) SDK.
Note: Requires a HM-MOD-RPI-PCB or HmIP-RFUSB to interface with your devices.
- Your Raspberry Pi is your HomeMatic control center!
- WebUI (experimental)
- Firmware updates
The installation of this add-on is straightforward and easy to do.
- Navigate in your Home Assistant frontend to Hass.io -> Add-on Store.
- Find the "HomeMatic CCU" add-on and click it.
- Click on the "INSTALL" button.
- Properly configure the add-on config (see below).
- Start the add-on.
- Check the add-on log output to see if it started successfully.
- Add homematic to your Home Assistant configuration (also see below).
- Restart Home Assistant.
Add-on configuration:
{
"rf_enable": true,
"rf": [
{
"type": "CCU2",
"device": "/dev/ttyAMA0"
}
],
"wired_enable": false,
"wired": [
{
"serial": "xy",
"key": "abc",
"ip": "192.168.0.0"
}
],
"hmip_enable": false,
"hmip": [
{
"type": "HMIP_CCU2",
"device": "/dev/ttyUSB0"
}
]
}
Enable or disable BidCoS-RF.
List of RF devices.
Device type for RFD service. Check your device manual.
Device on the host.
Enable or disable BidCoS-Wired.
List of wired devices.
Serial number of the device.
Encryption key for the device.
IP address of LAN gateway.
Enable or disable hmip.
List of HMIP devices.
Device type for HMIP service. Check your device manual.
Device on the host.
Add the following to your Home Assistant configuration to enable the integration:
homematic:
interfaces:
rf:
host: core-homematic
port: 2001
wired:
host: core-homematic
port: 2000
hmip:
host: core-homematic
port: 2010
If you use the HM-MOD-RPI-PCB on a Raspberry Pi 3, you need to add
the following to the config.txt
file on the boot partition:
dtoverlay=pi3-miniuart-bt
HassOS versions 1.11 and later support the HmIP-RFUSB by default and don't need any configuration. If you installed Hassio on another distribution of Linux, you need to follow the installation guide for the UART USB to setup the UART USB interface on your computer.
Got questions?
You have several options to get them answered:
- The Home Assistant Discord Chat Server.
- The Home Assistant Community Forum.
- Join the Reddit subreddit in /r/homeassistant
In case you've found a bug, please open an issue on our GitHub.