Files
addons/homematic/config.json
Pascal Vizeli e0eb9dca9c Homematic v8.0 (#485)
* Update HomeMatic OCCU to version 3.41.11 (#482)

* Update HomeMatic OCCU to version 3.41.11

* Update CHANGELOG.md

* Update config.json

* Homematic OCCU: Fix write error when starting OCCU due to missing status directory. (#483)

HMIPServer writes a lock file to /var/status/HMServerStarted, so create directory /var/status to prevent an exception that may confuse users.

* Homematic OCCU: Supply custom log4j configuration for HMIPServer to log to console. (#484)

This allows reading the HMIPServer log via the docker log file.
The default configuration logs to file and syslog which is not accessible from outside the docker container.

* Update CHANGELOG.md

* Update CHANGELOG.md
2018-12-13 11:59:50 +01:00

70 lines
1.3 KiB
JSON

{
"name": "HomeMatic OCCU",
"version": "8.0",
"slug": "homematic",
"description": "HomeMatic central based on OCCU",
"url": "https://home-assistant.io/addons/homematic/",
"arch": ["armhf", "i386", "amd64"],
"map": ["share:rw"],
"startup": "system",
"boot": "auto",
"auto_uart": true,
"gpio": true,
"apparmor": false,
"ports": {
"2001/tcp": 2001,
"2000/tcp": 2000,
"2010/tcp": 2010
},
"options": {
"rf_enable": false,
"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"
}
]
},
"schema": {
"rf_enable": "bool",
"rf": [
{
"type": "match(CCU2)",
"device": "match(^/dev/.*$)",
"reset": "bool?"
}
],
"wired_enable": "bool",
"wired": [
{
"serial": "str",
"key": "str",
"ip": "str"
}
],
"hmip_enable": "bool",
"hmip": [
{
"type": "match(HMIP_CCU2)",
"device": "match(^/dev/.*$)"
}
]
},
"image": "homeassistant/{arch}-addon-homeassistant"
}