From 476f24e451ee1797f7c67aed080da5a8178eca97 Mon Sep 17 00:00:00 2001 From: SukramJ Date: Sun, 6 Oct 2019 11:54:26 +0200 Subject: [PATCH] Add basic test support to Homematic IP Cloud (#27228) * Add basic test support to Homematic IP Cloud * move test data address comments --- .../components/homematicip_cloud/sensor.py | 1 + .../components/homematicip_cloud/conftest.py | 75 + tests/components/homematicip_cloud/helper.py | 128 + .../homematicip_cloud/test_binary_sensors.py | 41 + .../homematicip_cloud/test_config_flow.py | 3 +- .../components/homematicip_cloud/test_hap.py | 10 +- .../components/homematicip_cloud/test_init.py | 6 +- .../homematicip_cloud/test_lights.py | 77 + tests/fixtures/homematicip_cloud.json | 5341 +++++++++++++++++ 9 files changed, 5672 insertions(+), 10 deletions(-) create mode 100644 tests/components/homematicip_cloud/conftest.py create mode 100644 tests/components/homematicip_cloud/helper.py create mode 100644 tests/components/homematicip_cloud/test_binary_sensors.py create mode 100644 tests/components/homematicip_cloud/test_lights.py create mode 100644 tests/fixtures/homematicip_cloud.json diff --git a/homeassistant/components/homematicip_cloud/sensor.py b/homeassistant/components/homematicip_cloud/sensor.py index 770921288b9..30e910cc33a 100644 --- a/homeassistant/components/homematicip_cloud/sensor.py +++ b/homeassistant/components/homematicip_cloud/sensor.py @@ -115,6 +115,7 @@ class HomematicipAccesspointStatus(HomematicipGenericDevice): def __init__(self, home: AsyncHome) -> None: """Initialize access point device.""" + home.modelType = "HmIP-HAP" super().__init__(home, home) @property diff --git a/tests/components/homematicip_cloud/conftest.py b/tests/components/homematicip_cloud/conftest.py new file mode 100644 index 00000000000..c301c73b4d0 --- /dev/null +++ b/tests/components/homematicip_cloud/conftest.py @@ -0,0 +1,75 @@ +"""Initializer helpers for HomematicIP fake server.""" +from unittest.mock import MagicMock, patch + +from homematicip.aio.connection import AsyncConnection +import pytest + +from homeassistant import config_entries +from homeassistant.components.homematicip_cloud import ( + DOMAIN as HMIPC_DOMAIN, + const as hmipc, + hap as hmip_hap, +) +from homeassistant.core import HomeAssistant + +from .helper import AUTH_TOKEN, HAPID, HomeTemplate + +from tests.common import MockConfigEntry, mock_coro + + +@pytest.fixture(name="mock_connection") +def mock_connection_fixture(): + """Return a mockked connection.""" + connection = MagicMock(spec=AsyncConnection) + + def _rest_call_side_effect(path, body=None): + return path, body + + connection._restCall.side_effect = _rest_call_side_effect # pylint: disable=W0212 + connection.api_call.return_value = mock_coro(True) + + return connection + + +@pytest.fixture(name="default_mock_home") +def default_mock_home_fixture(mock_connection): + """Create a fake homematic async home.""" + return HomeTemplate(connection=mock_connection).init_home().get_async_home_mock() + + +@pytest.fixture(name="hmip_config_entry") +def hmip_config_entry_fixture(): + """Create a fake config entriy for homematic ip cloud.""" + entry_data = { + hmipc.HMIPC_HAPID: HAPID, + hmipc.HMIPC_AUTHTOKEN: AUTH_TOKEN, + hmipc.HMIPC_NAME: "", + } + config_entry = MockConfigEntry( + version=1, + domain=HMIPC_DOMAIN, + title=HAPID, + data=entry_data, + source="import", + connection_class=config_entries.CONN_CLASS_CLOUD_PUSH, + system_options={"disable_new_entities": False}, + ) + + return config_entry + + +@pytest.fixture(name="default_mock_hap") +async def default_mock_hap_fixture( + hass: HomeAssistant, default_mock_home, hmip_config_entry +): + """Create a fake homematic access point.""" + hass.config.components.add(HMIPC_DOMAIN) + hap = hmip_hap.HomematicipHAP(hass, hmip_config_entry) + with patch.object(hap, "get_hap", return_value=mock_coro(default_mock_home)): + assert await hap.async_setup() is True + + hass.data[HMIPC_DOMAIN] = {HAPID: hap} + + await hass.async_block_till_done() + + return hap diff --git a/tests/components/homematicip_cloud/helper.py b/tests/components/homematicip_cloud/helper.py new file mode 100644 index 00000000000..79a5bc0b201 --- /dev/null +++ b/tests/components/homematicip_cloud/helper.py @@ -0,0 +1,128 @@ +"""Helper for HomematicIP Cloud Tests.""" +import json +from unittest.mock import Mock + +from homematicip.aio.class_maps import ( + TYPE_CLASS_MAP, + TYPE_GROUP_MAP, + TYPE_SECURITY_EVENT_MAP, +) +from homematicip.aio.home import AsyncHome +from homematicip.home import Home + +from tests.common import load_fixture + +HAPID = "Mock_HAP" +AUTH_TOKEN = "1234" +HOME_JSON = "homematicip_cloud.json" + + +def get_and_check_entity_basics( + hass, default_mock_hap, entity_id, entity_name, device_model +): + """Get and test basic device.""" + ha_entity = hass.states.get(entity_id) + assert ha_entity is not None + assert ha_entity.attributes["model_type"] == device_model + assert ha_entity.name == entity_name + + hmip_device = default_mock_hap.home.template.search_mock_device_by_id( + ha_entity.attributes["id"] + ) + assert hmip_device is not None + return ha_entity, hmip_device + + +async def async_manipulate_test_data( + hass, hmip_device, attribute, new_value, channel=1 +): + """Set new value on hmip device.""" + if channel == 1: + setattr(hmip_device, attribute, new_value) + functional_channel = hmip_device.functionalChannels[channel] + setattr(functional_channel, attribute, new_value) + + hmip_device.fire_update_event() + await hass.async_block_till_done() + + +class HomeTemplate(Home): + """ + Home template as builder for home mock. + + It is based on the upstream libs home class to generate hmip devices + and groups based on the given homematicip_cloud.json. + + All further testing activities should be done by using the AsyncHome mock, + that is generated by get_async_home_mock(self). + + The class also generated mocks of devices and groups for further testing. + """ + + _typeClassMap = TYPE_CLASS_MAP + _typeGroupMap = TYPE_GROUP_MAP + _typeSecurityEventMap = TYPE_SECURITY_EVENT_MAP + + def __init__(self, connection=None): + """Init template with connection.""" + super().__init__(connection=connection) + self.mock_devices = [] + self.mock_groups = [] + + def init_home(self, json_path=HOME_JSON): + """Init template with json.""" + json_state = json.loads(load_fixture(HOME_JSON), encoding="UTF-8") + self.update_home(json_state=json_state, clearConfig=True) + self._generate_mocks() + return self + + def _generate_mocks(self): + """Generate mocks for groups and devices.""" + for device in self.devices: + self.mock_devices.append(_get_mock(device)) + for group in self.groups: + self.mock_groups.append(_get_mock(group)) + + def search_mock_device_by_id(self, device_id): + """Search a device by given id.""" + for device in self.mock_devices: + if device.id == device_id: + return device + return None + + def search_mock_group_by_id(self, group_id): + """Search a group by given id.""" + for group in self.mock_groups: + if group.id == group_id: + return group + return None + + def get_async_home_mock(self): + """ + Create Mock for Async_Home. based on template to be used for testing. + + It adds collections of mocked devices and groups to the home objects, + and sets reuired attributes. + """ + mock_home = Mock( + check_connection=self._connection, + id=HAPID, + connected=True, + dutyCycle=self.dutyCycle, + devices=self.mock_devices, + groups=self.mock_groups, + weather=self.weather, + location=self.location, + label="home label", + template=self, + spec=AsyncHome, + ) + mock_home.name = "" + return mock_home + + +def _get_mock(instance): + """Create a mock and copy instance attributes over mock.""" + mock = Mock(spec=instance, wraps=instance) + mock.__dict__.update(instance.__dict__) + return mock diff --git a/tests/components/homematicip_cloud/test_binary_sensors.py b/tests/components/homematicip_cloud/test_binary_sensors.py new file mode 100644 index 00000000000..4471c5dd7f3 --- /dev/null +++ b/tests/components/homematicip_cloud/test_binary_sensors.py @@ -0,0 +1,41 @@ +"""Tests for HomematicIP Cloud lights.""" +import logging + +from tests.components.homematicip_cloud.helper import ( + async_manipulate_test_data, + get_and_check_entity_basics, +) + +_LOGGER = logging.getLogger(__name__) + + +async def test_hmip_sam(hass, default_mock_hap): + """Test HomematicipLight.""" + entity_id = "binary_sensor.garagentor" + entity_name = "Garagentor" + device_model = "HmIP-SAM" + + ha_entity, hmip_device = get_and_check_entity_basics( + hass, default_mock_hap, entity_id, entity_name, device_model + ) + + assert ha_entity.state == "on" + assert ha_entity.attributes["acceleration_sensor_mode"] == "FLAT_DECT" + assert ha_entity.attributes["acceleration_sensor_neutral_position"] == "VERTICAL" + assert ha_entity.attributes["acceleration_sensor_sensitivity"] == "SENSOR_RANGE_4G" + assert ha_entity.attributes["acceleration_sensor_trigger_angle"] == 45 + service_call_counter = len(hmip_device.mock_calls) + + await async_manipulate_test_data( + hass, hmip_device, "accelerationSensorTriggered", False + ) + ha_entity = hass.states.get(entity_id) + assert ha_entity.state == "off" + assert len(hmip_device.mock_calls) == service_call_counter + 1 + + await async_manipulate_test_data( + hass, hmip_device, "accelerationSensorTriggered", True + ) + ha_entity = hass.states.get(entity_id) + assert ha_entity.state == "on" + assert len(hmip_device.mock_calls) == service_call_counter + 2 diff --git a/tests/components/homematicip_cloud/test_config_flow.py b/tests/components/homematicip_cloud/test_config_flow.py index c1bad855701..54cb309755d 100644 --- a/tests/components/homematicip_cloud/test_config_flow.py +++ b/tests/components/homematicip_cloud/test_config_flow.py @@ -1,8 +1,7 @@ """Tests for HomematicIP Cloud config flow.""" from unittest.mock import patch -from homeassistant.components.homematicip_cloud import hap as hmipc -from homeassistant.components.homematicip_cloud import config_flow, const +from homeassistant.components.homematicip_cloud import config_flow, const, hap as hmipc from tests.common import MockConfigEntry, mock_coro diff --git a/tests/components/homematicip_cloud/test_hap.py b/tests/components/homematicip_cloud/test_hap.py index 34afd19310f..cd8ead40c43 100644 --- a/tests/components/homematicip_cloud/test_hap.py +++ b/tests/components/homematicip_cloud/test_hap.py @@ -3,9 +3,9 @@ from unittest.mock import Mock, patch import pytest +from homeassistant.components.homematicip_cloud import const, errors, hap as hmipc from homeassistant.exceptions import ConfigEntryNotReady -from homeassistant.components.homematicip_cloud import hap as hmipc -from homeassistant.components.homematicip_cloud import const, errors + from tests.common import mock_coro, mock_coro_func @@ -94,8 +94,8 @@ async def test_hap_setup_connection_error(): ), pytest.raises(ConfigEntryNotReady): await hap.async_setup() - assert len(hass.async_add_job.mock_calls) == 0 - assert len(hass.config_entries.flow.async_init.mock_calls) == 0 + assert not hass.async_add_job.mock_calls + assert not hass.config_entries.flow.async_init.mock_calls async def test_hap_reset_unloads_entry_if_setup(): @@ -114,7 +114,7 @@ async def test_hap_reset_unloads_entry_if_setup(): assert await hap.async_setup() is True assert hap.home is home - assert len(hass.services.async_register.mock_calls) == 0 + assert not hass.services.async_register.mock_calls assert len(hass.config_entries.async_forward_entry_setup.mock_calls) == 8 hass.config_entries.async_forward_entry_unload.return_value = mock_coro(True) diff --git a/tests/components/homematicip_cloud/test_init.py b/tests/components/homematicip_cloud/test_init.py index d77d4a7e5b2..894db2e691b 100644 --- a/tests/components/homematicip_cloud/test_init.py +++ b/tests/components/homematicip_cloud/test_init.py @@ -2,10 +2,10 @@ from unittest.mock import patch -from homeassistant.setup import async_setup_component from homeassistant.components import homematicip_cloud as hmipc +from homeassistant.setup import async_setup_component -from tests.common import mock_coro, MockConfigEntry +from tests.common import MockConfigEntry, mock_coro async def test_config_with_accesspoint_passed_to_config_entry(hass): @@ -53,7 +53,7 @@ async def test_config_already_registered_not_passed_to_config_entry(hass): ) # No flow started - assert len(mock_config_entries.flow.mock_calls) == 0 + assert not mock_config_entries.flow.mock_calls async def test_setup_entry_successful(hass): diff --git a/tests/components/homematicip_cloud/test_lights.py b/tests/components/homematicip_cloud/test_lights.py new file mode 100644 index 00000000000..dcf5f76d0a0 --- /dev/null +++ b/tests/components/homematicip_cloud/test_lights.py @@ -0,0 +1,77 @@ +"""Tests for HomematicIP Cloud lights.""" +import logging + +from tests.components.homematicip_cloud.helper import ( + async_manipulate_test_data, + get_and_check_entity_basics, +) + +_LOGGER = logging.getLogger(__name__) + + +async def test_hmip_light(hass, default_mock_hap): + """Test HomematicipLight.""" + entity_id = "light.treppe" + entity_name = "Treppe" + device_model = "HmIP-BSL" + + ha_entity, hmip_device = get_and_check_entity_basics( + hass, default_mock_hap, entity_id, entity_name, device_model + ) + + assert ha_entity.state == "on" + + service_call_counter = len(hmip_device.mock_calls) + await hass.services.async_call( + "light", "turn_off", {"entity_id": entity_id}, blocking=True + ) + assert len(hmip_device.mock_calls) == service_call_counter + 1 + assert hmip_device.mock_calls[-1][0] == "turn_off" + await async_manipulate_test_data(hass, hmip_device, "on", False) + ha_entity = hass.states.get(entity_id) + assert ha_entity.state == "off" + + await hass.services.async_call( + "light", "turn_on", {"entity_id": entity_id}, blocking=True + ) + assert len(hmip_device.mock_calls) == service_call_counter + 3 + assert hmip_device.mock_calls[-1][0] == "turn_on" + await async_manipulate_test_data(hass, hmip_device, "on", True) + ha_entity = hass.states.get(entity_id) + assert ha_entity.state == "on" + + +# HomematicipLightMeasuring +# HomematicipDimmer + + +async def test_hmip_notification_light(hass, default_mock_hap): + """Test HomematicipNotificationLight.""" + entity_id = "light.treppe_top_notification" + entity_name = "Treppe Top Notification" + device_model = "HmIP-BSL" + + ha_entity, hmip_device = get_and_check_entity_basics( + hass, default_mock_hap, entity_id, entity_name, device_model + ) + + assert ha_entity.state == "off" + service_call_counter = len(hmip_device.mock_calls) + + await hass.services.async_call( + "light", "turn_on", {"entity_id": entity_id}, blocking=True + ) + assert len(hmip_device.mock_calls) == service_call_counter + 1 + assert hmip_device.mock_calls[-1][0] == "set_rgb_dim_level" + await async_manipulate_test_data(hass, hmip_device, "dimLevel", 100, 2) + ha_entity = hass.states.get(entity_id) + assert ha_entity.state == "on" + + await hass.services.async_call( + "light", "turn_off", {"entity_id": entity_id}, blocking=True + ) + assert len(hmip_device.mock_calls) == service_call_counter + 3 + assert hmip_device.mock_calls[-1][0] == "set_rgb_dim_level" + await async_manipulate_test_data(hass, hmip_device, "dimLevel", 0, 2) + ha_entity = hass.states.get(entity_id) + assert ha_entity.state == "off" diff --git a/tests/fixtures/homematicip_cloud.json b/tests/fixtures/homematicip_cloud.json new file mode 100644 index 00000000000..b96bff8fac9 --- /dev/null +++ b/tests/fixtures/homematicip_cloud.json @@ -0,0 +1,5341 @@ +{ + "clients": { + "00000000-0000-0000-0000-000000000000": { + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000000", + "label": "TEST-Client", + "clientType": "APP" + } + }, + "devices": { + "3014F7110000000000000031": { + "availableFirmwareVersion": "1.2.1", + "firmwareVersion": "1.2.1", + "firmwareVersionInteger": 66049, + "functionalChannels": { + "0": { + "coProFaulty": false, + "coProRestartNeeded": false, + "coProUpdateFailure": false, + "configPending": false, + "deviceId": "3014F7110000000000000031", + "deviceOverheated": false, + "deviceOverloaded": false, + "deviceUndervoltage": false, + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -88, + "rssiPeerValue": null, + "supportedOptionalFeatures": { + "IFeatureDeviceCoProError": false, + "IFeatureDeviceCoProRestart": false, + "IFeatureDeviceCoProUpdate": false, + "IFeatureDeviceOverheated": false, + "IFeatureDeviceOverloaded": false, + "IFeatureDeviceTemperatureOutOfRange": false, + "IFeatureDeviceUndervoltage": false + }, + "temperatureOutOfRange": false, + "unreach": false + }, + "1": { + "accelerationSensorEventFilterPeriod": 3.0, + "accelerationSensorMode": "FLAT_DECT", + "accelerationSensorNeutralPosition": "VERTICAL", + "accelerationSensorSensitivity": "SENSOR_RANGE_4G", + "accelerationSensorTriggerAngle": 45, + "accelerationSensorTriggered": true, + "deviceId": "3014F7110000000000000031", + "functionalChannelType": "ACCELERATION_SENSOR_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 1, + "label": "", + "notificationSoundTypeHighToLow": "SOUND_LONG", + "notificationSoundTypeLowToHigh": "SOUND_LONG" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000031", + "label": "Garagentor", + "lastStatusUpdate": 1567850423788, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 315, + "modelType": "HmIP-SAM", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000000031", + "type": "ACCELERATION_SENSOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000052": { + "availableFirmwareVersion": "1.0.5", + "firmwareVersion": "1.0.5", + "firmwareVersionInteger": 65541, + "functionalChannels": { + "0": { + "coProFaulty": false, + "coProRestartNeeded": false, + "coProUpdateFailure": false, + "configPending": false, + "deviceId": "3014F7110000000000000052", + "deviceOverheated": false, + "deviceOverloaded": false, + "deviceUndervoltage": false, + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -73, + "rssiPeerValue": null, + "supportedOptionalFeatures": { + "IFeatureDeviceCoProError": false, + "IFeatureDeviceCoProRestart": false, + "IFeatureDeviceCoProUpdate": false, + "IFeatureDeviceOverheated": false, + "IFeatureDeviceOverloaded": false, + "IFeatureDeviceTemperatureOutOfRange": false, + "IFeatureDeviceUndervoltage": false + }, + "temperatureOutOfRange": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 1, + "label": "" + }, + "2": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 2, + "label": "" + }, + "3": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [], + "index": 4, + "label": "" + }, + "5": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 3, + "groups": [], + "index": 5, + "label": "" + }, + "6": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 3, + "groups": [], + "index": 6, + "label": "" + }, + "7": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 4, + "groups": [], + "index": 7, + "label": "" + }, + "8": { + "deviceId": "3014F7110000000000000052", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 4, + "groups": [], + "index": 8, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000052", + "label": "Alarm-Melder", + "lastStatusUpdate": 1564733931898, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 336, + "modelType": "HmIP-MOD-RC8", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000000052", + "type": "REMOTE_CONTROL_8_MODULE", + "updateState": "UP_TO_DATE" + }, + "3014F71100000000FAL24C10": { + "availableFirmwareVersion": "1.6.2", + "firmwareVersion": "1.6.2", + "firmwareVersionInteger": 67074, + "functionalChannels": { + "0": { + "configPending": false, + "coolingEmergencyValue": 0.0, + "deviceId": "3014F71100000000FAL24C10", + "dutyCycle": false, + "frostProtectionTemperature": 8.0, + "functionalChannelType": "DEVICE_GLOBAL_PUMP_CONTROL", + "globalPumpControl": true, + "groupIndex": 0, + "groups": [ + ], + "heatingEmergencyValue": 0.25, + "heatingLoadType": "LOAD_BALANCING", + "heatingValveType": "NORMALLY_CLOSE", + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -73, + "rssiPeerValue": -74, + "unreach": false, + "valveProtectionDuration": 5, + "valveProtectionSwitchingInterval": 14 + }, + "1": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_LOCAL_PUMP_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 1, + "label": "", + "pumpFollowUpTime": 2, + "pumpLeadTime": 2, + "pumpProtectionDuration": 1, + "pumpProtectionSwitchingInterval": 14 + }, + "10": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 10, + "groups": [ + ], + "index": 10, + "label": "" + }, + "11": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "HEAT_DEMAND_CHANNEL", + "groupIndex": 0, + "groups": [ + ], + "index": 11, + "label": "" + }, + "12": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "DEHUMIDIFIER_DEMAND_CHANNEL", + "groupIndex": 0, + "groups": [ + ], + "index": 12, + "label": "" + }, + "2": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 2, + "groups": [ + ], + "index": 2, + "label": "" + }, + "3": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 3, + "groups": [ + ], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 4, + "groups": [ + ], + "index": 4, + "label": "" + }, + "5": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 5, + "groups": [ + ], + "index": 5, + "label": "" + }, + "6": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 6, + "groups": [ + ], + "index": 6, + "label": "" + }, + "7": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 7, + "groups": [ + ], + "index": 7, + "label": "" + }, + "8": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 8, + "groups": [ + ], + "index": 8, + "label": "" + }, + "9": { + "deviceId": "3014F71100000000FAL24C10", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 9, + "groups": [ + ], + "index": 9, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F71100000000FAL24C10", + "label": "Fu\u00dfbodenheizungsaktor", + "lastStatusUpdate": 1558461135830, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 280, + "modelType": "HmIP-FAL24-C10", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F71100000000FAL24C10", + "type": "FLOOR_TERMINAL_BLOCK_10", + "updateState": "UP_TO_DATE" + }, + "3014F71100000000000BBL24": { + "availableFirmwareVersion": "1.6.2", + "firmwareVersion": "1.6.2", + "firmwareVersionInteger": 67074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F71100000000000BBL24", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000034" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -64, + "rssiPeerValue": -76, + "unreach": false + }, + "1": { + "blindModeActive": true, + "bottomToTopReferenceTime": 54.88, + "changeOverDelay": 0.5, + "delayCompensationValue": 12.7, + "deviceId": "3014F71100000000000BBL24", + "endpositionAutoDetectionEnabled": true, + "functionalChannelType": "BLIND_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "", + "previousShutterLevel": null, + "previousSlatsLevel": null, + "processing": false, + "profileMode": "AUTOMATIC", + "selfCalibrationInProgress": null, + "shutterLevel": 0.885, + "slatsLevel": 1.0, + "slatsReferenceTime": 1.6, + "supportingDelayCompensation": true, + "supportingEndpositionAutoDetection": true, + "supportingSelfCalibration": true, + "topToBottomReferenceTime": 53.68, + "userDesiredProfileMode": "MANUAL" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F71100000000000BBL24", + "label": "Jalousie Schiebet\u00fcr", + "lastStatusUpdate": 1558464454532, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 332, + "modelType": "HmIP-BBL", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F71100000000000BBL24", + "type": "BRAND_BLIND", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000BCBB11": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.10.10", + "firmwareVersionInteger": 68106, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000BCBB11", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -53, + "rssiPeerValue": -56, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000BCBB11", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "2": { + "deviceId": "3014F7110000000000BCBB11", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 2, + "groups": [ + "00000000-0000-0000-0000-000000000038" + ], + "index": 2, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000BCBB11", + "label": "Jalousien - 1 KiZi, 2 SchlaZi", + "lastStatusUpdate": 1555621612744, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 357, + "modelType": "HmIP-PCBS2", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000BCBB11", + "type": "PRINTED_CIRCUIT_BOARD_SWITCH_2", + "updateState": "UP_TO_DATE" + }, + "3014F711ABCD0ABCD000002": { + "availableFirmwareVersion": "1.6.4", + "firmwareVersion": "1.6.4", + "firmwareVersionInteger": 67076, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711ABCD0ABCD000002", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000027" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -79, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F711ABCD0ABCD000002", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "", + "on": true, + "profileMode": null, + "userDesiredProfileMode": "AUTOMATIC" + }, + "2": { + "deviceId": "3014F711ABCD0ABCD000002", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 2, + "groups": [], + "index": 2, + "label": "", + "on": false, + "profileMode": null, + "userDesiredProfileMode": "AUTOMATIC" + }, + "3": { + "deviceId": "3014F711ABCD0ABCD000002", + "functionalChannelType": "GENERIC_INPUT_CHANNEL", + "groupIndex": 3, + "groups": [], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F711ABCD0ABCD000002", + "functionalChannelType": "GENERIC_INPUT_CHANNEL", + "groupIndex": 4, + "groups": [], + "index": 4, + "label": "" + }, + "5": { + "analogOutputLevel": 12.5, + "deviceId": "3014F711ABCD0ABCD000002", + "functionalChannelType": "ANALOG_OUTPUT_CHANNEL", + "groupIndex": 0, + "groups": [], + "index": 5, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711ABCD0ABCD000002", + "label": "Multi IO Box", + "lastStatusUpdate": 1552508702220, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 283, + "modelType": "HmIP-MIOB", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711ABCD0ABCD000002", + "type": "MULTI_IO_BOX", + "updateState": "UP_TO_DATE" + }, + "3014F71100000000ABCDEF10": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.6", + "firmwareVersionInteger": 65542, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F71100000000ABCDEF10", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000010" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -47, + "rssiPeerValue": -50, + "sabotage": null, + "unreach": false + }, + "1": { + "deviceId": "3014F71100000000ABCDEF10", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000013" + ], + "index": 1, + "label": "", + "setPointTemperature": 21.0, + "temperatureOffset": 0.0, + "valveActualTemperature": 21.6, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F71100000000ABCDEF10", + "label": "Wohnzimmer 3", + "lastStatusUpdate": 1550912664486, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 325, + "modelType": "HmIP-eTRV-C", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F71100000000ABCDEF10", + "type": "HEATING_THERMOSTAT_COMPACT", + "updateState": "UP_TO_DATE" + }, + "3014F71100000000000TEST1": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.8.8", + "firmwareVersionInteger": 67592, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F71100000000000TEST1", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -51, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F71100000000000TEST1", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "" + }, + "2": { + "deviceId": "3014F71100000000000TEST1", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 2, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F71100000000000TEST1", + "label": "Remote", + "lastStatusUpdate": 1550512733995, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 358, + "modelType": "HmIP-BRC2", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F71100000000000TEST1", + "type": "BRAND_PUSH_BUTTON", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000064": { + "availableFirmwareVersion": "1.0.6", + "firmwareVersion": "1.0.6", + "firmwareVersionInteger": 65542, + "functionalChannels": { + "0": { + "coProFaulty": false, + "coProRestartNeeded": false, + "coProUpdateFailure": false, + "configPending": false, + "deviceId": "3014F7110000000000000064", + "deviceOverheated": true, + "deviceOverloaded": false, + "deviceUndervoltage": false, + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000032", + "00000000-0000-0000-0000-000000000013" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -42, + "rssiPeerValue": null, + "sabotage": false, + "supportedOptionalFeatures": { + "IFeatureDeviceCoProError": false, + "IFeatureDeviceCoProRestart": false, + "IFeatureDeviceCoProUpdate": false, + "IFeatureDeviceOverheated": true, + "IFeatureDeviceOverloaded": false, + "IFeatureDeviceTemperatureOutOfRange": false, + "IFeatureDeviceUndervoltage": false + }, + "temperatureOutOfRange": false, + "unreach": false + }, + "1": { + "alarmContactType": "WINDOW_DOOR_CONTACT", + "contactType": "NORMALLY_CLOSE", + "deviceId": "3014F7110000000000000064", + "eventDelay": 0, + "functionalChannelType": "CONTACT_INTERFACE_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000033", + "00000000-0000-0000-0000-000000000010", + "00000000-0000-0000-0000-000000000013" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000064", + "label": "Schlie\u00dfer Magnet", + "lastStatusUpdate": 1524515854304, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 375, + "modelType": "HmIP-SCI", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000000064", + "type": "SHUTTER_CONTACT_INTERFACE", + "updateState": "UP_TO_DATE" + }, + "3014F711BADCAFE000000001": { + "availableFirmwareVersion": "1.2.0", + "firmwareVersion": "1.2.0", + "firmwareVersionInteger": 66048, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711BADCAFE000000001", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -73, + "rssiPeerValue": -78, + "unreach": false + }, + "1": { + "blindModeActive": true, + "bottomToTopReferenceTime": 41.0, + "changeOverDelay": 0.5, + "delayCompensationValue": 1.0, + "deviceId": "3014F711BADCAFE000000001", + "endpositionAutoDetectionEnabled": false, + "functionalChannelType": "BLIND_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "", + "previousShutterLevel": null, + "previousSlatsLevel": null, + "processing": false, + "profileMode": "AUTOMATIC", + "selfCalibrationInProgress": null, + "shutterLevel": 1.0, + "slatsLevel": 1.0, + "slatsReferenceTime": 2.0, + "supportingDelayCompensation": false, + "supportingEndpositionAutoDetection": false, + "supportingSelfCalibration": false, + "topToBottomReferenceTime": 41.0, + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711BADCAFE000000001", + "label": "Sofa links", + "lastStatusUpdate": 1548616026922, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 333, + "modelType": "HmIP-FBL", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711BADCAFE000000001", + "type": "FULL_FLUSH_BLIND", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000055": { + "availableFirmwareVersion": "1.2.4", + "firmwareVersion": "1.2.4", + "firmwareVersionInteger": 66052, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000055", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000034" + ], + "index": 0, + "label": "", + "lowBat": null, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -76, + "rssiPeerValue": -77, + "unreach": false + }, + "1": { + "actualTemperature": 21.0, + "deviceId": "3014F7110000000000000055", + "display": "SETPOINT", + "functionalChannelType": "WALL_MOUNTED_THERMOSTAT_PRO_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000035" + ], + "humidity": 40, + "index": 1, + "label": "", + "vaporAmount": 6.177718198711658, + "valveActualTemperature": 20.0, + "setPointTemperature": 21.5, + "temperatureOffset": 0.0 + }, + "2": { + "deviceId": "3014F7110000000000000055", + "frostProtectionTemperature": 8.0, + "functionalChannelType": "INTERNAL_SWITCH_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000035" + ], + "heatingValveType": "NORMALLY_CLOSE", + "index": 2, + "internalSwitchOutputEnabled": true, + "label": "", + "valveProtectionDuration": 5, + "valveProtectionSwitchingInterval": 14 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000055", + "label": "BWTH 1", + "lastStatusUpdate": 1547283716818, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 305, + "modelType": "HmIP-BWTH", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000055", + "type": "BRAND_WALL_MOUNTED_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F711ABCDEF0000000014": { + "availableFirmwareVersion": "1.4.2", + "firmwareVersion": "1.4.2", + "firmwareVersionInteger": 66562, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711ABCDEF0000000014", + "dutyCycle": null, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000033" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": null, + "rssiPeerValue": null, + "unreach": null + }, + "1": { + "deviceId": "3014F711ABCDEF0000000014", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 1, + "label": "" + }, + "2": { + "deviceId": "3014F711ABCDEF0000000014", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 2, + "label": "" + }, + "3": { + "deviceId": "3014F711ABCDEF0000000014", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F711ABCDEF0000000014", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [], + "index": 4, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711ABCDEF0000000014", + "label": "FFB 1", + "lastStatusUpdate": 0, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 266, + "modelType": "HmIP-KRC4", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F711ABCDEF0000000014", + "type": "KEY_REMOTE_CONTROL_4", + "updateState": "UP_TO_DATE" + }, + "3014F711BSL0000000000050": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.2", + "firmwareVersionInteger": 65538, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711BSL0000000000050", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -67, + "rssiPeerValue": -70, + "unreach": false + }, + "1": { + "deviceId": "3014F711BSL0000000000050", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 1, + "label": "", + "on": true, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "2": { + "deviceId": "3014F711BSL0000000000050", + "dimLevel": 0.0, + "functionalChannelType": "NOTIFICATION_LIGHT_CHANNEL", + "groupIndex": 2, + "groups": [], + "index": 2, + "label": "", + "on": null, + "profileMode": "AUTOMATIC", + "simpleRGBColorState": "RED", + "userDesiredProfileMode": "AUTOMATIC" + }, + "3": { + "deviceId": "3014F711BSL0000000000050", + "dimLevel": 1.0, + "functionalChannelType": "NOTIFICATION_LIGHT_CHANNEL", + "groupIndex": 3, + "groups": [], + "index": 3, + "label": "", + "on": true, + "profileMode": "AUTOMATIC", + "simpleRGBColorState": "GREEN", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711BSL0000000000050", + "label": "Treppe", + "lastStatusUpdate": 1548431183264, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 360, + "modelType": "HmIP-BSL", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711BSL0000000000050", + "type": "BRAND_SWITCH_NOTIFICATION_LIGHT", + "updateState": "UP_TO_DATE" + }, + "3014F711SLO0000000000026": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.16", + "firmwareVersionInteger": 65552, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711SLO0000000000026", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -60, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "averageIllumination": 807.3, + "currentIllumination": 785.2, + "deviceId": "3014F711SLO0000000000026", + "functionalChannelType": "LIGHT_SENSOR_CHANNEL", + "groupIndex": 1, + "groups": [], + "highestIllumination": 837.1, + "index": 1, + "label": "", + "lowestIllumination": 785.2 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711SLO0000000000026", + "label": "Lichtsensor Nord", + "lastStatusUpdate": 1548494235548, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 308, + "modelType": "HmIP-SLO", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F711SLO0000000000026", + "type": "LIGHT_SENSOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000054": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.0", + "firmwareVersionInteger": 65536, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000054", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000053" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -76, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000054", + "functionalChannelType": "PASSAGE_DETECTOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000055" + ], + "index": 1, + "label": "", + "leftCounter": 966, + "leftRightCounterDelta": 164, + "passageBlindtime": 1.5, + "passageDirection": "LEFT", + "passageSensorSensitivity": 50.0, + "passageTimeout": 0.5, + "rightCounter": 802 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000054", + "label": "SPDR_1", + "lastStatusUpdate": 1547282742305, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 304, + "modelType": "HmIP-SPDR", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000000054", + "type": "PASSAGE_DETECTOR", + "updateState": "UP_TO_DATE" + }, + "3014F711000000000AAAAA25": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.12", + "firmwareVersionInteger": 65548, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711000000000AAAAA25", + "dutyCycle": false, + "functionalChannelType": "DEVICE_PERMANENT_FULL_RX", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000010" + ], + "index": 0, + "label": "", + "lowBat": false, + "permanentFullRx": true, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -46, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F711000000000AAAAA25", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000048", + "00000000-0000-0000-0000-000000000034" + ], + "index": 1, + "label": "" + }, + "2": { + "deviceId": "3014F711000000000AAAAA25", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000048", + "00000000-0000-0000-0000-000000000034" + ], + "index": 2, + "label": "" + }, + "3": { + "currentIllumination": null, + "deviceId": "3014F711000000000AAAAA25", + "functionalChannelType": "MOTION_DETECTION_CHANNEL", + "groupIndex": 2, + "groups": [], + "illumination": 14.2, + "index": 3, + "label": "", + "motionBufferActive": true, + "motionDetected": false, + "motionDetectionSendInterval": "SECONDS_240", + "numberOfBrightnessMeasurements": 7 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711000000000AAAAA25", + "label": "Bewegungsmelder für 55er Rahmen – innen", + "lastStatusUpdate": 1546776387401, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 338, + "modelType": "HmIP-SMI55", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F711000000000AAAAA25", + "type": "MOTION_DETECTOR_PUSH_BUTTON", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000038": { + "availableFirmwareVersion": "1.0.18", + "firmwareVersion": "1.0.18", + "firmwareVersionInteger": 65554, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000038", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -55, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "actualTemperature": 4.3, + "deviceId": "3014F7110000000000000038", + "functionalChannelType": "WEATHER_SENSOR_PLUS_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "humidity": 97, + "vaporAmount": 6.177718198711658, + "illumination": 26.4, + "illuminationThresholdSunshine": 3500.0, + "index": 1, + "label": "", + "raining": false, + "storm": false, + "sunshine": false, + "todayRainCounter": 3.8999999999999773, + "todaySunshineDuration": 0, + "totalRainCounter": 544.0999999999999, + "totalSunshineDuration": 132057, + "windSpeed": 15.0, + "windValueType": "CURRENT_VALUE", + "yesterdayRainCounter": 25.600000000000023, + "yesterdaySunshineDuration": 0 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000038", + "label": "Weather Sensor – plus", + "lastStatusUpdate": 1546789939739, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 351, + "modelType": "HmIP-SWO-PL", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000000038", + "type": "WEATHER_SENSOR_PLUS", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000BBBBB1": { + "availableFirmwareVersion": "1.6.2", + "firmwareVersion": "1.6.2", + "firmwareVersionInteger": 67074, + "functionalChannels": { + "0": { + "configPending": false, + "coolingEmergencyValue": 0.0, + "deviceId": "3014F7110000000000BBBBB1", + "dutyCycle": false, + "frostProtectionTemperature": 8.0, + "functionalChannelType": "DEVICE_GLOBAL_PUMP_CONTROL", + "globalPumpControl": true, + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000007" + ], + "heatingEmergencyValue": 0.25, + "heatingLoadType": "LOAD_BALANCING", + "heatingValveType": "NORMALLY_CLOSE", + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -62, + "rssiPeerValue": null, + "unreach": false, + "valveProtectionDuration": 5, + "valveProtectionSwitchingInterval": 14 + }, + "1": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_LOCAL_PUMP_CHANNEL", + "groupIndex": 1, + "groups": [], + "index": 1, + "label": "", + "pumpFollowUpTime": 2, + "pumpLeadTime": 2, + "pumpProtectionDuration": 1, + "pumpProtectionSwitchingInterval": 14 + }, + "2": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 2, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 2, + "label": "" + }, + "3": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 3, + "groups": [ + "00000000-0000-0000-0000-000000000009" + ], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 4, + "groups": [ + "00000000-0000-0000-0000-000000000010" + ], + "index": 4, + "label": "" + }, + "5": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 5, + "groups": [ + "00000000-0000-0000-0000-000000000011" + ], + "index": 5, + "label": "" + }, + "6": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "FLOOR_TERMINAL_BLOCK_CHANNEL", + "groupIndex": 6, + "groups": [], + "index": 6, + "label": "" + }, + "7": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "HEAT_DEMAND_CHANNEL", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000012", + "00000000-0000-0000-0000-000000000013" + ], + "index": 7, + "label": "" + }, + "8": { + "deviceId": "3014F7110000000000BBBBB1", + "functionalChannelType": "DEHUMIDIFIER_DEMAND_CHANNEL", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000014" + ], + "index": 8, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000BBBBB1", + "label": "Fußbodenheizungsaktor", + "lastStatusUpdate": 1545746610807, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 277, + "modelType": "HmIP-FAL230-C6", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000BBBBB1", + "type": "FLOOR_TERMINAL_BLOCK_6", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000BBBBB8": { + "availableFirmwareVersion": "1.2.16", + "firmwareVersion": "1.2.16", + "firmwareVersionInteger": 66064, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000BBBBB8", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -59, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000BBBBB8", + "functionalChannelType": "ALARM_SIREN_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000BBBBB8", + "label": "Alarmsirene", + "lastStatusUpdate": 1544480290322, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 298, + "modelType": "HmIP-ASIR", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000BBBBB8", + "type": "ALARM_SIREN_INDOOR", + "updateState": "UP_TO_DATE" + }, + "3014F711000000000000BB11": { + "availableFirmwareVersion": "1.4.8", + "firmwareVersion": "1.4.8", + "firmwareVersionInteger": 66568, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711000000000000BB11", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -56, + "rssiPeerValue": -52, + "sabotage": false, + "unreach": false + }, + "1": { + "currentIllumination": null, + "deviceId": "3014F711000000000000BB11", + "functionalChannelType": "MOTION_DETECTION_CHANNEL", + "groupIndex": 1, + "groups": [], + "illumination": 0.1, + "index": 1, + "label": "", + "motionBufferActive": false, + "motionDetected": true, + "motionDetectionSendInterval": "SECONDS_480", + "numberOfBrightnessMeasurements": 7 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711000000000000BB11", + "label": "Wohnzimmer", + "lastStatusUpdate": 1544480290322, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 291, + "modelType": "HmIP-SMI", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000011", + "type": "MOTION_DETECTOR_INDOOR", + "updateState": "UP_TO_DATE" + }, + "3014F71100000000000BBB17": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.2", + "firmwareVersionInteger": 65538, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F71100000000000BBB17", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -70, + "rssiPeerValue": -67, + "unreach": false + }, + "1": { + "currentIllumination": null, + "deviceId": "3014F71100000000000BBB17", + "functionalChannelType": "MOTION_DETECTION_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "illumination": 233.4, + "index": 1, + "label": "", + "motionBufferActive": true, + "motionDetected": true, + "motionDetectionSendInterval": "SECONDS_240", + "numberOfBrightnessMeasurements": 7 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F71100000000000BBB17", + "label": "Außen Küche", + "lastStatusUpdate": 1546776559553, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 302, + "modelType": "HmIP-SMO-A", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F71100000000000BBB17", + "type": "MOTION_DETECTOR_OUTDOOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000050": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.2", + "firmwareVersionInteger": "65538", + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000050", + "dutyCycle": false, + "functionalChannelType": "DEVICE_INCORRECT_POSITIONED", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000020" + ], + "incorrectPositioned": true, + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -65, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "acousticAlarmSignal": "FREQUENCY_RISING", + "acousticAlarmTiming": "ONCE_PER_MINUTE", + "acousticWaterAlarmTrigger": "WATER_DETECTION", + "deviceId": "3014F7110000000000000050", + "functionalChannelType": "WATER_SENSOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000023" + ], + "inAppWaterAlarmTrigger": "WATER_MOISTURE_DETECTION", + "index": 1, + "label": "", + "moistureDetected": false, + "sirenWaterAlarmTrigger": "WATER_MOISTURE_DETECTION", + "waterlevelDetected": false + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000050", + "label": "Wassersensor", + "lastStatusUpdate": 1530802738493, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 353, + "modelType": "HmIP-SWD", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000050", + "type": "WATER_SENSOR", + "updateState": "UP_TO_DATE" + + }, + "3014F7110000000000000000": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000000", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -85, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000000", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000006", + "00000000-0000-0000-0000-000000000007", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "OPEN" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000000", + "label": "Balkontüre", + "lastStatusUpdate": 1524516526498, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000000", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000005551": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.2.12", + "firmwareVersionInteger": 66060, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000005551", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -73, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000005551", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000010", + "00000000-0000-0000-0000-000000000007" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000005551", + "label": "Eingangst\u00fcrkontakt", + "lastStatusUpdate": 1524515854304, + "liveUpdateState": "UP_TO_DATE", + "manufacturerCode": 1, + "modelId": 340, + "modelType": "HmIP-SWDM", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000005551", + "type": "SHUTTER_CONTACT_MAGNETIC", + "updateState": "BACKGROUND_UPDATE_NOT_SUPPORTED" + }, + "3014F7110000000000000001": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000001", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000008", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -64, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000001", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000009", + "00000000-0000-0000-0000-000000000010", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000001", + "label": "Fenster", + "lastStatusUpdate": 1524515854304, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000001", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000002": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000002", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -95, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000002", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000006", + "00000000-0000-0000-0000-000000000007", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000002", + "label": "Balkonfenster", + "lastStatusUpdate": 1524516088763, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000002", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000003": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000003", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -78, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000003", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000006", + "00000000-0000-0000-0000-000000000007", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000003", + "label": "Küche", + "lastStatusUpdate": 1524514836466, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000003", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000004": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000004", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000011", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -56, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000004", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000012", + "00000000-0000-0000-0000-000000000013", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "OPEN" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000004", + "label": "Fenster", + "lastStatusUpdate": 1524512404032, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000004", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000005": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000005", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -80, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000005", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000006", + "00000000-0000-0000-0000-000000000007", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "OPEN" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000005", + "label": "Wohnzimmer", + "lastStatusUpdate": 0, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000005", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000006": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000006", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000014", + "00000000-0000-0000-0000-000000000005" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -76, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000006", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000015", + "00000000-0000-0000-0000-000000000005" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000006", + "label": "Wohnungstüre", + "lastStatusUpdate": 1524516489316, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000006", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000007": { + "availableFirmwareVersion": "1.16.8", + "firmwareVersion": "1.16.8", + "firmwareVersionInteger": 69640, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000007", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000014", + "00000000-0000-0000-0000-000000000016" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -56, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000007", + "eventDelay": 0, + "functionalChannelType": "SHUTTER_CONTACT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000016", + "00000000-0000-0000-0000-000000000015" + ], + "index": 1, + "label": "", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000007", + "label": "Vorzimmer", + "lastStatusUpdate": 1524515489257, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 258, + "modelType": "HMIP-SWDO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000007", + "type": "SHUTTER_CONTACT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000008": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "2.6.2", + "firmwareVersionInteger": 132610, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000008", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000017" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": true, + "routerModuleSupported": true, + "rssiDeviceValue": -48, + "rssiPeerValue": -49, + "unreach": false + }, + "1": { + "currentPowerConsumption": 195.3, + "deviceId": "3014F7110000000000000008", + "energyCounter": 35.536, + "functionalChannelType": "SWITCH_MEASURING_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000018" + ], + "index": 1, + "label": "", + "on": true, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000008", + "label": "Pc", + "lastStatusUpdate": 1524516554056, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 262, + "modelType": "HMIP-PSM", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000008", + "type": "PLUGABLE_SWITCH_MEASURING", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000009": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "2.6.2", + "firmwareVersionInteger": 132610, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000009", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000017" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": true, + "routerModuleSupported": true, + "rssiDeviceValue": -60, + "rssiPeerValue": -66, + "unreach": false + }, + "1": { + "currentPowerConsumption": 0.0, + "deviceId": "3014F7110000000000000009", + "energyCounter": 0.4754, + "functionalChannelType": "SWITCH_MEASURING_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000018" + ], + "index": 1, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000009", + "label": "Brunnen", + "lastStatusUpdate": 1524515786303, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 262, + "modelType": "HMIP-PSM", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000009", + "type": "PLUGABLE_SWITCH_MEASURING", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000010": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "2.6.2", + "firmwareVersionInteger": 132610, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000010", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000017" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": true, + "routerModuleSupported": true, + "rssiDeviceValue": -47, + "rssiPeerValue": -49, + "unreach": false + }, + "1": { + "currentPowerConsumption": 2.04, + "deviceId": "3014F7110000000000000010", + "energyCounter": 1.5343, + "functionalChannelType": "SWITCH_MEASURING_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000018" + ], + "index": 1, + "label": "", + "on": true, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000010", + "label": "Büro", + "lastStatusUpdate": 1524513613922, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 262, + "modelType": "HMIP-PSM", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000010", + "type": "PLUGABLE_SWITCH_MEASURING", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000011": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000011", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000011" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -54, + "rssiPeerValue": -51, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000011", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000012" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000011", + "label": "Heizung", + "lastStatusUpdate": 1524516360178, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000011", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000012": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000012", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -46, + "rssiPeerValue": -54, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000012", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000010" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 19.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000012", + "label": "Heizkörperthermostat", + "lastStatusUpdate": 1524514105832, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000012", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000013": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000013", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000014" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -58, + "rssiPeerValue": -58, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000013", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000019" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000013", + "label": "Heizkörperthermostat", + "lastStatusUpdate": 1524514007132, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000013", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000014": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000014", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": true, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -60, + "rssiPeerValue": -58, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000014", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000007" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000014", + "label": "Küche-Heizung", + "lastStatusUpdate": 1524513898337, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000014", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000015": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000015", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": true, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -65, + "rssiPeerValue": -66, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000015", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000007" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000015", + "label": "Wohnzimmer-Heizung", + "lastStatusUpdate": 1524513950325, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000015", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000016": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000016", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000020" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -50, + "rssiPeerValue": -51, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000016", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000021" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000016", + "label": "Heizkörperthermostat", + "lastStatusUpdate": 1524514626157, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000016", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000017": { + "automaticValveAdaptionNeeded": false, + "availableFirmwareVersion": "2.0.2", + "firmwareVersion": "2.0.2", + "firmwareVersionInteger": 131074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000017", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": true, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -67, + "rssiPeerValue": -62, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000017", + "functionalChannelType": "HEATING_THERMOSTAT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000007" + ], + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0, + "valvePosition": 0.0, + "valveState": "ADAPTION_DONE" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000017", + "label": "Balkon-Heizung", + "lastStatusUpdate": 1524511331830, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 269, + "modelType": "HMIP-eTRV", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000017", + "type": "HEATING_THERMOSTAT", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000018": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.11", + "firmwareVersionInteger": 65547, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000018", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004", + "00000000-0000-0000-0000-000000000016" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -67, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000018", + "functionalChannelType": "SMOKE_DETECTOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000022", + "00000000-0000-0000-0000-000000000006" + ], + "index": 1, + "label": "", + "smokeDetectorAlarmType": "IDLE_OFF" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000018", + "label": "Rauchwarnmelder", + "lastStatusUpdate": 1524461072721, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 296, + "modelType": "HmIP-SWSD", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000018", + "type": "SMOKE_DETECTOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000019": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.11", + "firmwareVersionInteger": 65547, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000019", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000008", + "00000000-0000-0000-0000-000000000016" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -50, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000019", + "functionalChannelType": "SMOKE_DETECTOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000022", + "00000000-0000-0000-0000-000000000009" + ], + "index": 1, + "label": "", + "smokeDetectorAlarmType": "IDLE_OFF" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000019", + "label": "Rauchwarnmelder", + "lastStatusUpdate": 1524480981494, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 296, + "modelType": "HmIP-SWSD", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000019", + "type": "SMOKE_DETECTOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000020": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.11", + "firmwareVersionInteger": 65547, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000020", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000011", + "00000000-0000-0000-0000-000000000016" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -54, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000020", + "functionalChannelType": "SMOKE_DETECTOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000013", + "00000000-0000-0000-0000-000000000022" + ], + "index": 1, + "label": "", + "smokeDetectorAlarmType": "IDLE_OFF" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000020", + "label": "Rauchwarnmelder", + "lastStatusUpdate": 1524456324824, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 296, + "modelType": "HmIP-SWSD", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000020", + "type": "SMOKE_DETECTOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000021": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.11", + "firmwareVersionInteger": 65547, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000021", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000014", + "00000000-0000-0000-0000-000000000016" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -80, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F7110000000000000021", + "functionalChannelType": "SMOKE_DETECTOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000022", + "00000000-0000-0000-0000-000000000015" + ], + "index": 1, + "label": "", + "smokeDetectorAlarmType": "IDLE_OFF" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000021", + "label": "Rauchwarnmelder", + "lastStatusUpdate": 1524443129876, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 296, + "modelType": "HmIP-SWSD", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000021", + "type": "SMOKE_DETECTOR", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000022": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.8.0", + "firmwareVersionInteger": 67584, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000022", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000011" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -76, + "rssiPeerValue": -63, + "unreach": false + }, + "1": { + "actualTemperature": 24.7, + "deviceId": "3014F7110000000000000022", + "display": "ACTUAL_HUMIDITY", + "functionalChannelType": "WALL_MOUNTED_THERMOSTAT_PRO_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000012" + ], + "humidity": 43, + "vaporAmount": 6.177718198711658, + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000022", + "label": "Wandthermostat", + "lastStatusUpdate": 1524516534382, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 297, + "modelType": "HmIP-WTH-2", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000022", + "type": "WALL_MOUNTED_THERMOSTAT_PRO", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000023": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.8.0", + "firmwareVersionInteger": 67584, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000023", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -61, + "rssiPeerValue": -58, + "unreach": false + }, + "1": { + "actualTemperature": 24.5, + "deviceId": "3014F7110000000000000023", + "display": "ACTUAL_HUMIDITY", + "functionalChannelType": "WALL_MOUNTED_THERMOSTAT_PRO_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000010" + ], + "humidity": 46, + "vaporAmount": 6.177718198711658, + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 19.0, + "temperatureOffset": 0.0 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000023", + "label": "Wandthermostat", + "lastStatusUpdate": 1524516454116, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 297, + "modelType": "HmIP-WTH-2", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000023", + "type": "WALL_MOUNTED_THERMOSTAT_PRO", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000024": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.8.0", + "firmwareVersionInteger": 67584, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000024", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000004" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -75, + "rssiPeerValue": -85, + "unreach": false + }, + "1": { + "actualTemperature": 23.6, + "deviceId": "3014F7110000000000000024", + "display": "ACTUAL", + "functionalChannelType": "WALL_MOUNTED_THERMOSTAT_PRO_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000007" + ], + "humidity": 45, + "vaporAmount": 6.177718198711658, + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000024", + "label": "Wandthermostat", + "lastStatusUpdate": 1524516436601, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 297, + "modelType": "HmIP-WTH-2", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000024", + "type": "WALL_MOUNTED_THERMOSTAT_PRO", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000025": { + "availableFirmwareVersion": "1.8.0", + "firmwareVersion": "1.8.0", + "firmwareVersionInteger": 67584, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000025", + "dutyCycle": false, + "functionalChannelType": "DEVICE_OPERATIONLOCK", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000020" + ], + "index": 0, + "label": "", + "lowBat": false, + "operationLockActive": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -46, + "rssiPeerValue": -47, + "unreach": false + }, + "1": { + "actualTemperature": 23.8, + "deviceId": "3014F7110000000000000025", + "display": "ACTUAL_HUMIDITY", + "functionalChannelType": "WALL_MOUNTED_THERMOSTAT_PRO_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000021" + ], + "humidity": 47, + "vaporAmount": 6.177718198711658, + "index": 1, + "label": "", + "valveActualTemperature": 20.0, + "setPointTemperature": 5.0, + "temperatureOffset": 0.0 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000025", + "label": "Wandthermostat", + "lastStatusUpdate": 1524516556479, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 297, + "modelType": "HmIP-WTH-2", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F7110000000000000025", + "type": "WALL_MOUNTED_THERMOSTAT_PRO", + "updateState": "UP_TO_DATE" + }, + "3014F7110000000000000029": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.14", + "firmwareVersionInteger": 65550, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F7110000000000000029", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000019" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -46, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "binaryBehaviorType": "NORMALLY_CLOSE", + "deviceId": "3014F7110000000000000029", + "functionalChannelType": "MULTI_MODE_INPUT_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000020" + ], + "index": 1, + "label": "", + "multiModeInputMode": "KEY_BEHAVIOR", + "windowState": "CLOSED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F7110000000000000029", + "label": "Kontakt-Schnittstelle Unterputz – 1-fach", + "lastStatusUpdate": 1547923306429, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 382, + "modelType": "HmIP-FCI1", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F7110000000000000029", + "type": "FULL_FLUSH_CONTACT_INTERFACE", + "updateState": "UP_TO_DATE" + }, + "3014F711AAAA000000000001": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.10", + "firmwareVersionInteger": 65546, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711AAAA000000000001", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -68, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "actualTemperature": 15.4, + "deviceId": "3014F711AAAA000000000001", + "functionalChannelType": "WEATHER_SENSOR_PRO_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-AAAA-0000-0000-000000000001" + ], + "humidity": 65, + "vaporAmount": 6.177718198711658, + "illumination": 4153.0, + "illuminationThresholdSunshine": 10.0, + "index": 1, + "label": "", + "raining": false, + "storm": false, + "sunshine": true, + "todayRainCounter": 6.5, + "todaySunshineDuration": 100, + "totalRainCounter": 6.5, + "totalSunshineDuration": 100, + "weathervaneAlignmentNeeded": false, + "windDirection": 295.0, + "windDirectionVariation": 56.25, + "windSpeed": 2.6, + "windValueType": "AVERAGE_VALUE", + "yesterdayRainCounter": 0.0, + "yesterdaySunshineDuration": 0 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711AAAA000000000001", + "label": "Wettersensor - pro", + "lastStatusUpdate": 1524513950325, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 352, + "modelType": "HmIP-SWO-PR", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711AAAA000000000001", + "type": "WEATHER_SENSOR_PRO", + "updateState": "UP_TO_DATE" + }, + "3014F711AAAA000000000002": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.6", + "firmwareVersionInteger": 65542, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711AAAA000000000002", + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -55, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "actualTemperature": 15.1, + "deviceId": "3014F711AAAA000000000002", + "functionalChannelType": "CLIMATE_SENSOR_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-AAAA-0000-0000-000000000001" + ], + "humidity": 70, + "vaporAmount": 6.177718198711658, + "index": 1, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711AAAA000000000002", + "label": "Temperatur- und Luftfeuchtigkeitssensor - außen", + "lastStatusUpdate": 1524513950325, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 314, + "modelType": "HmIP-STHO", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711AAAA000000000002", + "type": "TEMPERATURE_HUMIDITY_SENSOR_OUTDOOR", + "updateState": "UP_TO_DATE" + }, + "3014F711AAAA000000000003": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.0.10", + "firmwareVersionInteger": 65546, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711AAAA000000000003", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ "00000000-0000-0000-0000-000000000008" ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -77, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "actualTemperature": 15.2, + "deviceId": "3014F711AAAA000000000003", + "functionalChannelType": "WEATHER_SENSOR_CHANNEL", + "groupIndex": 1, + "groups": [ "00000000-AAAA-0000-0000-000000000001" ], + "humidity": 42, + "vaporAmount": 6.177718198711658, + "illumination": 4890.0, + "illuminationThresholdSunshine": 3500.0, + "index": 1, + "label": "", + "storm": false, + "sunshine": true, + "todaySunshineDuration": 51, + "totalSunshineDuration": 54, + "windSpeed": 6.6, + "windValueType": "MAX_VALUE", + "yesterdaySunshineDuration": 3 + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711AAAA000000000003", + "label": "Wettersensor", + "lastStatusUpdate": 1524513950325, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 350, + "modelType": "HmIP-SWO-B", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711AAAA000000000003", + "type": "WEATHER_SENSOR", + "updateState": "UP_TO_DATE" + }, + "3014F711AAAA000000000004": { + "availableFirmwareVersion": "1.2.10", + "firmwareVersion": "1.2.10", + "firmwareVersionInteger": 66058, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711AAAA000000000004", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ "00000000-0000-0000-0000-000000000008" ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -54, + "rssiPeerValue": null, + "sabotage": false, + "unreach": false + }, + "1": { + "deviceId": "3014F711AAAA000000000004", + "eventDelay": 0, + "functionalChannelType": "ROTARY_HANDLE_CHANNEL", + "groupIndex": 1, + "groups": [ "00000000-0000-0000-0000-000000000009" ], + "index": 1, + "label": "", + "windowState": "TILTED" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711AAAA000000000004", + "label": "Fenstergriffsensor", + "lastStatusUpdate": 1524816385462, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 286, + "modelType": "HmIP-SRH", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711AAAA000000000004", + "type": "ROTARY_HANDLE_SENSOR", + "updateState": "UP_TO_DATE" + }, + "3014F711AAAA000000000005": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.4.8", + "firmwareVersionInteger": 66568, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711AAAA000000000005", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -44, + "rssiPeerValue": -42, + "unreach": false + }, + "1": { + "deviceId": "3014F711AAAA000000000005", + "dimLevel": 0.0, + "functionalChannelType": "DIMMER_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000008" + ], + "index": 1, + "label": "", + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711AAAA000000000005", + "label": "Schlafzimmerlicht", + "lastStatusUpdate": 1524816385462, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 290, + "modelType": "HmIP-BDT", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711AAAA000000000005", + "type": "BRAND_DIMMER", + "updateState": "UP_TO_DATE" + }, + "3014F711BBBBBBBBBBBBB017": { + "availableFirmwareVersion": "1.0.19", + "firmwareVersion": "1.0.19", + "firmwareVersionInteger": 65555, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711BBBBBBBBBBBBB017", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -61, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F711BBBBBBBBBBBBB017", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "" + }, + "2": { + "deviceId": "3014F711BBBBBBBBBBBBB017", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 2, + "label": "" + }, + "3": { + "deviceId": "3014F711BBBBBBBBBBBBB017", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [ + ], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F711BBBBBBBBBBBBB017", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [ + ], + "index": 4, + "label": "" + }, + "5": { + "deviceId": "3014F711BBBBBBBBBBBBB017", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 3, + "groups": [ + ], + "index": 5, + "label": "" + }, + "6": { + "deviceId": "3014F711BBBBBBBBBBBBB017", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 3, + "groups": [ + ], + "index": 6, + "label": "" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711BBBBBBBBBBBBB017", + "label": "Wandtaster - 6-fach", + "lastStatusUpdate": 1544475961687, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 300, + "modelType": "HmIP-WRC6", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F711BBBBBBBBBBBBB017", + "type": "PUSH_BUTTON_6", + "updateState": "UP_TO_DATE" + }, + "3014F711BBBBBBBBBBBBB016": { + "availableFirmwareVersion": "1.0.19", + "firmwareVersion": "1.0.19", + "firmwareVersionInteger": 65555, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711BBBBBBBBBBBBB016", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -42, + "rssiPeerValue": null, + "unreach": false + }, + "1": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 1, + "label": "" + }, + "2": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 1, + "groups": [ + ], + "index": 2, + "label": "" + }, + "3": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [ + ], + "index": 3, + "label": "" + }, + "4": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 2, + "groups": [ + ], + "index": 4, + "label": "" + }, + "5": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 3, + "groups": [ + ], + "index": 5, + "label": "" + }, + "6": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 3, + "groups": [ + ], + "index": 6, + "label": "" + }, + "7": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 4, + "groups": [ + ], + "index": 7, + "label": "" + }, + "8": { + "deviceId": "3014F711BBBBBBBBBBBBB016", + "functionalChannelType": "SINGLE_KEY_CHANNEL", + "groupIndex": 4, + "groups": [ + ], + "index": 8, + "label": "" + } + + + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711BBBBBBBBBBBBB016", + "label": "Fernbedienung - 8 Tasten", + "lastStatusUpdate": 1544479483638, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 299, + "modelType": "HmIP-RC8", + "oem": "eQ-3", + "permanentlyReachable": false, + "serializedGlobalTradeItemNumber": "3014F711BBBBBBBBBBBBB016", + "type": "REMOTE_CONTROL_8", + "updateState": "UP_TO_DATE" + }, + "3014F711AAAAAAAAAAAAAA51": { + "availableFirmwareVersion": "1.4.0", + "firmwareVersion": "1.4.0", + "firmwareVersionInteger": 66560, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711AAAAAAAAAAAAAA51", + "dutyCycle": false, + "functionalChannelType": "DEVICE_SABOTAGE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000021", + "00000000-0000-0000-0000-000000000060" + ], + "index": 0, + "label": "", + "lowBat": false, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -62, + "rssiPeerValue": -61, + "sabotage": false, + "unreach": false + }, + "1": { + "currentIllumination": null, + "deviceId": "3014F711AAAAAAAAAAAAAA51", + "functionalChannelType": "PRESENCE_DETECTION_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000022", + "00000000-0000-0000-0000-000000000060" + ], + "illumination": 1.8, + "index": 1, + "label": "", + "motionBufferActive": false, + "motionDetectionSendInterval": "SECONDS_240", + "numberOfBrightnessMeasurements": 7, + "presenceDetected": false + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711AAAAAAAAAAAAAA51", + "label": "SPI_1", + "lastStatusUpdate": 1542758692234, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 303, + "modelType": "HmIP-SPI", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711AAAAAAAAAAAAAA51", + "type": "PRESENCE_DETECTOR_INDOOR", + "updateState": "UP_TO_DATE" + }, + "3014F711ACBCDABCADCA66": { + "availableFirmwareVersion": "1.6.2", + "firmwareVersion": "1.6.2", + "firmwareVersionInteger": 67074, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711ACBCDABCADCA66", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000024" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -78, + "rssiPeerValue": -77, + "unreach": false + }, + "1": { + "bottomToTopReferenceTime": 30.080000000000002, + "changeOverDelay": 0.5, + "delayCompensationValue": 12.7, + "deviceId": "3014F711ACBCDABCADCA66", + "endpositionAutoDetectionEnabled": true, + "functionalChannelType": "SHUTTER_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000069", + "00000000-0000-0000-0000-000000000070" + ], + "index": 1, + "label": "", + "previousShutterLevel": null, + "processing": false, + "profileMode": "AUTOMATIC", + "selfCalibrationInProgress": null, + "shutterLevel": 1.0, + "supportingDelayCompensation": true, + "supportingEndpositionAutoDetection": true, + "supportingSelfCalibration": true, + "topToBottomReferenceTime": 24.68, + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711ACBCDABCADCA66", + "label": "BROLL_1", + "lastStatusUpdate": 1542756558785, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 323, + "modelType": "HmIP-BROLL", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711ACBCDABCADCA66", + "type": "BRAND_SHUTTER", + "updateState": "UP_TO_DATE" + }, + "3014F711BBBBBBBBBBBBB18": { + "availableFirmwareVersion": "0.0.0", + "firmwareVersion": "1.8.12", + "firmwareVersionInteger": 67596, + "functionalChannels": { + "0": { + "configPending": false, + "deviceId": "3014F711BBBBBBBBBBBBB18", + "dutyCycle": false, + "functionalChannelType": "DEVICE_BASE", + "groupIndex": 0, + "groups": [ + "00000000-0000-0000-0000-000000000041" + ], + "index": 0, + "label": "", + "lowBat": null, + "routerModuleEnabled": false, + "routerModuleSupported": false, + "rssiDeviceValue": -35, + "rssiPeerValue": -36, + "unreach": false + }, + "1": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 1, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 1, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "2": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 2, + "groups": [ + "00000000-0000-0000-0000-000000000042", + "00000000-0000-0000-0000-000000000040" + ], + "index": 2, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "3": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 3, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 3, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "4": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 4, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 4, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "5": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 5, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 5, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "6": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 6, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 6, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "7": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 7, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 7, + "label": "", + "on": false, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + }, + "8": { + "deviceId": "3014F711BBBBBBBBBBBBB18", + "functionalChannelType": "SWITCH_CHANNEL", + "groupIndex": 8, + "groups": [ + "00000000-0000-0000-0000-000000000042" + ], + "index": 8, + "label": "", + "on": true, + "profileMode": "AUTOMATIC", + "userDesiredProfileMode": "AUTOMATIC" + } + }, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "3014F711BBBBBBBBBBBBB18", + "label": "ioBroker", + "lastStatusUpdate": 1543746604446, + "liveUpdateState": "LIVE_UPDATE_NOT_SUPPORTED", + "manufacturerCode": 1, + "modelId": 307, + "modelType": "HmIP-MOD-OC8", + "oem": "eQ-3", + "permanentlyReachable": true, + "serializedGlobalTradeItemNumber": "3014F711BBBBBBBBBBBBB18", + "type": "OPEN_COLLECTOR_8_MODULE", + "updateState": "UP_TO_DATE" + } + }, + "groups": { + "00000000-0000-0000-0000-000000000020": { + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000025" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000016" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000050" + } + ], + "configPending": false, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000021" + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000020", + "incorrectPositioned": null, + "label": "Badezimmer", + "lastStatusUpdate": 1524516556479, + "lowBat": false, + "metaGroupId": null, + "sabotage": null, + "type": "META", + "unreach": false + }, + "00000000-0000-0000-0000-000000000012": { + "activeProfile": "PROFILE_1", + "actualTemperature": 24.7, + "boostDuration": 15, + "boostMode": false, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000004" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000022" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000011" + } + ], + "controlMode": "AUTOMATIC", + "controllable": true, + "cooling": false, + "coolingAllowed": false, + "coolingIgnored": false, + "dutyCycle": false, + "ecoAllowed": true, + "ecoIgnored": false, + "externalClockCoolingTemperature": 23.0, + "externalClockEnabled": false, + "externalClockHeatingTemperature": 19.0, + "floorHeatingMode": "FLOOR_HEATING_STANDARD", + "homeId": "00000000-0000-0000-0000-000000000001", + "humidity": 43, + "humidityLimitEnabled": true, + "humidityLimitValue": 60, + "id": "00000000-0000-0000-0000-000000000012", + "label": "Schlafzimmer", + "lastSetPointReachedTimestamp": 1557767559939, + "lastSetPointUpdatedTimestamp": 1557767559939, + "lastStatusUpdate": 1524516534382, + "lowBat": false, + "maxTemperature": 30.0, + "metaGroupId": "00000000-0000-0000-0000-000000000011", + "minTemperature": 5.0, + "partyMode": false, + "profiles": { + "PROFILE_1": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000012", + "index": "PROFILE_1", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000023", + "visible": true + }, + "PROFILE_2": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000012", + "index": "PROFILE_2", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000024", + "visible": true + }, + "PROFILE_3": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000012", + "index": "PROFILE_3", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000025", + "visible": false + }, + "PROFILE_4": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000012", + "index": "PROFILE_4", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000026", + "visible": true + }, + "PROFILE_5": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000012", + "index": "PROFILE_5", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000027", + "visible": true + }, + "PROFILE_6": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000012", + "index": "PROFILE_6", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000028", + "visible": false + } + }, + "setPointTemperature": 5.0, + "type": "HEATING", + "unreach": false, + "valvePosition": 0.0, + "valveSilentModeEnabled": false, + "valveSilentModeSupported": false, + "heatingFailureSupported": true, + "windowOpenTemperature": 5.0, + "windowState": "OPEN" + }, + "00000000-0000-0000-0000-000000000016": { + "active": false, + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000021" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000020" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000007" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000007" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000019" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000018" + } + ], + "configPending": false, + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000016", + "ignorableDevices": [], + "label": "INTERNAL", + "lastStatusUpdate": 1524515489257, + "lowBat": false, + "metaGroupId": null, + "motionDetected": null, + "presenceDetected": null, + "sabotage": false, + "silent": true, + "type": "SECURITY_ZONE", + "unreach": false, + "windowState": "CLOSED", + "zoneAssignmentIndex": "ALARM_MODE_ZONE_3" + }, + "00000000-0000-0000-0000-000000000017": { + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000008" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000009" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000010" + } + ], + "configPending": false, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000018" + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000017", + "incorrectPositioned": null, + "label": "Strom", + "lastStatusUpdate": 1524516554056, + "lowBat": null, + "metaGroupId": null, + "sabotage": null, + "type": "META", + "unreach": false + }, + "00000000-0000-0000-0000-000000000029": { + "channels": [], + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000029", + "label": "HEATING_TEMPERATURE_LIMITER", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "type": "HEATING_TEMPERATURE_LIMITER", + "unreach": null + }, + "00000000-0000-0000-0000-000000000030": { + "boilerFollowUpTime": 0, + "boilerLeadTime": 0, + "channels": [], + "dutyCycle": null, + "heatDemand": null, + "heatDemandRuleEnabled": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000030", + "label": "HEATING_COOLING_DEMAND_BOILER", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "triggered": false, + "type": "HEATING_COOLING_DEMAND_BOILER", + "unreach": null + }, + "00000000-0000-0000-0000-000000000010": { + "activeProfile": "PROFILE_1", + "actualTemperature": 24.5, + "boostDuration": 15, + "boostMode": false, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000001" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000023" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000012" + } + ], + "controlMode": "AUTOMATIC", + "controllable": true, + "cooling": false, + "coolingAllowed": false, + "coolingIgnored": false, + "dutyCycle": false, + "ecoAllowed": true, + "ecoIgnored": false, + "externalClockCoolingTemperature": 23.0, + "externalClockEnabled": false, + "externalClockHeatingTemperature": 19.0, + "floorHeatingMode": "FLOOR_HEATING_STANDARD", + "homeId": "00000000-0000-0000-0000-000000000001", + "humidity": 46, + "humidityLimitEnabled": true, + "humidityLimitValue": 60, + "id": "00000000-0000-0000-0000-000000000010", + "label": "Büro", + "lastSetPointReachedTimestamp": 1557767559939, + "lastSetPointUpdatedTimestamp": 1557767559939, + "lastStatusUpdate": 1524516454116, + "lowBat": false, + "maxTemperature": 30.0, + "metaGroupId": "00000000-0000-0000-0000-000000000008", + "minTemperature": 5.0, + "partyMode": false, + "profiles": { + "PROFILE_1": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000010", + "index": "PROFILE_1", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000031", + "visible": true + }, + "PROFILE_2": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000010", + "index": "PROFILE_2", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000032", + "visible": true + }, + "PROFILE_3": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000010", + "index": "PROFILE_3", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000033", + "visible": false + }, + "PROFILE_4": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000010", + "index": "PROFILE_4", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000034", + "visible": true + }, + "PROFILE_5": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000010", + "index": "PROFILE_5", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000035", + "visible": true + }, + "PROFILE_6": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000010", + "index": "PROFILE_6", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000036", + "visible": false + } + }, + "setPointTemperature": 19.0, + "type": "HEATING", + "unreach": false, + "valvePosition": 0.0, + "valveSilentModeEnabled": false, + "valveSilentModeSupported": false, + "heatingFailureSupported": true, + "windowOpenTemperature": 5.0, + "windowState": "CLOSED" + }, + "00000000-0000-0000-0000-000000000018": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000010" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000009" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000008" + } + ], + "dimLevel": null, + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000018", + "label": "Strom", + "lastStatusUpdate": 1524516554056, + "lowBat": null, + "metaGroupId": "00000000-0000-0000-0000-000000000017", + "on": true, + "processing": null, + "shutterLevel": null, + "slatsLevel": null, + "type": "SWITCHING", + "unreach": false + }, + "00000000-0000-0000-0000-000000000009": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000001" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000019" + } + ], + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000009", + "label": "Büro", + "lastStatusUpdate": 1524515854304, + "lowBat": false, + "metaGroupId": "00000000-0000-0000-0000-000000000008", + "motionDetected": null, + "presenceDetected": null, + "moistureDetected": null, + "waterlevelDetected": null, + "powerMainsFailure": null, + "sabotage": false, + "smokeDetectorAlarmType": "IDLE_OFF", + "type": "SECURITY", + "unreach": false, + "windowState": "CLOSED" + }, + "00000000-0000-0000-0000-000000000013": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000004" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000020" + } + ], + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000013", + "label": "Schlafzimmer", + "lastStatusUpdate": 1524512404032, + "lowBat": false, + "metaGroupId": "00000000-0000-0000-0000-000000000011", + "motionDetected": null, + "presenceDetected": null, + "moistureDetected": null, + "waterlevelDetected": null, + "powerMainsFailure": null, + "sabotage": false, + "smokeDetectorAlarmType": "IDLE_OFF", + "type": "SECURITY", + "unreach": false, + "windowState": "OPEN" + }, + "00000000-0000-0000-0000-000000000005": { + "active": false, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000001" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000002" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000001" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000002" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000003" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000006" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000006" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000003" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000005" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000000" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000004" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000005" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000000" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000004" + } + ], + "configPending": false, + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000005", + "ignorableDevices": [], + "label": "EXTERNAL", + "lastStatusUpdate": 1524516526498, + "lowBat": false, + "metaGroupId": null, + "motionDetected": null, + "presenceDetected": null, + "sabotage": false, + "silent": true, + "type": "SECURITY_ZONE", + "unreach": false, + "windowState": "OPEN", + "zoneAssignmentIndex": "ALARM_MODE_ZONE_2" + }, + "00000000-0000-0000-0000-000000000022": { + "acousticFeedbackEnabled": true, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000020" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000018" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000021" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000019" + } + ], + "dimLevel": null, + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000022", + "label": "SIREN", + "lastStatusUpdate": 1524480981494, + "lowBat": false, + "metaGroupId": null, + "on": false, + "onTime": 180.0, + "signalAcoustic": "FREQUENCY_RISING", + "signalOptical": "DOUBLE_FLASHING_REPEATING", + "smokeDetectorAlarmType": "IDLE_OFF", + "type": "ALARM_SWITCHING", + "unreach": false + }, + "00000000-0000-0000-0000-000000000037": { + "channels": [], + "dimLevel": null, + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000037", + "label": "COMING_HOME", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "type": "LINKED_SWITCHING", + "unreach": null + }, + "00000000-0000-0000-0000-000000000021": { + "activeProfile": "PROFILE_1", + "actualTemperature": 23.8, + "boostDuration": 15, + "boostMode": false, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000025" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000016" + } + ], + "controlMode": "AUTOMATIC", + "controllable": true, + "cooling": false, + "coolingAllowed": false, + "coolingIgnored": false, + "dutyCycle": false, + "ecoAllowed": true, + "ecoIgnored": false, + "externalClockCoolingTemperature": 23.0, + "externalClockEnabled": false, + "externalClockHeatingTemperature": 19.0, + "floorHeatingMode": "FLOOR_HEATING_STANDARD", + "homeId": "00000000-0000-0000-0000-000000000001", + "humidity": 47, + "humidityLimitEnabled": true, + "humidityLimitValue": 60, + "id": "00000000-0000-0000-0000-000000000021", + "label": "Badezimmer", + "lastSetPointReachedTimestamp": 1557767559939, + "lastSetPointUpdatedTimestamp": 1557767559939, + "lastStatusUpdate": 1524516556479, + "lowBat": false, + "maxTemperature": 30.0, + "metaGroupId": "00000000-0000-0000-0000-000000000020", + "minTemperature": 5.0, + "partyMode": false, + "profiles": { + "PROFILE_1": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000021", + "index": "PROFILE_1", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000038", + "visible": true + }, + "PROFILE_2": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000021", + "index": "PROFILE_2", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000039", + "visible": false + }, + "PROFILE_3": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000021", + "index": "PROFILE_3", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000040", + "visible": false + }, + "PROFILE_4": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000021", + "index": "PROFILE_4", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000041", + "visible": true + }, + "PROFILE_5": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000021", + "index": "PROFILE_5", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000042", + "visible": false + }, + "PROFILE_6": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000021", + "index": "PROFILE_6", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000043", + "visible": false + } + }, + "setPointTemperature": 5.0, + "type": "HEATING", + "unreach": false, + "valvePosition": 0.0, + "valveSilentModeEnabled": false, + "valveSilentModeSupported": false, + "heatingFailureSupported": true, + "windowOpenTemperature": 5.0, + "windowState": null + }, + "00000000-0000-0000-0000-000000000006": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000005" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000002" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000000" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000018" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000003" + } + ], + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000006", + "label": "Wohnzimmer", + "lastStatusUpdate": 1524516526498, + "lowBat": false, + "metaGroupId": "00000000-0000-0000-0000-000000000004", + "motionDetected": null, + "presenceDetected": null, + "moistureDetected": null, + "waterlevelDetected": null, + "powerMainsFailure": null, + "sabotage": false, + "smokeDetectorAlarmType": "IDLE_OFF", + "type": "SECURITY", + "unreach": false, + "windowState": "OPEN" + }, + "00000000-0000-0000-0000-000000000044": { + "channels": [], + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000044", + "label": "INBOX", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "type": "INBOX", + "unreach": null + }, + "00000000-0000-0000-0000-000000000045": { + "channels": [], + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000045", + "label": "HEATING_HUMIDITY_LIMITER", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "type": "HEATING_HUMIDITY_LIMITER", + "unreach": null + }, + "00000000-0000-0000-0000-000000000008": { + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000001" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000012" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000023" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000019" + } + ], + "configPending": false, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000010", + "00000000-0000-0000-0000-000000000009" + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000008", + "incorrectPositioned": null, + "label": "Büro", + "lastStatusUpdate": 1524516454116, + "lowBat": false, + "metaGroupId": null, + "sabotage": false, + "type": "META", + "unreach": false + }, + "00000000-0000-0000-0000-000000000011": { + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000022" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000004" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000020" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000011" + } + ], + "configPending": false, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000012", + "00000000-0000-0000-0000-000000000013" + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000011", + "incorrectPositioned": null, + "label": "Schlafzimmer", + "lastStatusUpdate": 1524516534382, + "lowBat": false, + "metaGroupId": null, + "sabotage": false, + "type": "META", + "unreach": false + }, + "00000000-0000-0000-0000-000000000046": { + "channels": [], + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000046", + "label": "HEATING_CHANGEOVER", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "type": "HEATING_CHANGEOVER", + "unreach": null + }, + "00000000-0000-0000-0000-000000000014": { + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000021" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000007" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000006" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000013" + } + ], + "configPending": false, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000015", + "00000000-0000-0000-0000-000000000019" + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000014", + "incorrectPositioned": null, + "label": "Vorzimmer", + "lastStatusUpdate": 1524516489316, + "lowBat": false, + "metaGroupId": null, + "sabotage": false, + "type": "META", + "unreach": false + }, + "00000000-0000-0000-0000-000000000007": { + "activeProfile": "PROFILE_1", + "actualTemperature": 23.6, + "boostDuration": 15, + "boostMode": false, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000005" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000002" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000000" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000024" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000017" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000015" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000014" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000003" + } + ], + "controlMode": "AUTOMATIC", + "controllable": true, + "cooling": false, + "coolingAllowed": false, + "coolingIgnored": false, + "dutyCycle": false, + "ecoAllowed": true, + "ecoIgnored": false, + "externalClockCoolingTemperature": 23.0, + "externalClockEnabled": false, + "externalClockHeatingTemperature": 19.0, + "floorHeatingMode": "FLOOR_HEATING_STANDARD", + "homeId": "00000000-0000-0000-0000-000000000001", + "humidity": 45, + "humidityLimitEnabled": true, + "humidityLimitValue": 60, + "id": "00000000-0000-0000-0000-000000000007", + "label": "Wohnzimmer", + "lastSetPointReachedTimestamp": 1557767559939, + "lastSetPointUpdatedTimestamp": 1557767559939, + "lastStatusUpdate": 1524516526498, + "lowBat": false, + "maxTemperature": 30.0, + "metaGroupId": "00000000-0000-0000-0000-000000000004", + "minTemperature": 5.0, + "partyMode": false, + "profiles": { + "PROFILE_1": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000007", + "index": "PROFILE_1", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000047", + "visible": true + }, + "PROFILE_2": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000007", + "index": "PROFILE_2", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000048", + "visible": true + }, + "PROFILE_3": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000007", + "index": "PROFILE_3", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000049", + "visible": false + }, + "PROFILE_4": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000007", + "index": "PROFILE_4", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000050", + "visible": true + }, + "PROFILE_5": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000007", + "index": "PROFILE_5", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000051", + "visible": true + }, + "PROFILE_6": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000007", + "index": "PROFILE_6", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000052", + "visible": false + } + }, + "setPointTemperature": 5.0, + "type": "HEATING", + "unreach": false, + "valvePosition": 0.0, + "valveSilentModeEnabled": false, + "valveSilentModeSupported": false, + "heatingFailureSupported": true, + "windowOpenTemperature": 5.0, + "windowState": "OPEN" + }, + "00000000-0000-0000-0000-000000000053": { + "channels": [], + "dimLevel": null, + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000053", + "label": "PANIC", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "type": "LINKED_SWITCHING", + "unreach": null + }, + "00000000-0000-0000-0000-000000000054": { + "channels": [], + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000054", + "label": "HEATING_EXTERNAL_CLOCK", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "type": "HEATING_EXTERNAL_CLOCK", + "unreach": null + }, + "00000000-0000-0000-0000-000000000055": { + "channels": [], + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000055", + "label": "HEATING_DEHUMIDIFIER", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "type": "HEATING_DEHUMIDIFIER", + "unreach": null + }, + "00000000-0000-0000-0000-000000000056": { + "acousticFeedbackEnabled": true, + "channels": [], + "dimLevel": null, + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000056", + "label": "ALARM", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "onTime": 7200.0, + "signalAcoustic": "FREQUENCY_RISING", + "signalOptical": "DOUBLE_FLASHING_REPEATING", + "smokeDetectorAlarmType": null, + "type": "ALARM_SWITCHING", + "unreach": null + }, + "00000000-0000-0000-0000-000000000057": { + "channels": [], + "dutyCycle": null, + "heatDemand": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000057", + "label": "HEATING_COOLING_DEMAND_PUMP", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "pumpFollowUpTime": 2, + "pumpLeadTime": 2, + "pumpProtectionDuration": 1, + "pumpProtectionSwitchingInterval": 14, + "type": "HEATING_COOLING_DEMAND_PUMP", + "unreach": null + }, + "00000000-0000-0000-0000-000000000015": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000007" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000006" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000021" + } + ], + "dutyCycle": false, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000015", + "label": "Vorzimmer", + "lastStatusUpdate": 1524516489316, + "lowBat": false, + "metaGroupId": "00000000-0000-0000-0000-000000000014", + "motionDetected": null, + "presenceDetected": null, + "moistureDetected": null, + "waterlevelDetected": null, + "powerMainsFailure": null, + "sabotage": false, + "smokeDetectorAlarmType": "IDLE_OFF", + "type": "SECURITY", + "unreach": false, + "windowState": "CLOSED" + }, + "00000000-0000-0000-0000-000000000004": { + "channels": [ + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000024" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000005" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000002" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000000" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000014" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000003" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000017" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000015" + }, + { + "channelIndex": 0, + "deviceId": "3014F7110000000000000018" + } + ], + "configPending": false, + "dutyCycle": false, + "groups": [ + "00000000-0000-0000-0000-000000000006", + "00000000-0000-0000-0000-000000000007" + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000004", + "incorrectPositioned": null, + "label": "Wohnzimmer", + "lastStatusUpdate": 1524516526498, + "lowBat": false, + "metaGroupId": null, + "sabotage": false, + "type": "META", + "unreach": false + }, + "00000000-0000-0000-0000-000000000019": { + "activeProfile": "PROFILE_1", + "actualTemperature": null, + "boostDuration": 15, + "boostMode": false, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000013" + } + ], + "controlMode": "AUTOMATIC", + "controllable": true, + "cooling": null, + "coolingAllowed": false, + "coolingIgnored": false, + "dutyCycle": false, + "ecoAllowed": true, + "ecoIgnored": false, + "externalClockCoolingTemperature": 23.0, + "externalClockEnabled": false, + "externalClockHeatingTemperature": 19.0, + "floorHeatingMode": "FLOOR_HEATING_STANDARD", + "homeId": "00000000-0000-0000-0000-000000000001", + "humidity": null, + "humidityLimitEnabled": true, + "humidityLimitValue": 60, + "id": "00000000-0000-0000-0000-000000000019", + "label": "Vorzimmer", + "lastSetPointReachedTimestamp": 1557767559939, + "lastSetPointUpdatedTimestamp": 1557767559939, + "lastStatusUpdate": 1524514007132, + "lowBat": false, + "maxTemperature": 30.0, + "metaGroupId": "00000000-0000-0000-0000-000000000014", + "minTemperature": 5.0, + "partyMode": false, + "profiles": { + "PROFILE_1": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000019", + "index": "PROFILE_1", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000058", + "visible": true + }, + "PROFILE_2": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000019", + "index": "PROFILE_2", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000059", + "visible": false + }, + "PROFILE_3": { + "enabled": true, + "groupId": "00000000-0000-0000-0000-000000000019", + "index": "PROFILE_3", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000060", + "visible": false + }, + "PROFILE_4": { + "enabled": false, + "groupId": "00000000-0000-0000-0000-000000000019", + "index": "PROFILE_4", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000061", + "visible": true + }, + "PROFILE_5": { + "enabled": false, + "groupId": "00000000-0000-0000-0000-000000000019", + "index": "PROFILE_5", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000062", + "visible": false + }, + "PROFILE_6": { + "enabled": false, + "groupId": "00000000-0000-0000-0000-000000000019", + "index": "PROFILE_6", + "name": "", + "profileId": "00000000-0000-0000-0000-000000000063", + "visible": false + } + }, + "setPointTemperature": 5.0, + "type": "HEATING", + "unreach": false, + "valvePosition": 0.0, + "valveSilentModeEnabled": false, + "valveSilentModeSupported": false, + "heatingFailureSupported": true, + "windowOpenTemperature": 5.0, + "windowState": null + }, + "00000000-AAAA-0000-0000-000000000001": { + "actualTemperature": 15.4, + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F711AAAA000000000003" + }, + { + "channelIndex": 1, + "deviceId": "3014F711AAAA000000000002" + }, + { + "channelIndex": 1, + "deviceId": "3014F711AAAA000000000001" + } + ], + "homeId": "00000000-0000-0000-0000-000000000001", + "humidity": 65, + "id": "00000000-AAAA-0000-0000-000000000001", + "illumination": 4703.0, + "label": "Terrasse", + "lastStatusUpdate": 1520770214834, + "lowBat": false, + "metaGroupId": "76df95a5-afa5-45ee-b817-f724ffaf04a1", + "raining": false, + "type": "ENVIRONMENT", + "unreach": false, + "windSpeed": 29.1 + }, + "00000000-BBBB-0000-0000-000000000052": { + "channels": [], + "checkInterval": 600, + "dutyCycle": null, + "enabled": true, + "heatingFailureValidationResult": "NO_HEATING_FAILURE", + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-BBBB-0000-0000-000000000052", + "label": "HEATING_FAILURE_ALERT_RULE_GROUP", + "lastExecutionTimestamp": 1550773800084, + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "triggered": false, + "type": "HEATING_FAILURE_ALERT_RULE_GROUP", + "unreach": null, + "validationTimeout": 86400000 + }, + "00000000-AAAA-0000-0000-000000000068": { + "acousticFeedbackEnabled": true, + "channels": [], + "dimLevel": null, + "dutyCycle": null, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-AAAA-0000-0000-000000000068", + "label": "BACKUP_ALARM_SIREN", + "lastStatusUpdate": 0, + "lowBat": null, + "metaGroupId": null, + "on": null, + "onTime": 180.0, + "signalAcoustic": "FREQUENCY_RISING", + "signalOptical": "DISABLE_OPTICAL_SIGNAL", + "smokeDetectorAlarmType": null, + "type": "SECURITY_BACKUP_ALARM_SWITCHING", + "unreach": null + }, + "00000000-0000-0000-AAAA-000000000029": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000023" + } + ], + "dutyCycle": false, + "enabled": true, + "homeId": "00000000-0000-0000-0000-000000000001", + "humidityLowerThreshold": 40, + "humidityUpperThreshold": 60, + "humidityValidationResult": "LESSER_LOWER_THRESHOLD", + "id": "00000000-0000-0000-AAAA-000000000029", + "label": "B\u00fcro", + "lastExecutionTimestamp": 1551387905665, + "lastStatusUpdate": 1551388104260, + "lowBat": false, + "metaGroupId": "00000000-0000-0000-0000-000000000008", + "outdoorClimateSensor": null, + "triggered": false, + "type": "HUMIDITY_WARNING_RULE_GROUP", + "unreach": false, + "ventilationRecommended": true + }, + "00000000-0000-0000-0000-000000000049": { + "channels": [ + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000038" + }, + { + "channelIndex": 1, + "deviceId": "3014F7110000000000000023" + } + ], + "dutyCycle": false, + "enabled": true, + "homeId": "00000000-0000-0000-0000-000000000001", + "humidityLowerThreshold": 30, + "humidityUpperThreshold": 60, + "humidityValidationResult": null, + "id": "00000000-0000-0000-0000-000000000049", + "label": "Schlafzimmer", + "lastExecutionTimestamp": 0, + "lastStatusUpdate": 1551003370150, + "lowBat": false, + "metaGroupId": "00000000-0000-0000-0000-000000000008", + "outdoorClimateSensor": { + "channelIndex": 1, + "deviceId": "3014F7110000000000000038" + }, + "triggered": false, + "type": "HUMIDITY_WARNING_RULE_GROUP", + "unreach": false, + "ventilationRecommended": false + } + }, + "home": { + "apExchangeClientId": null, + "apExchangeState": "NONE", + "availableAPVersion": null, + "carrierSense": null, + "clients": [ + "00000000-0000-0000-0000-000000000000" + ], + "connected": true, + "currentAPVersion": "1.2.4", + "deviceUpdateStrategy": "AUTOMATICALLY_IF_POSSIBLE", + "dutyCycle": 8.0, + "functionalHomes": { + "INDOOR_CLIMATE": { + "absenceEndTime": null, + "absenceType": "NOT_ABSENT", + "active": true, + "coolingEnabled": false, + "ecoDuration": "PERMANENT", + "ecoTemperature": 17.0, + "floorHeatingSpecificGroups": { + "HEATING_CHANGEOVER": "00000000-0000-0000-0000-000000000046", + "HEATING_COOLING_DEMAND_BOILER": "00000000-0000-0000-0000-000000000030", + "HEATING_COOLING_DEMAND_PUMP": "00000000-0000-0000-0000-000000000057", + "HEATING_DEHUMIDIFIER": "00000000-0000-0000-0000-000000000055", + "HEATING_EXTERNAL_CLOCK": "00000000-0000-0000-0000-000000000054", + "HEATING_HUMIDITY_LIMITER": "00000000-0000-0000-0000-000000000045", + "HEATING_TEMPERATURE_LIMITER": "00000000-0000-0000-0000-000000000029" + }, + "functionalGroups": [ + "00000000-0000-0000-0000-000000000012", + "00000000-0000-0000-0000-000000000007", + "00000000-0000-0000-0000-000000000019", + "00000000-0000-0000-0000-000000000010", + "00000000-0000-0000-0000-000000000021" + ], + "optimumStartStopEnabled": false, + "solution": "INDOOR_CLIMATE" + }, + "LIGHT_AND_SHADOW": { + "active": true, + "extendedLinkedShutterGroups": [], + "extendedLinkedSwitchingGroups": [], + "functionalGroups": [ + "00000000-0000-0000-0000-000000000018" + ], + "shutterProfileGroups": [], + "solution": "LIGHT_AND_SHADOW", + "switchingProfileGroups": [] + }, + "SECURITY_AND_ALARM": { + "activationInProgress": false, + "active": true, + "alarmActive": false, + "alarmEventDeviceId": "3014F7110000000000000007", + "alarmEventTimestamp": 1524504122047, + "alarmSecurityJournalEntryType": "SENSOR_EVENT", + "functionalGroups": [ + "00000000-0000-0000-0000-000000000013", + "00000000-0000-0000-0000-000000000006", + "00000000-0000-0000-0000-000000000015", + "00000000-0000-0000-0000-000000000009" + ], + "intrusionAlertThroughSmokeDetectors": false, + "securitySwitchingGroups": { + "ALARM": "00000000-0000-0000-0000-000000000056", + "BACKUP_ALARM_SIREN": "00000000-AAAA-0000-0000-000000000068", + "COMING_HOME": "00000000-0000-0000-0000-000000000037", + "PANIC": "00000000-0000-0000-0000-000000000053", + "SIREN": "00000000-0000-0000-0000-000000000022" + }, + "securityZoneActivationMode": "ACTIVATION_WITH_DEVICE_IGNORELIST", + "securityZones": { + "EXTERNAL": "00000000-0000-0000-0000-000000000005", + "INTERNAL": "00000000-0000-0000-0000-000000000016" + }, + "solution": "SECURITY_AND_ALARM", + "zoneActivationDelay": 0.0 + }, + "WEATHER_AND_ENVIRONMENT": { + "active": true, + "functionalGroups": [ + "00000000-AAAA-0000-0000-000000000001" + ], + "solution": "WEATHER_AND_ENVIRONMENT" + } + }, + "id": "00000000-0000-0000-0000-000000000001", + "inboxGroup": "00000000-0000-0000-0000-000000000044", + "lastReadyForUpdateTimestamp": 1522319489138, + "location": { + "city": "1010 Wien, Österreich", + "latitude": "48.208088", + "longitude": "16.358608" + }, + "metaGroups": [ + "00000000-0000-0000-0000-000000000011", + "00000000-0000-0000-0000-000000000008", + "00000000-0000-0000-0000-000000000014", + "00000000-0000-0000-0000-000000000004", + "00000000-0000-0000-0000-000000000017", + "00000000-0000-0000-0000-000000000020" + ], + "pinAssigned": false, + "powerMeterCurrency": "EUR", + "powerMeterUnitPrice": 0.0, + "ruleGroups": [ + "00000000-0000-0000-0000-000000000057", + "00000000-0000-0000-0000-000000000030" + ], + "ruleMetaDatas": { + "00000000-0000-0000-0000-000000000065": { + "active": true, + "homeId": "00000000-0000-0000-0000-000000000001", + "id": "00000000-0000-0000-0000-000000000065", + "label": "Alarmanlage", + "ruleErrorCategories": [], + "type": "SIMPLE" + } + }, + "timeZoneId": "Europe/Vienna", + "updateState": "UP_TO_DATE", + "voiceControlSettings": { + "allowedActiveSecurityZoneIds": [] + }, + "weather": { + "humidity": 54, + "maxTemperature": 16.6, + "minTemperature": 16.6, + "temperature": 16.6, + "vaporAmount": 5.465858858389302, + "weatherCondition": "LIGHT_CLOUDY", + "weatherDayTime": "NIGHT", + "windDirection": 294, + "windSpeed": 8.568 + } + } +}