diff --git a/.homeychangelog.json b/.homeychangelog.json index 98f756b8..dcdf203b 100644 --- a/.homeychangelog.json +++ b/.homeychangelog.json @@ -70,5 +70,8 @@ }, "0.3.1": { "en": "Maintenance release (dependencies)" + }, + "0.3.2": { + "en": "Added DALI support" } } diff --git a/README.md b/README.md index 12f467bf..51e3b0ca 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ If devices are not discovered, no traffic is published on the bus for that devic ## Supported equipment - Relays -- Dimmers +- Dimmers (this also includes DMX and DALI) - Multisensors (x-in-1 etc.) - Temperature sensors diff --git a/app.json b/app.json index a2e5ac40..9256bb44 100644 --- a/app.json +++ b/app.json @@ -1,6 +1,6 @@ { "id": "com.github.alydersen.hdl-smartbus-homey", - "version": "0.3.1", + "version": "0.3.2", "compatibility": ">=3.1.0", "sdk": 2, "name": { @@ -194,4 +194,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/hdl/hdl_dimmers.js b/hdl/hdl_dimmers.js index a90682d3..1d363499 100644 --- a/hdl/hdl_dimmers.js +++ b/hdl/hdl_dimmers.js @@ -49,7 +49,14 @@ class HdlDimmers { "854": { channels: 48 }, "16": { channels: 48 }, "18": { channels: 48 }, - "32": { channels: 48 } + "32": { channels: 48 }, + "40": { channels: 48 }, + "41": { channels: 48 }, + "42": { channels: 64 }, + "43": { channels: 64 }, + "4300": { channels: 64 }, + "4301": { channels: 64 }, + "4302": { channels: 64 } }; } }