From 8a026bf2146e7196bd26db03736fd22ffc387c26 Mon Sep 17 00:00:00 2001 From: CV Date: Wed, 27 Feb 2019 23:09:49 +0100 Subject: [PATCH] HomeMatic: Add error-attribute (#21009) Error attribute has different meanings depending on device --- homeassistant/components/homematic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/homematic/__init__.py b/homeassistant/components/homematic/__init__.py index 4a27d918d95..dba4add216d 100644 --- a/homeassistant/components/homematic/__init__.py +++ b/homeassistant/components/homematic/__init__.py @@ -104,7 +104,7 @@ HM_IGNORE_DISCOVERY_NODE_EXCEPTIONS = { HM_ATTRIBUTE_SUPPORT = { 'LOWBAT': ['battery', {0: 'High', 1: 'Low'}], 'LOW_BAT': ['battery', {0: 'High', 1: 'Low'}], - 'ERROR': ['sabotage', {0: 'No', 1: 'Yes'}], + 'ERROR': ['error', {0: 'No'}], 'ERROR_SABOTAGE': ['sabotage', {0: 'No', 1: 'Yes'}], 'SABOTAGE': ['sabotage', {0: 'No', 1: 'Yes'}], 'RSSI_PEER': ['rssi_peer', {}],