1.5. BaseCubeOne

BaseCubeOne (BCO) is a behaviour based smarthome platform and 24/7 running as base component within the CSRA. While this documentation focus on the usage of BCO in the apartment context you can find a more detailed documentation here: http://basecubeone.org

1.5.2. BCO Philosophy of the changing Environment

To be more stable against environmental changes BCO provides a flexible way to perceive the environment via service discovery. By this, hardware devices (e.g. motion-detectors, lights, buttons) as well as bco software components (e.g. apps, scenes, agents) are abstracted via modules called BCO Units. Each BCO Unit provides a set of services where a BCO Service is a kind of interface description of the BCO Unit by defining which states a BCO Unit provides and which operations are available to manipulate the Unit state.

1.5.2.1. What that means?

  • You can interact with any environment without explicit knowledge about those during the time of implementation.

Attention

Do not relay on any Unit labels or scopes because those will definitely change over time (e.g. a light has moved to another location or flobi renamed a light out of personal interest.)

  • If you really want to control a specific BCO Unit (e.g. the recording light) try to create BCO Unit Groups and control those where lights can be flexible added or removed later on. If even this is to complicated for your task please only address Units via its UUID or alias instead hard-coding labels or scopes in your code. For sure scopes are needed if you directly want to control Units via the native bco - rsb interface instead using the dal-remote-lib but than please resolve the scopes via the bco-registry by requesting the scope for the BCO Unit UUID or alias (see section see Simple Unit UUID Resolution).

1.5.3. Service Discovery

The service discovery is one of the most powerful tools of bco. It allows you to request BCO Units, BCO Services at specific locations or just getting a overview about all Unit of a specific type (e.g. light). If you are programming in Java the preferred way is to use the bco.registry.remote API (see. http://basecubeone.org). For all other programming languages like python, lisp or c++ you need to access the registry via its native rsb interface. Those can be printed by using the command bco-print-interface-rsb (see section BCO - RSB Interface).

1.5.3.1. Simple Unit UUID Resolution

Here are some examples to resolve a scope of a Unit via its UUID or alias. For this examples only the native rsb interface is used.

  • RSB Pattern: RPC
  • Unit Registry Scope: /registry/unit/ctrl/
  • Method: getUnitScopeById
  • Method Argument: The Unit UUID as string.
  • Method Return Value: The Unit scope as string.

Bash

rsb-toolscl call '/registry/unit/ctrl/getUnitScopeById("07b909bb-c331-4dec-8a92-4fdb036316c9")'

Python

#!/usr/bin/env python2

import rsb

if __name__ == '__main__':
    with rsb.createRemoteServer("/registry/unit/ctrl") as unit_registry:
        print unit_registry.getUnitScopeById("07b909bb-c331-4dec-8a92-4fdb036316c9")

C++

#include <rsb/Factory.h>

using namespace rsb;
using namespace rsb::patterns;

int main(int /*argc*/, char** /*argv*/) {
    // Use the RSB factory to create a RemoteServer instance for the registry.
    Factory& factory = getFactory();
    RemoteServerPtr remoteServer = factory.createRemoteServer("/registry/unit/ctrl");

    // Resolve the scope via id
    boost::shared_ptr<std::string> scope = remoteServer->call<std::string>("getUnitScopeById", 10);
    std::cout << "Scope: " << *scope << std::endl;
    return EXIT_SUCCESS;
}
  • RSB Pattern: RPC
  • Unit Registry Scope: /registry/unit/ctrl/
  • Method: getUnitScopeByAlias
  • Method Argument: The Unit alias as string.
  • Method Return Value: The Unit scope as string.

Bash

rsb-toolscl call '/registry/unit/ctrl/getUnitScopeByAlias("ColorableLight-1")'

Python

#!/usr/bin/env python2

import rsb

if __name__ == '__main__':
    with rsb.createRemoteServer("/registry/unit/ctrl") as unit_registry:
        print unit_registry.getUnitScopeByAlias("ColorableLight-1")

C++

#include <rsb/Factory.h>

using namespace rsb;
using namespace rsb::patterns;

int main(int /*argc*/, char** /*argv*/) {
    // Use the RSB factory to create a RemoteServer instance for the registry.
    Factory& factory = getFactory();
    RemoteServerPtr remoteServer = factory.createRemoteServer("/registry/unit/ctrl");

    // Resolve the scope via id
    boost::shared_ptr<std::string> scope = remoteServer->call<std::string>("getUnitScopeByAlias", 10);
    std::cout << "Scope: " << *scope << std::endl;
    return EXIT_SUCCESS;
}

1.5.4. Available Units and Services

To get an list of the currently installed sensors/actuators (BCO Units) and there provided functionality (services) you can use the command bco-registry-printer to get a quite nice overview printed.

$ bco-print-registry

===============================================
|  127 x Devices                              |
===============================================
|    1 x Galaxy NotePRO                       |
|    1 x Gira_1045                            |
|    8 x Gira_1046                            |
|    7 x Gira_5133                            |
|    3 x Gira_5142                            |
|    1 x HD Webcam C910                       |
|    1 x Hager_TYA628C                        |
|    3 x Hager_TYA663A                        |
|    6 x Handle                               |
|    5 x Homematic_Sec_RHS                    |
|   12 x Homematic_Sec_SC_2                   |
|    2 x Kinect 2                             |
|   18 x Motion Sensor                        |
|    1 x NUC                                  |
|   27 x Philips Hue E27 Gen1                 |
|    9 x Philips Hue GU10                     |
|    2 x SensFloor                            |
|    2 x SenseFloorUSBReceiver                |
|   18 x Xtion Pro Live                       |
-----------------------------------------------

===============================================
|  683 x Units                                |
===============================================
|   24 x Agent                                |
|    3 x App                                  |
|   20 x AudioSource                          |
|   35 x Battery                              |
|   54 x Button                               |
|   42 x ColorableLight                       |
|   16 x Connection                           |
|  127 x Device                               |
|   42 x DimmableLight                        |
|    9 x Dimmer                               |
|    5 x Handle                               |
|   51 x Light                                |
|   18 x LightSensor                          |
|   26 x Location                             |
|   18 x MotionDetector                       |
|    3 x Object                               |
|   68 x PowerConsumptionSensor               |
|   68 x PowerSwitch                          |
|   18 x ReedContact                          |
|    8 x RollerShutter                        |
|   26 x Scene                                |
|   18 x TamperDetector                       |
|    3 x TemperatureController                |
|   18 x TemperatureSensor                    |
|    7 x UnitGroup                            |
|    8 x User                                 |
|   20 x VideoDepthSource                     |
|   21 x VideoRgbSource                       |
-----------------------------------------------

===============================================
| 1395 x Services                             |
===============================================
|  106 x ActivationStateService               |
|   35 x BatteryStateService                  |
|   68 x BlindStateService                    |
|  154 x BrightnessStateService               |
|   54 x ButtonStateService                   |
|  150 x ColorStateService                    |
|   18 x ContactStateService                  |
|   16 x DoorStateService                     |
|    5 x HandleStateService                   |
|   44 x IlluminanceStateService              |
|   44 x MotionStateService                   |
|   16 x PassageStateService                  |
|   94 x PowerConsumptionStateService         |
|  304 x PowerStateService                    |
|   26 x PresenceStateService                 |
|   26 x SmokeAlarmStateService               |
|   26 x SmokeStateService                    |
|   52 x StandbyStateService                  |
|   18 x TamperStateService                   |
|   58 x TargetTemperatureStateService        |
|   18 x TemperatureAlarmStateService         |
|   47 x TemperatureStateService              |
|   16 x WindowStateService                   |
-----------------------------------------------

Additionally you can use the tool bco-query to query Units by there properties like “id” “unit_type” “scope” or “location”. To get more details how to use the query tool just type bco-query --help.

Example: Print all available lights.

    $ bco-query light

resolved by unit type:

f7d09b74-2f08-46ae-b3b9-c1f6fc8c8ed2  [ ColorableLight-4                       ]            LLampEntrance1 @ Control      [ /citec/csra/control/colorablelight/llampentrance1/                ]
de6a3463-5a99-4162-851c-b535a26b6de8  [ ColorableLight-8                       ]            LLampEntrance3 @ Control      [ /citec/csra/control/colorablelight/llampentrance3/                ]
bc243f30-f924-4348-b48e-2328aeb39da1  [ ColorableLight-6                       ]            LLampEntrance6 @ Control      [ /citec/csra/control/colorablelight/llampentrance6/                ]
f1397800-9741-401d-a46f-8bf139c12e92  [ ColorableLight-7, WaterNotifierLight   ]                TestUnit_0 @ Control      [ /citec/csra/control/colorablelight/testunit_0/                    ]
0529ab14-ea69-4c54-9e7a-2288f7b0a5ec  [ ColorableLight-21                      ]                  Global_1 @ Bath         [ /citec/csra/home/bath/colorablelight/global_1/                    ]
b71892c9-cb68-4f6c-9e1b-8837d3c28e1e  [ ColorableLight-32                      ]                  Global_2 @ Bath         [ /citec/csra/home/bath/colorablelight/global_2/                    ]
efa33b37-8809-4483-beed-480fd9b50446  [ ColorableLight-13                      ]                  Global_3 @ Bath         [ /citec/csra/home/bath/colorablelight/global_3/                    ]
31b4fd8f-6355-49c2-90bc-039e92d602f0  [ ColorableLight-39                      ]                  Global 4 @ Bath         [ /citec/csra/home/bath/colorablelight/global_4/                    ]
12244433-e7e6-47a4-9d54-ec74edc00c15  [ ColorableLight-3                       ]                    LLamp1 @ Bath         [ /citec/csra/home/bath/colorablelight/llamp1/                      ]
ec3c5b11-a915-49fa-ae54-787c2fa006c9  [ ColorableLight-25                      ]                    LLamp3 @ Bath         [ /citec/csra/home/bath/colorablelight/llamp3/                      ]
afa64bbf-7e9c-40fe-a6a7-a368c8a01eaf  [ ColorableLight-12                      ]                    LLamp6 @ Bath         [ /citec/csra/home/bath/colorablelight/llamp6/                      ]
9dc9a103-5c4b-4e65-8f97-3082fcd1801d  [ ColorableLight-33                      ]                    SLamp1 @ Bath         [ /citec/csra/home/bath/colorablelight/slamp1/                      ]
020cf35d-e6a9-4af8-9f3c-16184dff8d36  [ ColorableLight-37                      ]                    SLamp2 @ Bath         [ /citec/csra/home/bath/colorablelight/slamp2/                      ]
acfc8c85-b647-4666-bc00-a83386f5db82  [ Dimmer-8                               ]                    Dimmer @ Bath         [ /citec/csra/home/bath/dimmer/dimmer/                              ]
844a5b35-4b9c-4db2-9d22-4842db77bc95  [ ColorableLight-14                      ]              StudTestLamp @ Home         [ /citec/csra/home/colorablelight/studtestlamp/                     ]
51a38d12-35d5-49a4-9f73-35822c8aeb89  [ ColorableLight-38                      ]                 Hallway_0 @ Hallway      [ /citec/csra/home/hallway/colorablelight/hallway_0/                ]
f870b339-76c8-4d29-bada-abb04f75956d  [ ColorableLight-34                      ]                 Hallway_1 @ Hallway      [ /citec/csra/home/hallway/colorablelight/hallway_1/                ]
a70e0552-0012-4ea8-b88b-b6c1774e85f0  [ Dimmer-3                               ]            EntranceDimmer @ Hallway      [ /citec/csra/home/hallway/dimmer/entrancedimmer/                   ]
b0daa651-4556-4970-b6be-c8c0b8d33caa  [ Dimmer-5                               ]             PathwayDimmer @ Hallway      [ /citec/csra/home/hallway/dimmer/pathwaydimmer/                    ]
8e919ea0-26ca-4e31-b650-b00a2101320a  [ ColorableLight-43, cupboard1           ]                       501 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/501/                      ]
56d96b1e-e9d6-4682-a105-fa4e12b129fe  [ ColorableLight-22                      ]                       502 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/502/                      ]
72ad4c6b-80f7-431a-bf2e-31ff58066426  [ ColorableLight-23                      ]                       503 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/503/                      ]
6a347801-c3e6-4893-a841-9b8d3577abfa  [ ColorableLight-2, drawer2              ]                       504 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/504/                      ]
e83686fd-99bc-44a0-9170-e6166598a95c  [ ColorableLight-28, drawer1             ]                       505 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/505/                      ]
79c495a1-cb54-4eb8-9047-f09a3b97b720  [ ColorableLight-18, cupboard2           ]                       506 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/506/                      ]
8d310f30-d60a-4627-8884-373c5e2dcbdd  [ ColorableLight-24                      ]             CeilingLamp 1 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_1/            ]
96891f9d-e7f2-449d-9871-a2d317214295  [ ColorableLight-10                      ]             CeilingLamp 2 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_2/            ]
48e43d6f-0015-40b3-895b-0ff33d4a74a4  [ ColorableLight-5                       ]             CeilingLamp 3 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_3/            ]
9c3561a1-e6ce-476e-9bff-0d35807d2607  [ ColorableLight-29                      ]             CeilingLamp 4 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_4/            ]
1c667ff0-8c5f-48d2-b467-9669c30c4578  [ Dimmer-6                               ]                    Dimmer @ Kitchen      [ /citec/csra/home/kitchen/dimmer/dimmer/                           ]
66b5b93f-9f33-4d7d-8e61-5951a22f5483  [ ColorableLight-17                      ]                 CouchLamp @ Living       [ /citec/csra/home/living/colorablelight/couchlamp/                 ]
8f7b2513-4f33-4e8d-8b7e-eced4d54108c  [ ColorableLight-30                      ]                    LLamp1 @ Living       [ /citec/csra/home/living/colorablelight/llamp1/                    ]
584bdf80-a86a-41ae-b074-f543d90b5628  [ ColorableLight-35                      ]                    LLamp3 @ Living       [ /citec/csra/home/living/colorablelight/llamp3/                    ]
c8b2bfb5-45d9-4a2b-9994-d4062ab19cab  [ ColorableLight-27                      ]                    LLamp6 @ Living       [ /citec/csra/home/living/colorablelight/llamp6/                    ]
fa3f910a-3c47-4691-a230-32e75909d371  [ ColorableLight-19                      ]                SLampLeft1 @ Living       [ /citec/csra/home/living/colorablelight/slampleft1/                ]
34ca3b1a-417b-4c6c-bca0-3e8e77aacf9a  [ ColorableLight-41                      ]                SLampLeft2 @ Living       [ /citec/csra/home/living/colorablelight/slampleft2/                ]
1e40044f-3b9f-4e5c-ae65-f7a37a462a92  [ ColorableLight-40                      ]               SLampRight1 @ Living       [ /citec/csra/home/living/colorablelight/slampright1/               ]
2ca45216-ac17-4086-9e6c-f2a656f8b28d  [ ColorableLight-20                      ]               SLampRight2 @ Living       [ /citec/csra/home/living/colorablelight/slampright2/               ]
dccc86dc-f764-4602-8ad4-945bf6851581  [ Dimmer-7                               ]      CeilingCentralDimmer @ Living       [ /citec/csra/home/living/dimmer/ceilingcentraldimmer/              ]
9b27299f-522f-4b62-854a-187d3909d5a9  [ Dimmer-1                               ]               TableDimmer @ Living       [ /citec/csra/home/living/dimmer/tabledimmer/                       ]
e0ed255a-21c1-4293-9283-f0ddc3aa242a  [ ColorableLight-9                       ]                   Table_0 @ Dining       [ /citec/csra/home/living/dining/colorablelight/table_0/            ]
cdfa87e9-1c07-40f7-9acc-9e349a81f619  [ ColorableLight-16                      ]                   Table_1 @ Dining       [ /citec/csra/home/living/dining/colorablelight/table_1/            ]
47e63f5a-ff30-4b0d-905a-815f94aa8b50  [ ColorableLight-26                      ]        CeilingCentralLamp @ Lounge       [ /citec/csra/home/living/lounge/colorablelight/ceilingcentrallamp/ ]
2ca1b701-cfde-4570-83de-46610e6718fc  [ ColorableLight-11                      ]         CeilingWindowLamp @ Lounge       [ /citec/csra/home/living/lounge/colorablelight/ceilingwindowlamp/  ]
7e479546-e973-42cc-bc03-8a673bfceb70  [ Dimmer-9                               ]       CeilingWindowDimmer @ Lounge       [ /citec/csra/home/living/lounge/dimmer/ceilingwindowdimmer/        ]
80562845-b451-4f43-ab83-3236611c4c84  [ ColorableLight-31                      ]              SLampWindow1 @ RobotRoom    [ /citec/csra/robotroom/colorablelight/slampwindow1/                ]
471470f4-2f37-4cef-9b6b-0299631b0690  [ ColorableLight-15                      ]              SLampWindow2 @ RobotRoom    [ /citec/csra/robotroom/colorablelight/slampwindow2/                ]
932b4f48-59d9-474a-b83e-82c4218b5ecf  [ ColorableLight-1                       ]  Table Corner Lamp Bottom @ RobotRoom    [ /citec/csra/robotroom/colorablelight/table_corner_lamp_bottom/    ]
0b26889b-ff0a-4ba0-98ac-51a481c6b559  [ ColorableLight-36                      ]     Table Corner Lamp Top @ RobotRoom    [ /citec/csra/robotroom/colorablelight/table_corner_lamp_top/       ]
fd3443a8-8c3e-4894-ae1b-32c5dcb1b095  [ Dimmer-2                               ]               RightDimmer @ RobotRoom    [ /citec/csra/robotroom/dimmer/rightdimmer/                         ]
fec3cb67-ab1a-4f5d-8ea3-7e3c5d68a287  [ Dimmer-4                               ]                LeftDimmer @ Interaction  [ /citec/csra/robotroom/interaction/dimmer/leftdimmer/              ]

Example: Print all available BCO Units:

$ bco-query

1cd2120f-7171-4cbf-80b6-be52ad3a122b  [ Location-18                                               ]                                 Citec @ Citec        [ /citec/                                                                                              ]
a2e5e403-7121-48b9-837a-b93a944ccd29  [ Connection-1                                              ]               Apartment Entrance Door @ Citec        [ /citec/connection/apartment_entrance_door/                                                           ]
4d9e02bd-2164-4a78-954d-490de4c51b19  [ Connection-9                                              ]                 Control Entrance Door @ Citec        [ /citec/connection/control_entrance_door/                                                             ]
725fffa8-5865-45bd-8684-f722d140255a  [ Connection-4                                              ]                        Kitchen Window @ Citec        [ /citec/connection/kitchen_window/                                                                    ]
80ab9ff7-9b18-4d3d-a960-0b5d28d908a6  [ Connection-16                                             ]                   Left Control Window @ Citec        [ /citec/connection/left_control_window/                                                               ]
980ca3c5-96d3-4502-a6cb-878d8af4e986  [ Connection-6                                              ]                  Living Window Center @ Citec        [ /citec/connection/living_window_center/                                                              ]
76f70d60-3a2e-491c-bd78-3b98dfb87202  [ Connection-5                                              ]                    Living Window Left @ Citec        [ /citec/connection/living_window_left/                                                                ]
80fc4d70-badb-4208-814b-ef4d59b69d13  [ Connection-8                                              ]                   Living Window Right @ Citec        [ /citec/connection/living_window_right/                                                               ]
61015a31-89ec-4a8f-9f43-95830ebe9cc3  [ Connection-14                                             ]                  Right Control Window @ Citec        [ /citec/connection/right_control_window/                                                              ]
dc0cf9bf-c712-42fb-b5f9-39df24d31a4e  [ Connection-10                                             ]                         Sports Window @ Citec        [ /citec/connection/sports_window/                                                                     ]
7a5cb343-cfaa-4ae8-8170-4637834ca0ab  [ Location-20                                               ]                                  CSRA @ Citec        [ /citec/csra/                                                                                         ]
461a85e4-a688-4cc9-b7ae-3634caf1169c  [ Connection-11                                             ]                  Introspection Window @ CSRA         [ /citec/csra/connection/introspection_window/                                                         ]
78ded5dd-20b5-4953-bec4-1bae76ef9bec  [ Connection-3                                              ]                 Living to Sports Door @ CSRA         [ /citec/csra/connection/living_to_sports_door/                                                        ]
cbe163eb-94f2-47c2-952b-9f9c7384e4ed  [ Connection-2                                              ]                Sports to Control Door @ CSRA         [ /citec/csra/connection/sports_to_control_door/                                                       ]
511adfec-43ed-47f5-bd4d-28f46dc1b5a4  [ Location-12                                               ]                               Control @ CSRA         [ /citec/csra/control/                                                                                 ]
53712aee-7065-4672-b5b4-95a1f4b31b32  [ Agent-8                                                   ]                    StandbyControlRoom @ Control      [ /citec/csra/control/agent/standby/standbycontrolroom/                                                ]
ae5eca72-d58b-48b5-a2d7-4ec12d157d2d  [ Battery-1                                                 ]                 ControlDoorReedSwitch @ Control      [ /citec/csra/control/battery/controldoorreedswitch/                                                   ]
0139a90c-2969-4dc7-8597-7185dbe4d3e8  [ Battery-27                                                ]                LeftWindowHandleSensor @ Control      [ /citec/csra/control/battery/leftwindowhandlesensor/                                                  ]
daa2afcd-a0b2-4b50-a124-daa7d8eee96e  [ Battery-31                                                ]                  LeftWindowReedSwitch @ Control      [ /citec/csra/control/battery/leftwindowreedswitch/                                                    ]
d45e9c08-5f84-4e22-9a65-e288c21a5f02  [ Battery-22                                                ]               RightWindowHandleSensor @ Control      [ /citec/csra/control/battery/rightwindowhandlesensor/                                                 ]
0fd58bf2-fec4-4675-8388-24d1fe42f9c1  [ Battery-28                                                ]                 RightWindowReedSwitch @ Control      [ /citec/csra/control/battery/rightwindowreedswitch/                                                   ]
5964181e-adad-4306-a1bb-c89eb86b4d82  [ Location-34                                               ]                                Center @ Control      [ /citec/csra/control/center/                                                                          ]
ec7c6425-08b9-4d00-baee-89f7864d5697  [ Battery-38                                                ]                                Center @ Center       [ /citec/csra/control/center/battery/center/                                                           ]
7cb34db5-0475-4662-8692-ad78e5d4abec  [ Device-129                                                ]                                Center @ Center       [ /citec/csra/control/center/device/center/                                                            ]
a2e12d4d-2ff1-470b-9801-255d7324f33f  [ LightSensor-21                                            ]                                Center @ Center       [ /citec/csra/control/center/lightsensor/center/                                                       ]
e1cc3c59-24da-4ece-bf3a-ca75b5dcef74  [ MotionDetector-21                                         ]                                Center @ Center       [ /citec/csra/control/center/motiondetector/center/                                                    ]
3ff1d1fc-dbf2-4093-9358-ca76975735c8  [ TamperDetector-21                                         ]                                Center @ Center       [ /citec/csra/control/center/tamperdetector/center/                                                    ]
c88d41a8-486f-47c5-b77f-699fe6abebb8  [ TemperatureSensor-21                                      ]                                Center @ Center       [ /citec/csra/control/center/temperaturesensor/center/                                                 ]
f7d09b74-2f08-46ae-b3b9-c1f6fc8c8ed2  [ ColorableLight-4                                          ]                        LLampEntrance1 @ Control      [ /citec/csra/control/colorablelight/llampentrance1/                                                   ]
de6a3463-5a99-4162-851c-b535a26b6de8  [ ColorableLight-8                                          ]                        LLampEntrance3 @ Control      [ /citec/csra/control/colorablelight/llampentrance3/                                                   ]
bc243f30-f924-4348-b48e-2328aeb39da1  [ ColorableLight-6                                          ]                        LLampEntrance6 @ Control      [ /citec/csra/control/colorablelight/llampentrance6/                                                   ]
f1397800-9741-401d-a46f-8bf139c12e92  [ ColorableLight-7, WaterNotifierLight                      ]                            TestUnit_0 @ Control      [ /citec/csra/control/colorablelight/testunit_0/                                                       ]
6d54b9f5-ef2e-41a8-a4ad-64b78be339e1  [ Device-86                                                 ]                 ControlDoorReedSwitch @ Control      [ /citec/csra/control/device/controldoorreedswitch/                                                    ]
168952c1-1821-4aa6-b742-3d2213709d17  [ Device-69                                                 ]                         DimmActuator1 @ Control      [ /citec/csra/control/device/dimmactuator1/                                                            ]
f34a0c05-df62-41a8-a282-774390baa660  [ Device-66                                                 ]                         DimmActuator3 @ Control      [ /citec/csra/control/device/dimmactuator3/                                                            ]
f3857eeb-c0c5-466c-afe6-c7693212c96f  [ Device-57                                                 ]         Hager_TYA628C_397290922010000 @ Control      [ /citec/csra/control/device/hager_tya628c_397290922010000/                                            ]
ccf98e11-774e-4805-b55b-e922e72a2b69  [ Device-116                                                ]                LeftWindowHandleSensor @ Control      [ /citec/csra/control/device/leftwindowhandlesensor/                                                   ]
1d92803a-89f8-4be3-817c-f843b9cd7ff6  [ Device-33                                                 ]                  LeftWindowReedSwitch @ Control      [ /citec/csra/control/device/leftwindowreedswitch/                                                     ]
92f01101-0577-4f49-8ca1-cfb5e6486874  [ Device-2                                                  ]                        LLampEntrance1 @ Control      [ /citec/csra/control/device/llampentrance1/                                                           ]
d2c11637-fb4f-4eb7-9cca-78174c7f0072  [ Device-42                                                 ]                        LLampEntrance3 @ Control      [ /citec/csra/control/device/llampentrance3/                                                           ]
d2d7b31e-b69c-4c10-967e-a3ec2b8dd2e2  [ Device-105                                                ]                        LLampEntrance6 @ Control      [ /citec/csra/control/device/llampentrance6/                                                           ]
f263f1ff-b50d-4ac7-b6c1-67e43665a59d  [ Device-103                                                ]               RightWindowHandleSensor @ Control      [ /citec/csra/control/device/rightwindowhandlesensor/                                                  ]
fb8b55f3-fb9a-4a6e-bd2b-7d2e5212c37e  [ Device-62                                                 ]                 RightWindowReedSwitch @ Control      [ /citec/csra/control/device/rightwindowreedswitch/                                                    ]
01bbbce7-fa7d-4215-9105-fc44f9d6ead1  [ Device-98                                                 ]                                    S1 @ Control      [ /citec/csra/control/device/s1/                                                                       ]
16e01132-facc-4138-b658-8cd6ef565885  [ Device-102                                                ]                                    S2 @ Control      [ /citec/csra/control/device/s2/                                                                       ]
64da2fb2-aca7-4791-a5c1-e389a7361c05  [ Device-56                                                 ]                                    S3 @ Control      [ /citec/csra/control/device/s3/                                                                       ]
37a90769-5743-47fc-b843-3367bd531db9  [ Device-50                                                 ]                                    S4 @ Control      [ /citec/csra/control/device/s4/                                                                       ]
4864704e-34dc-4123-acb8-fd1abbb90108  [ Device-94                                                 ]                                    S5 @ Control      [ /citec/csra/control/device/s5/                                                                       ]
8b7ed2aa-5585-46dc-9ef8-897b4a3f781e  [ Device-52                                                 ]                                    S6 @ Control      [ /citec/csra/control/device/s6/                                                                       ]
cd51b92f-3429-4666-8418-079f81af4ecb  [ Device-41                                                 ]                                    S7 @ Control      [ /citec/csra/control/device/s7/                                                                       ]
1505075c-a4a9-41d7-958a-556cdf7b73ac  [ Device-70                                                 ]                                    S8 @ Control      [ /citec/csra/control/device/s8/                                                                       ]
b70175fd-6780-483e-98e1-3b4a17960a5b  [ Device-14                                                 ]                                    S9 @ Control      [ /citec/csra/control/device/s9/                                                                       ]
e8f600ad-2443-4c19-85e0-fcb341e8f63d  [ Device-48                                                 ]                            TestUnit_0 @ Control      [ /citec/csra/control/device/testunit_0/                                                               ]
0254b92b-1996-4e4d-818c-a7a8fc2f6981  [ Location-38                                               ]                              Entrance @ Control      [ /citec/csra/control/entrance/                                                                        ]
9de9d33e-4e32-4b3e-bae2-408753909e7b  [ Battery-33                                                ]                              Entrance @ Entrance     [ /citec/csra/control/entrance/battery/entrance/                                                       ]
d75030ec-82bd-42d7-9960-3ff2bbd21965  [ Device-26                                                 ]                              Entrance @ Entrance     [ /citec/csra/control/entrance/device/entrance/                                                        ]
b8411b04-3abf-4f14-b4b5-11a58729ebed  [ LightSensor-6                                             ]                              Entrance @ Entrance     [ /citec/csra/control/entrance/lightsensor/entrance/                                                   ]
07b909bb-c331-4dec-8a92-4fdb036316c9  [ MotionDetector-6                                          ]                              Entrance @ Entrance     [ /citec/csra/control/entrance/motiondetector/entrance/                                                ]
b099fa1e-a4b8-4665-b7cf-e01701161eb3  [ TamperDetector-13                                         ]                              Entrance @ Entrance     [ /citec/csra/control/entrance/tamperdetector/entrance/                                                ]
08e54371-ed6d-4d87-9328-7a9e2c82666f  [ TemperatureSensor-11                                      ]                              Entrance @ Entrance     [ /citec/csra/control/entrance/temperaturesensor/entrance/                                             ]
67f8009d-7930-4edc-bd38-efb750c07a97  [ Handle-1                                                  ]                LeftWindowHandleSensor @ Control      [ /citec/csra/control/handle/leftwindowhandlesensor/                                                   ]
690cd512-c5cf-4163-a5e4-54829e90f0c7  [ Handle-2                                                  ]               RightWindowHandleSensor @ Control      [ /citec/csra/control/handle/rightwindowhandlesensor/                                                  ]
a0e5db25-4698-416d-87c1-6f9f4e14261a  [ PowerConsumptionSensor-54                                 ]                     S1_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c1_consumption/                                        ]
2851cbd4-4c67-4555-8de1-284ad7707303  [ PowerConsumptionSensor-63                                 ]                     S1_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c2_consumption/                                        ]
613cfbee-c473-421e-96d0-ee1de531f7b5  [ PowerConsumptionSensor-46                                 ]                     S1_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c3_consumption/                                        ]
ff0a60a0-4df0-4249-b23b-05478b70ef22  [ PowerConsumptionSensor-34                                 ]                     S1_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c4_consumption/                                        ]
2aeae649-08f5-4b7d-84cf-27e22c073119  [ PowerConsumptionSensor-43                                 ]                     S1_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c5_consumption/                                        ]
7219729b-5ae7-41b7-b3ea-804ea07acd37  [ PowerConsumptionSensor-10                                 ]                     S1_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c6_consumption/                                        ]
c665afeb-6409-44a2-91f0-9a39fd04e8d3  [ PowerConsumptionSensor-67                                 ]                     S1_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c7_consumption/                                        ]
594d8b86-030a-4f48-922e-d9ebdfaea8e3  [ PowerConsumptionSensor-20                                 ]                     S1_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s1_c8_consumption/                                        ]
279ba1d0-fa1a-4711-9ed9-eaf2e7947132  [ PowerConsumptionSensor-31                                 ]                     S2_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c1_consumption/                                        ]
46a4b800-27d8-4afb-98cc-9af4d469e57b  [ PowerConsumptionSensor-51                                 ]                     S2_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c2_consumption/                                        ]
9529a8d2-0318-4c48-9898-96f2beacf010  [ PowerConsumptionSensor-60                                 ]                     S2_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c3_consumption/                                        ]
ef443efd-3a01-47c7-a4cb-21072e47e750  [ PowerConsumptionSensor-8                                  ]                     S2_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c4_consumption/                                        ]
7af80d2b-f808-4f87-b6b1-d9fca3e4979e  [ PowerConsumptionSensor-59                                 ]                     S2_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c5_consumption/                                        ]
b735b5bf-601e-44de-8979-9b9565940e06  [ PowerConsumptionSensor-6                                  ]                     S2_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c6_consumption/                                        ]
2a136b80-936e-43f0-a0e9-80ce35a3183b  [ PowerConsumptionSensor-17                                 ]                     S2_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c7_consumption/                                        ]
827f269b-f36b-49aa-95e9-eb89d87d1492  [ PowerConsumptionSensor-33                                 ]                     S2_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s2_c8_consumption/                                        ]
4008d70c-b500-4405-b8d6-1da0a82c84f3  [ PowerConsumptionSensor-50                                 ]                     S3_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s3_c3_consumption/                                        ]
b4327592-9404-454d-b50c-63a8c6420125  [ PowerConsumptionSensor-30                                 ]                     S3_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s3_c4_consumption/                                        ]
2a4b9d77-f1f7-4113-a622-7ebd67738da7  [ PowerConsumptionSensor-68                                 ]                     S3_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s3_c5_consumption/                                        ]
d9609f82-0cfc-4ae2-b6ca-b08ade0372cb  [ PowerConsumptionSensor-44                                 ]                     S3_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s3_c6_consumption/                                        ]
c69dc31e-4a40-44f9-9abc-5cccc111a8b5  [ PowerConsumptionSensor-65                                 ]                     S3_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s3_c7_consumption/                                        ]
f2054772-83be-4f6e-be3f-908e161d64a2  [ PowerConsumptionSensor-13                                 ]                     S3_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s3_c8_consumption/                                        ]
7012a0f7-f9c2-4b8c-87c4-695fe61fa9a4  [ PowerConsumptionSensor-40                                 ]                     S4_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c1_consumption/                                        ]
e7daf445-5938-417c-9797-acd2e80e89c1  [ PowerConsumptionSensor-4                                  ]                     S4_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c3_consumption/                                        ]
ffa1959a-d896-4774-8a5d-79cc7e2f37ba  [ PowerConsumptionSensor-19                                 ]                     S4_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c4_consumption/                                        ]
5c91aeb3-8e1d-4154-a7db-084c07a0c47e  [ PowerConsumptionSensor-36                                 ]                     S4_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c5_consumption/                                        ]
cb30e512-af92-4b74-8ff3-6023c06f640d  [ PowerConsumptionSensor-64                                 ]                     S4_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c6_consumption/                                        ]
e337123c-738a-4d23-a7ca-54cdefa4aaaf  [ PowerConsumptionSensor-5                                  ]                     S4_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c7_consumption/                                        ]
b6a2e47f-1054-4896-8e71-49825e0f2b15  [ PowerConsumptionSensor-58                                 ]                     S4_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s4_c8_consumption/                                        ]
03da93f1-d0bc-4a80-aede-3afa05e8ac29  [ PowerConsumptionSensor-41                                 ]                     S5_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c1_consumption/                                        ]
1c17e6f8-ae1a-4348-9444-2145e1238dca  [ PowerConsumptionSensor-23                                 ]                     S5_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c2_consumption/                                        ]
2074ca6a-c8df-4e93-b19d-3f1544a85fe7  [ PowerConsumptionSensor-11                                 ]                     S5_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c3_consumption/                                        ]
576ee956-89bd-4b26-87f8-aef7a7162533  [ PowerConsumptionSensor-1                                  ]                     S5_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c4_consumption/                                        ]
035c97c4-fcc3-43e1-ac32-94a3da5a50fb  [ PowerConsumptionSensor-7                                  ]                     S5_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c5_consumption/                                        ]
2987896f-8994-4887-9778-f44abb767392  [ PowerConsumptionSensor-39                                 ]                     S5_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c6_consumption/                                        ]
f1533557-43df-4bbe-9795-47afb0734639  [ PowerConsumptionSensor-62                                 ]                     S5_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c7_consumption/                                        ]
7f61cec5-75b6-4a07-b4ab-d6c5b22d7744  [ PowerConsumptionSensor-18                                 ]                     S5_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s5_c8_consumption/                                        ]
a85d3935-eea4-4109-adca-a41d6d2b3226  [ PowerConsumptionSensor-55                                 ]                     S6_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c1_consumption/                                        ]
c2353ea7-20b1-4ce0-a3dc-77dc555e28fe  [ PowerConsumptionSensor-45                                 ]                     S6_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c2_consumption/                                        ]
dff6ef7d-21d8-4dbd-a616-6eeb79649ad0  [ PowerConsumptionSensor-57                                 ]                     S6_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c4_consumption/                                        ]
90a743bb-f534-4043-aede-875d3bfff0e8  [ PowerConsumptionSensor-28                                 ]                     S6_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c5_consumption/                                        ]
9be18965-ae35-4f9a-b0ef-3bc0b6bcc9a8  [ PowerConsumptionSensor-35                                 ]                     S6_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c6_consumption/                                        ]
082fb5d5-bf66-416c-8411-eead1bf2bf23  [ PowerConsumptionSensor-22                                 ]                     S6_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c7_consumption/                                        ]
1c4daaea-c047-4276-add0-381c7af5cb7a  [ PowerConsumptionSensor-37                                 ]                     S6_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s6_c8_consumption/                                        ]
ee2d59f7-c8f0-4bb9-991f-a2ee85bc97ad  [ PowerConsumptionSensor-56                                 ]                     S7_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c1_consumption/                                        ]
9ff93268-0484-41d7-b5cc-8e547f458f6b  [ PowerConsumptionSensor-14                                 ]                     S7_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c2_consumption/                                        ]
11eadf27-0be8-46ea-b0b0-4b1c1aeaa85a  [ PowerConsumptionSensor-32                                 ]                     S7_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c3_consumption/                                        ]
eb7db7de-2125-41e8-a2c1-254060663ca7  [ PowerConsumptionSensor-42                                 ]                     S7_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c5_consumption/                                        ]
f18d27c7-6758-4f8f-a9a0-7c1867b2feb4  [ PowerConsumptionSensor-3                                  ]                     S7_C6 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c6_consumption/                                        ]
49748bdd-27b9-448c-a395-3685d635fcfb  [ PowerConsumptionSensor-48                                 ]                     S7_C7 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c7_consumption/                                        ]
8e5d3cae-f180-4456-9ea4-c8a7d91c25ca  [ PowerConsumptionSensor-29                                 ]                     S7_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s7_c8_consumption/                                        ]
d6aaafac-4982-4234-87a0-bd9f7c47cbfd  [ PowerConsumptionSensor-25                                 ]                     S8_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s8_c1_consumption/                                        ]
e9613a00-1cee-4d14-93a9-873d98ab206c  [ PowerConsumptionSensor-16                                 ]                     S8_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s8_c2_consumption/                                        ]
370f5eab-dbd8-4adc-acbb-dcc2a5433b05  [ PowerConsumptionSensor-61                                 ]                     S8_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s8_c3_consumption/                                        ]
1e828d2d-9b1b-4f17-8a0e-261b0cfee163  [ PowerConsumptionSensor-53                                 ]                     S8_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s8_c4_consumption/                                        ]
0ce9f67b-4e60-47c6-b00f-6e7626e2e17a  [ PowerConsumptionSensor-49                                 ]                     S8_C5 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s8_c5_consumption/                                        ]
43fa2241-b9ee-4650-be7b-05eeffdd050c  [ PowerConsumptionSensor-15                                 ]                     S8_C8 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s8_c8_consumption/                                        ]
248e13ef-d9c2-4a8a-a824-b12a6f070155  [ PowerConsumptionSensor-12                                 ]                     S9_C1 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s9_c1_consumption/                                        ]
174a5972-28af-4151-9818-d411c0bb6380  [ PowerConsumptionSensor-2                                  ]                     S9_C2 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s9_c2_consumption/                                        ]
168bb6b6-980d-44f8-b32c-37ca5c8d105f  [ PowerConsumptionSensor-38                                 ]                     S9_C3 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s9_c3_consumption/                                        ]
dfa0a961-7071-4590-9fb4-4463226f421c  [ PowerConsumptionSensor-24                                 ]                     S9_C4 Consumption @ Control      [ /citec/csra/control/powerconsumptionsensor/s9_c4_consumption/                                        ]
cda58193-a8a5-4795-a69d-66e9b400160c  [ PowerSwitch-62                                            ]                                 S1_C1 @ Control      [ /citec/csra/control/powerswitch/s1_c1/                                                               ]
1ff369af-efb3-473b-9e4f-c8338b332ae1  [ PowerSwitch-54                                            ]                                 S1_C2 @ Control      [ /citec/csra/control/powerswitch/s1_c2/                                                               ]
a7061002-3945-47e1-a346-6cb45b5fd3be  [ PowerSwitch-32                                            ]                                 S1_C3 @ Control      [ /citec/csra/control/powerswitch/s1_c3/                                                               ]
fa3b83c5-96c3-4227-ada8-cda5ef826ab4  [ PowerSwitch-10                                            ]                                 S1_C4 @ Control      [ /citec/csra/control/powerswitch/s1_c4/                                                               ]
8e04b5f9-2164-430b-9de8-f2208019971d  [ PowerSwitch-23                                            ]                                 S1_C5 @ Control      [ /citec/csra/control/powerswitch/s1_c5/                                                               ]
3153bef6-7036-405c-9cb4-d23434c48648  [ PowerSwitch-35                                            ]                                 S1_C6 @ Control      [ /citec/csra/control/powerswitch/s1_c6/                                                               ]
fedecf5c-3bd8-47e2-8820-be60cac63031  [ PowerSwitch-17                                            ]                                 S1_C7 @ Control      [ /citec/csra/control/powerswitch/s1_c7/                                                               ]
32386102-d331-41e7-a68a-6961a8eecec3  [ PowerSwitch-4                                             ]                                 S1_C8 @ Control      [ /citec/csra/control/powerswitch/s1_c8/                                                               ]
443f15dc-2135-4787-9845-9c2eba71a3d0  [ PowerSwitch-55                                            ]                                 S2_C1 @ Control      [ /citec/csra/control/powerswitch/s2_c1/                                                               ]
d84aff85-a8b5-425e-aae1-ddfb8bbae993  [ PowerSwitch-49                                            ]                                 S2_C2 @ Control      [ /citec/csra/control/powerswitch/s2_c2/                                                               ]
0c070079-20ab-4e65-96b1-0f258ef785ab  [ PowerSwitch-18                                            ]                                 S2_C3 @ Control      [ /citec/csra/control/powerswitch/s2_c3/                                                               ]
d166afc7-7f02-47a7-832f-9c115b8e33fb  [ PowerSwitch-14                                            ]                                 S2_C4 @ Control      [ /citec/csra/control/powerswitch/s2_c4/                                                               ]
1fb774a0-5814-4d91-8398-159ded6b89c1  [ PowerSwitch-44                                            ]                                 S2_C5 @ Control      [ /citec/csra/control/powerswitch/s2_c5/                                                               ]
f2039c78-b344-494c-9f99-f7c8ad4a04f8  [ PowerSwitch-64                                            ]                                 S2_C6 @ Control      [ /citec/csra/control/powerswitch/s2_c6/                                                               ]
a0f696f1-ae5d-4c9a-b67e-f052212ab970  [ PowerSwitch-26                                            ]                                 S2_C7 @ Control      [ /citec/csra/control/powerswitch/s2_c7/                                                               ]
fa2ab151-3840-44a2-b417-3430a4ff46c7  [ PowerSwitch-30                                            ]                                 S2_C8 @ Control      [ /citec/csra/control/powerswitch/s2_c8/                                                               ]
7f5a8af0-0033-4947-bb85-a6600f3eb92d  [ PowerSwitch-24                                            ]                                 S3_C3 @ Control      [ /citec/csra/control/powerswitch/s3_c3/                                                               ]
482865a7-1f74-4d78-ae99-4df398cb3d14  [ PowerSwitch-46                                            ]                                 S3_C4 @ Control      [ /citec/csra/control/powerswitch/s3_c4/                                                               ]
e462a253-18b0-40dc-abc9-29897d5cb5a2  [ PowerSwitch-39                                            ]                                 S3_C5 @ Control      [ /citec/csra/control/powerswitch/s3_c5/                                                               ]
2fbc5fed-3b96-4cdb-b6f6-7c54c41ff409  [ PowerSwitch-9                                             ]                                 S3_C6 @ Control      [ /citec/csra/control/powerswitch/s3_c6/                                                               ]
a4e87ef0-6fd3-4f07-9f54-5eac3554727e  [ PowerSwitch-19                                            ]                                 S3_C7 @ Control      [ /citec/csra/control/powerswitch/s3_c7/                                                               ]
dbc8745d-241d-4381-b91d-d352311a99f2  [ PowerSwitch-12                                            ]                                 S3_C8 @ Control      [ /citec/csra/control/powerswitch/s3_c8/                                                               ]
e1b431de-be4d-424b-9abd-4136c151c206  [ PowerSwitch-65                                            ]                                 S4_C1 @ Control      [ /citec/csra/control/powerswitch/s4_c1/                                                               ]
48b54768-c058-421a-99a2-3be1cd28858c  [ PowerSwitch-15                                            ]                                 S4_C3 @ Control      [ /citec/csra/control/powerswitch/s4_c3/                                                               ]
8fc89ba5-8ead-4a9b-9098-6e085d0805d7  [ PowerSwitch-68                                            ]                                 S4_C4 @ Control      [ /citec/csra/control/powerswitch/s4_c4/                                                               ]
c22ad31e-5ced-4ccb-946e-dd4925ee586f  [ PowerSwitch-5                                             ]                                 S4_C5 @ Control      [ /citec/csra/control/powerswitch/s4_c5/                                                               ]
c5dc11df-87a6-42cb-b43c-c8d02d2a36d0  [ PowerSwitch-50                                            ]                                 S4_C6 @ Control      [ /citec/csra/control/powerswitch/s4_c6/                                                               ]
c752e066-b9ed-46cd-94e8-3b33004894c7  [ PowerSwitch-45                                            ]                                 S4_C7 @ Control      [ /citec/csra/control/powerswitch/s4_c7/                                                               ]
eb52766b-5235-4852-8f76-c74c9b30860b  [ PowerSwitch-47                                            ]                                 S4_C8 @ Control      [ /citec/csra/control/powerswitch/s4_c8/                                                               ]
398239ef-bac6-4bb8-9d8a-74ecc6b8d9e1  [ PowerSwitch-48                                            ]                                 S5_C1 @ Control      [ /citec/csra/control/powerswitch/s5_c1/                                                               ]
6b7445bd-fe53-4bbf-957b-a31f64523752  [ PowerSwitch-37                                            ]                                 S5_C2 @ Control      [ /citec/csra/control/powerswitch/s5_c2/                                                               ]
fc31505c-d4d4-4ef9-8610-bb5345655885  [ PowerSwitch-33                                            ]                                 S5_C3 @ Control      [ /citec/csra/control/powerswitch/s5_c3/                                                               ]
033b4aa5-9bcf-47ae-b38e-b2540011c0ea  [ PowerSwitch-25                                            ]                                 S5_C4 @ Control      [ /citec/csra/control/powerswitch/s5_c4/                                                               ]
81715e63-d172-490e-a170-dd7c5160546d  [ PowerSwitch-13                                            ]                                 S5_C5 @ Control      [ /citec/csra/control/powerswitch/s5_c5/                                                               ]
f1463d78-654a-43c7-987b-88b6c85e2b91  [ PowerSwitch-31                                            ]                                 S5_C6 @ Control      [ /citec/csra/control/powerswitch/s5_c6/                                                               ]
e1f041d0-f2fc-4347-a44f-519638c3f106  [ PowerSwitch-56                                            ]                                 S5_C7 @ Control      [ /citec/csra/control/powerswitch/s5_c7/                                                               ]
38303686-aee6-42f7-bfb5-308a3ae4d032  [ PowerSwitch-43                                            ]                                 S5_C8 @ Control      [ /citec/csra/control/powerswitch/s5_c8/                                                               ]
37786046-c8ff-4458-82e7-9305da25879f  [ PowerSwitch-60                                            ]                                 S6_C1 @ Control      [ /citec/csra/control/powerswitch/s6_c1/                                                               ]
b9e1cafa-7599-4db0-842c-3df19c0b1dfc  [ PowerSwitch-28                                            ]                                 S6_C2 @ Control      [ /citec/csra/control/powerswitch/s6_c2/                                                               ]
93235376-795e-41ac-a43a-c44ed9fb30c5  [ PowerSwitch-41                                            ]                                 S6_C4 @ Control      [ /citec/csra/control/powerswitch/s6_c4/                                                               ]
f886bc57-d856-4253-9260-9d6bf92486aa  [ PowerSwitch-63                                            ]                                 S6_C5 @ Control      [ /citec/csra/control/powerswitch/s6_c5/                                                               ]
32af46f5-a0c1-46b8-9650-8b79fa42f8f7  [ PowerSwitch-66                                            ]                                 S6_C6 @ Control      [ /citec/csra/control/powerswitch/s6_c6/                                                               ]
465abe03-c0fc-4481-a6ce-e0a4cf4c4b00  [ PowerSwitch-40                                            ]                                 S6_C7 @ Control      [ /citec/csra/control/powerswitch/s6_c7/                                                               ]
b4af398a-ee5e-43b6-b591-6b639166191b  [ PowerSwitch-7                                             ]                                 S6_C8 @ Control      [ /citec/csra/control/powerswitch/s6_c8/                                                               ]
0602b2c4-1abf-439f-bdcb-f5684694240b  [ PowerSwitch-1                                             ]                                 S7_C1 @ Control      [ /citec/csra/control/powerswitch/s7_c1/                                                               ]
3528ce05-619e-433f-9ec9-e4583861b697  [ PowerSwitch-53                                            ]                                 S7_C2 @ Control      [ /citec/csra/control/powerswitch/s7_c2/                                                               ]
568a4705-bf87-4715-a5d6-4c455b0b6857  [ PowerSwitch-22                                            ]                                 S7_C3 @ Control      [ /citec/csra/control/powerswitch/s7_c3/                                                               ]
368e91d9-f248-47ac-a8f4-79c140b3acfc  [ PowerSwitch-6                                             ]                                 S7_C5 @ Control      [ /citec/csra/control/powerswitch/s7_c5/                                                               ]
a16a5337-07ef-48c9-be34-70a7a5e61a63  [ PowerSwitch-36                                            ]                                 S7_C6 @ Control      [ /citec/csra/control/powerswitch/s7_c6/                                                               ]
688990fa-0a4a-4464-a15c-81d16d34d875  [ PowerSwitch-20                                            ]                                 S7_C7 @ Control      [ /citec/csra/control/powerswitch/s7_c7/                                                               ]
d61d1387-a210-45bf-ad10-6484f16d540f  [ PowerSwitch-29                                            ]                                 S7_C8 @ Control      [ /citec/csra/control/powerswitch/s7_c8/                                                               ]
7206a0e3-e1b7-46f5-ad06-d288eace6e57  [ PowerSwitch-3                                             ]                                 S8_C1 @ Control      [ /citec/csra/control/powerswitch/s8_c1/                                                               ]
f7f9ebc3-ff3c-47f9-9442-c9e2713b5bdb  [ PowerSwitch-52                                            ]                                 S8_C2 @ Control      [ /citec/csra/control/powerswitch/s8_c2/                                                               ]
66463782-645c-4a5b-a357-8e3e78fadd6e  [ PowerSwitch-57                                            ]                                 S8_C3 @ Control      [ /citec/csra/control/powerswitch/s8_c3/                                                               ]
704a1425-34c0-442d-b2e7-ccbe9127e31e  [ PowerSwitch-58                                            ]                                 S8_C4 @ Control      [ /citec/csra/control/powerswitch/s8_c4/                                                               ]
2b409749-ae78-4b57-8cc2-f3a6e09c6de7  [ PowerSwitch-2                                             ]                                 S8_C5 @ Control      [ /citec/csra/control/powerswitch/s8_c5/                                                               ]
c256f279-13af-4c27-9fa0-d277f9a75054  [ PowerSwitch-67                                            ]                                 S8_C8 @ Control      [ /citec/csra/control/powerswitch/s8_c8/                                                               ]
2c29b0d1-4d71-4539-82d3-05b16cb5dd9b  [ PowerSwitch-21                                            ]                                 S9_C1 @ Control      [ /citec/csra/control/powerswitch/s9_c1/                                                               ]
8b2d4b60-67fc-443d-afbc-7a6f7c973cc6  [ PowerSwitch-51                                            ]                                 S9_C2 @ Control      [ /citec/csra/control/powerswitch/s9_c2/                                                               ]
8a63c838-fda9-4e2f-904c-3f7011b5990d  [ PowerSwitch-42                                            ]                                 S9_C3 @ Control      [ /citec/csra/control/powerswitch/s9_c3/                                                               ]
639ea164-463f-47c4-9b4e-7abcfbb06f57  [ PowerSwitch-38                                            ]                                 S9_C4 @ Control      [ /citec/csra/control/powerswitch/s9_c4/                                                               ]
47558be4-2abf-4795-939b-9ed3748c1dd4  [ ReedContact-12                                            ]                 ControlDoorReedSwitch @ Control      [ /citec/csra/control/reedcontact/controldoorreedswitch/                                               ]
f9ad39dd-4a4b-41fc-8f94-e431f9822de2  [ ReedContact-17                                            ]                  LeftWindowReedSwitch @ Control      [ /citec/csra/control/reedcontact/leftwindowreedswitch/                                                ]
3d3fa104-3ddc-4a6e-b670-f8810666fd9e  [ ReedContact-11                                            ]                 RightWindowReedSwitch @ Control      [ /citec/csra/control/reedcontact/rightwindowreedswitch/                                               ]
76b8481c-72ed-4bf0-b35e-578c64f90265  [ Location-36                                               ]                              Terminal @ Control      [ /citec/csra/control/terminal/                                                                        ]
f898b244-aebc-47d8-9502-b667c505e583  [ Battery-32                                                ]                              Terminal @ Terminal     [ /citec/csra/control/terminal/battery/terminal/                                                       ]
079e8c07-7c69-4d84-bc5d-da84ebcf51df  [ Device-47                                                 ]                              Terminal @ Terminal     [ /citec/csra/control/terminal/device/terminal/                                                        ]
43379f1f-4406-4004-b1a9-689b2774a02e  [ LightSensor-12                                            ]                              Terminal @ Terminal     [ /citec/csra/control/terminal/lightsensor/terminal/                                                   ]
49b1851b-8691-4ada-a98d-4ad361ec2e4d  [ MotionDetector-15                                         ]                              Terminal @ Terminal     [ /citec/csra/control/terminal/motiondetector/terminal/                                                ]
c4c0c726-1e69-4c34-89bb-e41d2d6c1f9a  [ TamperDetector-14                                         ]                              Terminal @ Terminal     [ /citec/csra/control/terminal/tamperdetector/terminal/                                                ]
29593e74-096f-4b79-8810-c0cbcb5b67ae  [ TemperatureSensor-5                                       ]                              Terminal @ Terminal     [ /citec/csra/control/terminal/temperaturesensor/terminal/                                             ]
485c5820-4da4-48b8-8221-ed59738b3dbb  [ Location-32                                               ]                                Window @ Control      [ /citec/csra/control/window/                                                                          ]
0fc45dc3-666c-4b06-ac05-435da887614d  [ Battery-36                                                ]                                Window @ Window       [ /citec/csra/control/window/battery/window/                                                           ]
91fd0efe-8c5a-42e1-942e-69da07dfa380  [ Device-127                                                ]                                Window @ Window       [ /citec/csra/control/window/device/window/                                                            ]
3307defd-7bd0-47e1-aebe-4d08f5e16f97  [ LightSensor-19                                            ]                                Window @ Window       [ /citec/csra/control/window/lightsensor/window/                                                       ]
dfada007-ddd7-4fd8-b466-eaceaf4f5958  [ MotionDetector-19                                         ]                                Window @ Window       [ /citec/csra/control/window/motiondetector/window/                                                    ]
91bc23cc-9fdc-4873-b9f3-ce67bcaec525  [ TamperDetector-19                                         ]                                Window @ Window       [ /citec/csra/control/window/tamperdetector/window/                                                    ]
52a535d5-6870-4f5e-ba25-129498386423  [ TemperatureSensor-19                                      ]                                Window @ Window       [ /citec/csra/control/window/temperaturesensor/window/                                                 ]
ddc5097e-1018-443d-b288-e27e3a247e5d  [ Location-7                                                ]                                  Home @ CSRA         [ /citec/csra/home/                                                                                    ]
e0979cf3-ab66-4cc5-9128-6e01aff3aba4  [ App-4                                                     ]                            NightLight @ Home         [ /citec/csra/home/app/nightlight/nightlight/                                                          ]
9aedfe6d-bf2d-4eaf-8624-1f67aba00f0b  [ AudioSource-16                                            ]      ASUS_90IW0122-B01UA_E3IWBDA33553 @ Home         [ /citec/csra/home/audiosource/asus_90iw0122-b01ua_e3iwbda33553/                                       ]
af11bdeb-f5e0-46e3-b62b-a6a76c27e6fc  [ AudioSource-20                                            ]      ASUS_90IW0122-B01UA_E3IWBDA33879 @ Home         [ /citec/csra/home/audiosource/asus_90iw0122-b01ua_e3iwbda33879/                                       ]
3ed1806d-9457-42bc-b078-01c42f795fc0  [ AudioSource-18                                            ]      ASUS_90IW0122-B01UA_E3IWBDA33884 @ Home         [ /citec/csra/home/audiosource/asus_90iw0122-b01ua_e3iwbda33884/                                       ]
6066fbc3-4b76-475b-8a56-635ef7dd2c13  [ AudioSource-12                                            ]      ASUS_90IW0122-B01UA_E3IWBDA34148 @ Home         [ /citec/csra/home/audiosource/asus_90iw0122-b01ua_e3iwbda34148/                                       ]
240cf6f8-4feb-47f7-a00f-50dfad08610b  [ AudioSource-13                                            ]      ASUS_90IW0122-B01UA_E3IWBDA34180 @ Home         [ /citec/csra/home/audiosource/asus_90iw0122-b01ua_e3iwbda34180/                                       ]
ab2bffe0-7ee0-4a5b-86d4-169d77e5fb3d  [ AudioSource-1                                             ]      ASUS_90IW0122-B01UA_E3IWBDA34182 @ Home         [ /citec/csra/home/audiosource/asus_90iw0122-b01ua_e3iwbda34182/                                       ]
47ffc799-f1c6-4068-a289-49f2020b318c  [ AudioSource-19                                            ]                            Kinect pug @ Home         [ /citec/csra/home/audiosource/kinect_pug/                                                             ]
f44ad3f8-25f4-44f9-adaa-384676b361a6  [ Location-10, Bath                                         ]                                  Bath @ Home         [ /citec/csra/home/bath/                                                                               ]
d9d6cd7d-8a10-4149-b648-f62a78e25a4f  [ Agent-2                                                   ]           BathAmbientColorBeachBottom @ Bath         [ /citec/csra/home/bath/agent/ambientcolor/bathambientcolorbeachbottom/                                ]
d8798d21-9426-4c8c-872a-f43d0e245a6d  [ Agent-1                                                   ]          BathAmbientColorBeachCeiling @ Bath         [ /citec/csra/home/bath/agent/ambientcolor/bathambientcolorbeachceiling/                               ]
1c51e24f-3e00-4a39-91a7-e7c240dcb63f  [ Agent-15                                                  ]                BathAmbientColorForest @ Bath         [ /citec/csra/home/bath/agent/ambientcolor/bathambientcolorforest/                                     ]
b98b60db-b0c4-441f-bd14-271c76d447e6  [ Agent-16                                                  ]                 BathAmbientColorNight @ Bath         [ /citec/csra/home/bath/agent/ambientcolor/bathambientcolornight/                                      ]
dc3eda2b-c555-4879-94f6-424861a42398  [ Agent-23                                                  ]                   BathAmbientColorZen @ Bath         [ /citec/csra/home/bath/agent/ambientcolor/bathambientcolorzen/                                        ]
4b0a86a3-d7b1-4cf3-b67b-75a4d049e7a2  [ Agent-4                                                   ]      BathDimmerPowerStateSynchroniser @ Bath         [ /citec/csra/home/bath/agent/powerstatesynchroniser/bathdimmerpowerstatesynchroniser/                 ]
2d3adaee-3e87-4cc4-ac7a-62cfea694838  [ Agent-7                                                   ]                           StandbyBath @ Bath         [ /citec/csra/home/bath/agent/standby/standbybath/                                                     ]
7fa744b1-7bf1-42d5-b7e6-d603e54418dd  [ App-1                                                     ]                            SoundScape @ Bath         [ /citec/csra/home/bath/app/soundscape/soundscape/                                                     ]
f5dd3070-a8fc-46ae-9a18-e0adc7130c73  [ Location-1                                                ]                                 Basin @ Bath         [ /citec/csra/home/bath/basin/                                                                         ]
4a4938b3-72c3-4bd2-8c19-0e30a6e7f472  [ Battery-24                                                ]                                  Sink @ Basin        [ /citec/csra/home/bath/basin/battery/sink/                                                            ]
5a83b039-a374-4829-a40c-75505ef1476f  [ Device-67                                                 ]                                  Sink @ Basin        [ /citec/csra/home/bath/basin/device/sink/                                                             ]
55a77b93-6703-4738-9d22-3c994178ea72  [ LightSensor-3                                             ]                                  Sink @ Basin        [ /citec/csra/home/bath/basin/lightsensor/sink/                                                        ]
7d43ca80-9db4-4250-96ce-180fe506b995  [ MotionDetector-8                                          ]                                  Sink @ Basin        [ /citec/csra/home/bath/basin/motiondetector/sink/                                                     ]
385d4f0e-f7e3-48b0-a8a1-450687f78db6  [ TamperDetector-1                                          ]                                  Sink @ Basin        [ /citec/csra/home/bath/basin/tamperdetector/sink/                                                     ]
7eb843b9-543d-4bcd-a90f-527438e8873e  [ TemperatureSensor-14                                      ]                                  Sink @ Basin        [ /citec/csra/home/bath/basin/temperaturesensor/sink/                                                  ]
22295f56-ed80-4a36-8933-bf81d7d92eb7  [ Battery-8                                                 ]                        DoorReedSwitch @ Bath         [ /citec/csra/home/bath/battery/doorreedswitch/                                                        ]
d289248e-38f7-4b07-bb9d-c0b657800ae5  [ Battery-11                                                ]                              Entrance @ Bath         [ /citec/csra/home/bath/battery/entrance/                                                              ]
d638e28d-6b3d-4566-8cc2-be31af4fd3b1  [ Battery-19                                                ]                                Global @ Bath         [ /citec/csra/home/bath/battery/global/                                                                ]
e0f39112-17a1-48aa-b8b2-58bb79e92738  [ Button-19                                                 ]                           AllOff Bath @ Bath         [ /citec/csra/home/bath/button/alloff_bath/                                                            ]
541d4842-716a-4cee-97e2-8f1cb02f84be  [ Button-4                                                  ]                              Button 1 @ Bath         [ /citec/csra/home/bath/button/button_1/                                                               ]
d09c4086-89fc-4b22-9196-2d458bb9d500  [ Button-15                                                 ]                             Button 2  @ Bath         [ /citec/csra/home/bath/button/button_2/                                                               ]
4819dd50-5b6a-435e-b5f2-65326e0dde8b  [ Button-20                                                 ]                          Default Bath @ Bath         [ /citec/csra/home/bath/button/default_bath/                                                           ]
0529ab14-ea69-4c54-9e7a-2288f7b0a5ec  [ ColorableLight-21                                         ]                              Global_1 @ Bath         [ /citec/csra/home/bath/colorablelight/global_1/                                                       ]
b71892c9-cb68-4f6c-9e1b-8837d3c28e1e  [ ColorableLight-32                                         ]                              Global_2 @ Bath         [ /citec/csra/home/bath/colorablelight/global_2/                                                       ]
efa33b37-8809-4483-beed-480fd9b50446  [ ColorableLight-13                                         ]                              Global_3 @ Bath         [ /citec/csra/home/bath/colorablelight/global_3/                                                       ]
31b4fd8f-6355-49c2-90bc-039e92d602f0  [ ColorableLight-39                                         ]                              Global 4 @ Bath         [ /citec/csra/home/bath/colorablelight/global_4/                                                       ]
12244433-e7e6-47a4-9d54-ec74edc00c15  [ ColorableLight-3                                          ]                                LLamp1 @ Bath         [ /citec/csra/home/bath/colorablelight/llamp1/                                                         ]
ec3c5b11-a915-49fa-ae54-787c2fa006c9  [ ColorableLight-25                                         ]                                LLamp3 @ Bath         [ /citec/csra/home/bath/colorablelight/llamp3/                                                         ]
afa64bbf-7e9c-40fe-a6a7-a368c8a01eaf  [ ColorableLight-12                                         ]                                LLamp6 @ Bath         [ /citec/csra/home/bath/colorablelight/llamp6/                                                         ]
9dc9a103-5c4b-4e65-8f97-3082fcd1801d  [ ColorableLight-33                                         ]                                SLamp1 @ Bath         [ /citec/csra/home/bath/colorablelight/slamp1/                                                         ]
020cf35d-e6a9-4af8-9f3c-16184dff8d36  [ ColorableLight-37                                         ]                                SLamp2 @ Bath         [ /citec/csra/home/bath/colorablelight/slamp2/                                                         ]
bca80cc4-e94e-4d5f-9fca-9276e74dead7  [ Device-71                                                 ]                        DoorReedSwitch @ Bath         [ /citec/csra/home/bath/device/doorreedswitch/                                                         ]
e955c2bf-a999-4edc-828b-faebf88237b9  [ Device-25                                                 ]                              Entrance @ Bath         [ /citec/csra/home/bath/device/entrance/                                                               ]
a0e7ef4c-8011-4b61-963f-26f9e716d3cd  [ Device-59                                                 ]                       EntranceButtons @ Bath         [ /citec/csra/home/bath/device/entrancebuttons/                                                        ]
720a0d91-3653-46b4-acce-2f02432c25e6  [ Device-115                                                ]                                Global @ Bath         [ /citec/csra/home/bath/device/global/                                                                 ]
e940159f-7e14-4c91-92d5-c279742f9e01  [ Device-125                                                ]                              Global_1 @ Bath         [ /citec/csra/home/bath/device/global_1/                                                               ]
20bbe889-bd08-4722-bd90-d20de7971b2b  [ Device-97                                                 ]                              Global_2 @ Bath         [ /citec/csra/home/bath/device/global_2/                                                               ]
a6f938ea-32ec-4477-a792-1f9e0ce1d88b  [ Device-60                                                 ]                              Global_3 @ Bath         [ /citec/csra/home/bath/device/global_3/                                                               ]
39143982-4940-4f4e-a0c4-53cdc9de145d  [ Device-111                                                ]                              Global 4 @ Bath         [ /citec/csra/home/bath/device/global_4/                                                               ]
b85f6cfd-056b-4f19-8109-35c28b6713af  [ Device-74                                                 ]                                LLamp1 @ Bath         [ /citec/csra/home/bath/device/llamp1/                                                                 ]
7f44a613-d427-4ad4-a5d0-6e3948ba5903  [ Device-63                                                 ]                                LLamp3 @ Bath         [ /citec/csra/home/bath/device/llamp3/                                                                 ]
ccbfddb1-871f-4c13-91bb-044a260cd003  [ Device-84                                                 ]                                LLamp6 @ Bath         [ /citec/csra/home/bath/device/llamp6/                                                                 ]
b8f2e5a0-b437-4c55-8fe1-69df0c7745e8  [ Device-85                                                 ]                                SLamp1 @ Bath         [ /citec/csra/home/bath/device/slamp1/                                                                 ]
3f38da45-1f93-4744-be05-6facf7fcb1df  [ Device-29                                                 ]                                SLamp2 @ Bath         [ /citec/csra/home/bath/device/slamp2/                                                                 ]
acfc8c85-b647-4666-bc00-a83386f5db82  [ Dimmer-8                                                  ]                                Dimmer @ Bath         [ /citec/csra/home/bath/dimmer/dimmer/                                                                 ]
c14c2888-08a2-4341-846e-668924214e70  [ LightSensor-10                                            ]                              Entrance @ Bath         [ /citec/csra/home/bath/lightsensor/entrance/                                                          ]
7d46ce6c-f535-4a95-9a60-453b1afbc79a  [ LightSensor-16                                            ]                                Global @ Bath         [ /citec/csra/home/bath/lightsensor/global/                                                            ]
c52dc8c3-7d2f-40df-9420-4428415f413d  [ MotionDetector-17                                         ]                              Entrance @ Bath         [ /citec/csra/home/bath/motiondetector/entrance/                                                       ]
000ced45-5b25-4f73-bcb5-135913a8d9bb  [ MotionDetector-12                                         ]                                Global @ Bath         [ /citec/csra/home/bath/motiondetector/global/                                                         ]
c6cdb1d3-b166-43cc-a79e-7a46cda33f4a  [ PowerConsumptionSensor-9                                  ]                     S8_C7 Consumption @ Bath         [ /citec/csra/home/bath/powerconsumptionsensor/s8_c7_consumption/                                      ]
ad275d31-f2ed-4917-9c7f-29e7a83b3c67  [ PowerSwitch-16                                            ]                                 S8_C7 @ Bath         [ /citec/csra/home/bath/powerswitch/s8_c7/                                                             ]
33a6608e-6c3a-4ab9-9f0d-0e128b1ecd1c  [ ReedContact-8                                             ]                        DoorReedSwitch @ Bath         [ /citec/csra/home/bath/reedcontact/doorreedswitch/                                                    ]
fcae8836-9f55-403d-9bdd-0173b8edd943  [ Scene-18                                                  ]                           AllOff Bath @ Bath         [ /citec/csra/home/bath/scene/alloff_bath/                                                             ]
cd696027-fb4f-497c-af30-144859a462da  [ Location-4                                                ]                                Shower @ Bath         [ /citec/csra/home/bath/shower/                                                                        ]
5ab9159f-b057-40f7-94fc-579fc4f283d3  [ Battery-13                                                ]                                Shower @ Shower       [ /citec/csra/home/bath/shower/battery/shower/                                                         ]
2ccf07ae-51fa-4b7f-83b2-08b978eaf082  [ Device-5                                                  ]                                Shower @ Shower       [ /citec/csra/home/bath/shower/device/shower/                                                          ]
37a1f9a7-57ab-4dfb-8061-2774eeffaf4e  [ LightSensor-1                                             ]                                Shower @ Shower       [ /citec/csra/home/bath/shower/lightsensor/shower/                                                     ]
1826c9d3-931e-41ac-a37d-f0e57b4697d9  [ MotionDetector-14                                         ]                                Shower @ Shower       [ /citec/csra/home/bath/shower/motiondetector/shower/                                                  ]
6b86d96d-72cd-46ce-8012-434c06d721f5  [ TamperDetector-7                                          ]                                Shower @ Shower       [ /citec/csra/home/bath/shower/tamperdetector/shower/                                                  ]
8bdec03c-86e1-462f-b341-3a0e96f2d6f5  [ TemperatureSensor-7                                       ]                                Shower @ Shower       [ /citec/csra/home/bath/shower/temperaturesensor/shower/                                               ]
6c1f2d2c-4f04-4e11-8e07-748ded4a9f5e  [ TamperDetector-15                                         ]                              Entrance @ Bath         [ /citec/csra/home/bath/tamperdetector/entrance/                                                       ]
fce6203a-1e30-41e0-ac5b-a864031fd1b1  [ TamperDetector-11                                         ]                                Global @ Bath         [ /citec/csra/home/bath/tamperdetector/global/                                                         ]
82e170cc-7e71-44a2-97ee-29d693529250  [ TemperatureController-2                                   ]             TemperatureControllerBath @ Bath         [ /citec/csra/home/bath/temperaturecontroller/temperaturecontrollerbath/                               ]
a3a4e044-f1fe-41d0-92c3-1f8418fef77f  [ TemperatureSensor-3                                       ]                              Entrance @ Bath         [ /citec/csra/home/bath/temperaturesensor/entrance/                                                    ]
ede77f1d-0737-4011-861b-f47121137c57  [ TemperatureSensor-8                                       ]                                Global @ Bath         [ /citec/csra/home/bath/temperaturesensor/global/                                                      ]
844a5b35-4b9c-4db2-9d22-4842db77bc95  [ ColorableLight-14                                         ]                          StudTestLamp @ Home         [ /citec/csra/home/colorablelight/studtestlamp/                                                        ]
6d7e9b9b-c9b8-4fd5-b56b-ff5319a603be  [ Connection-15                                             ]                         Bathroom Door @ Home         [ /citec/csra/home/connection/bathroom_door/                                                           ]
77b12917-44fc-4c2d-851d-2115b0ba5a39  [ Connection-7                                              ]                          Kitchen Door @ Home         [ /citec/csra/home/connection/kitchen_door/                                                            ]
06c55103-3a11-44b7-aed8-569880365a44  [ Connection-13                                             ]                       Kitchen Passage @ Home         [ /citec/csra/home/connection/kitchen_passage/                                                         ]
55697bae-e240-4c68-9fdc-02cfc4f98296  [ Connection-12                                             ]                      Wardrobe Passage @ Home         [ /citec/csra/home/connection/wardrobe_passage/                                                        ]
d56ea74f-4c40-40f8-88fd-ff97234454a4  [ Device-35                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33553 @ Home         [ /citec/csra/home/device/asus_90iw0122-b01ua_e3iwbda33553/                                            ]
69b623df-a05f-4529-86a9-ded360266145  [ Device-93                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33879 @ Home         [ /citec/csra/home/device/asus_90iw0122-b01ua_e3iwbda33879/                                            ]
ee324956-02b8-47f4-a5ca-6cdaf2087596  [ Device-45                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33884 @ Home         [ /citec/csra/home/device/asus_90iw0122-b01ua_e3iwbda33884/                                            ]
7c5e6371-339f-4efb-bfef-29b171cface2  [ Device-124                                                ]      ASUS_90IW0122-B01UA_E3IWBDA34148 @ Home         [ /citec/csra/home/device/asus_90iw0122-b01ua_e3iwbda34148/                                            ]
e27167d8-d661-46aa-a79c-3ee5dbdcce5e  [ Device-110                                                ]      ASUS_90IW0122-B01UA_E3IWBDA34180 @ Home         [ /citec/csra/home/device/asus_90iw0122-b01ua_e3iwbda34180/                                            ]
5dd3fc5f-3282-4796-89a8-cbca57c129fa  [ Device-95                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34182 @ Home         [ /citec/csra/home/device/asus_90iw0122-b01ua_e3iwbda34182/                                            ]
b7297c1b-c9f8-4115-bbb2-31c282e6c37b  [ Device-53                                                 ]                        ControlTablet1 @ Home         [ /citec/csra/home/device/controltablet1/                                                              ]
878616f0-538f-4eae-9db5-3e78a3adb74b  [ Device-31                                                 ]                          StudTestLamp @ Home         [ /citec/csra/home/device/studtestlamp/                                                                ]
4a1d3474-7322-48d5-859f-8d9f50f479b9  [ Location-13, Hallway, Wardrobe                            ]                               Hallway @ Home         [ /citec/csra/home/hallway/                                                                            ]
d3e46543-b154-47ff-936d-e57056b85496  [ Agent-5                                                   ]                  WardrobeEnergySaving @ Hallway      [ /citec/csra/home/hallway/agent/absenceenergysaving/wardrobeenergysaving/                             ]
0a514c2d-3b2c-4303-a4b6-d90f0284fc83  [ Agent-21                                                  ]   HallwayDimmerPowerStateSynchroniser @ Hallway      [ /citec/csra/home/hallway/agent/powerstatesynchroniser/hallwaydimmerpowerstatesynchroniser/           ]
68937f67-107c-487a-a3a0-7b3761ad8e55  [ Agent-14                                                  ]                 WardrobePresenceLight @ Hallway      [ /citec/csra/home/hallway/agent/presencelight/wardrobepresencelight/                                  ]
59a219ed-6f69-41f7-908c-2066faac97c8  [ Agent-10                                                  ]                        StandbyHallway @ Hallway      [ /citec/csra/home/hallway/agent/standby/standbyhallway/                                               ]
d0493f5e-872a-465c-8e4b-2ab1160be28e  [ AudioSource-10                                            ]      ASUS_90IW0122-B01UA_E3IWBDA33551 @ Hallway      [ /citec/csra/home/hallway/audiosource/asus_90iw0122-b01ua_e3iwbda33551/                               ]
ac8e8bee-70e6-45b3-a0ca-51928312df5b  [ AudioSource-5                                             ]      ASUS_90IW0122-B01UA_E3IWBDA34151 @ Hallway      [ /citec/csra/home/hallway/audiosource/asus_90iw0122-b01ua_e3iwbda34151/                               ]
6673d527-ae60-492f-bb43-85d00b700238  [ Battery-5                                                 ]                EntranceDoorReedSwitch @ Hallway      [ /citec/csra/home/hallway/battery/entrancedoorreedswitch/                                             ]
6b631f75-febe-47ec-8ec1-a8234f0eb3e7  [ Battery-6                                                 ]                               Hallway @ Hallway      [ /citec/csra/home/hallway/battery/hallway/                                                            ]
ae8242cc-63cf-4fd9-a31a-4304d52504b2  [ Button-22                                                 ]                          Scene: Debug @ Hallway      [ /citec/csra/home/hallway/button/scene_debug/                                                         ]
250c65fe-ba19-4fbc-a0e5-a98b8b3f6b4a  [ Button-2                                                  ]                  Scene: Entertainment @ Hallway      [ /citec/csra/home/hallway/button/scene_entertainment/                                                 ]
228917d8-f347-4aa2-a7f1-4971c0498dbc  [ Button-52                                                 ]                        Scene: Meeting @ Hallway      [ /citec/csra/home/hallway/button/scene_meeting/                                                       ]
03e2302e-8879-4989-b305-211ebd127cc8  [ Button-29                                                 ]                          Scene: Party @ Hallway      [ /citec/csra/home/hallway/button/scene_party/                                                         ]
d82aed75-e75a-4c40-a0b6-67a612204dc2  [ Button-40                                                 ]                        Scene: Reading @ Hallway      [ /citec/csra/home/hallway/button/scene_reading/                                                       ]
68f6544b-d805-4bf4-bc51-45e344ed830d  [ Button-11                                                 ]                    Scene: Socializing @ Hallway      [ /citec/csra/home/hallway/button/scene_socializing/                                                   ]
d4ce3cdc-f5d8-4862-ad5f-e02cebd9d964  [ Button-26                                                 ]                       Task: AutoLight @ Hallway      [ /citec/csra/home/hallway/button/task_autolight/                                                      ]
95ba2da1-ffb9-4bcc-b533-df9365ebb759  [ Button-25                                                 ]                            Task: Elan @ Hallway      [ /citec/csra/home/hallway/button/task_elan/                                                           ]
00eed9c5-bfb1-4664-91b6-f8234399504d  [ Button-1                                                  ]                        Task: LightOff @ Hallway      [ /citec/csra/home/hallway/button/task_lightoff/                                                       ]
a60d810a-1045-4d64-846a-d0a1afb11d07  [ Button-24                                                 ]                         Task: LightOn @ Hallway      [ /citec/csra/home/hallway/button/task_lighton/                                                        ]
14846cc1-047d-44ab-aab1-ad67f095b528  [ Button-47                                                 ]                     Task: NextInScene @ Hallway      [ /citec/csra/home/hallway/button/task_nextinscene/                                                    ]
a2502f9d-cfef-404d-80c9-5da210e07242  [ Button-32                                                 ]                       Task: StopAudio @ Hallway      [ /citec/csra/home/hallway/button/task_stopaudio/                                                      ]
51a38d12-35d5-49a4-9f73-35822c8aeb89  [ ColorableLight-38                                         ]                             Hallway_0 @ Hallway      [ /citec/csra/home/hallway/colorablelight/hallway_0/                                                   ]
f870b339-76c8-4d29-bada-abb04f75956d  [ ColorableLight-34                                         ]                             Hallway_1 @ Hallway      [ /citec/csra/home/hallway/colorablelight/hallway_1/                                                   ]
d8b33eec-41ff-4a4e-b3a6-af8ed44750ad  [ Device-77                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33551 @ Hallway      [ /citec/csra/home/hallway/device/asus_90iw0122-b01ua_e3iwbda33551/                                    ]
a7be0014-ad96-41ee-aab9-1caf808a7806  [ Device-21                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34151 @ Hallway      [ /citec/csra/home/hallway/device/asus_90iw0122-b01ua_e3iwbda34151/                                    ]
c8ccd1db-5689-4ce7-b6e9-913ca88c0329  [ Device-28                                                 ]                EntranceDoorReedSwitch @ Hallway      [ /citec/csra/home/hallway/device/entrancedoorreedswitch/                                              ]
7e3043fb-b942-4bd0-9fe1-5b8ccadb6926  [ Device-51                                                 ]                               Hallway @ Hallway      [ /citec/csra/home/hallway/device/hallway/                                                             ]
0fb97659-299a-4da9-8dfb-ece4ac0bee00  [ Device-46                                                 ]                             Hallway_0 @ Hallway      [ /citec/csra/home/hallway/device/hallway_0/                                                           ]
c3d8b73e-0990-4d53-9fea-9cac0973378d  [ Device-104                                                ]                             Hallway_1 @ Hallway      [ /citec/csra/home/hallway/device/hallway_1/                                                           ]
acb2a103-1c5c-4023-96d5-c88b8a9a042c  [ Device-36                                                 ]                   HallwayAboveButtons @ Hallway      [ /citec/csra/home/hallway/device/hallwayabovebuttons/                                                 ]
d9e491b1-27b3-4736-9ce0-c52476e827d3  [ Device-91                                                 ]                   HallwayBelowButtons @ Hallway      [ /citec/csra/home/hallway/device/hallwaybelowbuttons/                                                 ]
a70e0552-0012-4ea8-b88b-b6c1774e85f0  [ Dimmer-3                                                  ]                        EntranceDimmer @ Hallway      [ /citec/csra/home/hallway/dimmer/entrancedimmer/                                                      ]
b0daa651-4556-4970-b6be-c8c0b8d33caa  [ Dimmer-5                                                  ]                         PathwayDimmer @ Hallway      [ /citec/csra/home/hallway/dimmer/pathwaydimmer/                                                       ]
cff20d86-c7e8-4d12-87e1-ebc67c7e0c93  [ Location-9                                                ]                              Entrance @ Hallway      [ /citec/csra/home/hallway/entrance/                                                                   ]
122389cd-907f-4e7c-84de-aaa2a3f81771  [ Agent-18                                                  ]  EntranceDimmerPowerStateSynchroniser @ Entrance     [ /citec/csra/home/hallway/entrance/agent/powerstatesynchroniser/entrancedimmerpowerstatesynchroniser/ ]
9b6a783a-fb57-4237-be45-b2477d83da9d  [ Battery-12                                                ]                              Entrance @ Entrance     [ /citec/csra/home/hallway/entrance/battery/entrance/                                                  ]
3e189be5-1e78-47dd-9507-b17b6b282e24  [ Button-54                                                 ]                      AllOff Apartment @ Entrance     [ /citec/csra/home/hallway/entrance/button/alloff_apartment/                                           ]
c88db10a-8d41-4091-a301-508f4fba70a1  [ Button-33                                                 ]                     Default Apartment @ Entrance     [ /citec/csra/home/hallway/entrance/button/default_apartment/                                          ]
34084c5f-46bf-4e88-84f4-0110530f6e47  [ Button-31                                                 ]                   Scenario: Learnface @ Entrance     [ /citec/csra/home/hallway/entrance/button/scenario_learnface/                                         ]
8db53c2d-2c98-4b0d-b0b0-2e0f0127741c  [ Button-9                                                  ]                    Scenario: Register @ Entrance     [ /citec/csra/home/hallway/entrance/button/scenario_register/                                          ]
a721ee69-8a01-4567-982b-ee498be702cb  [ Button-35                                                 ]                        Scene: Default @ Entrance     [ /citec/csra/home/hallway/entrance/button/scene_default/                                              ]
cb2d3e9f-e5a1-4950-b4d6-786be5eeef47  [ Button-42                                                 ]                           Scene: Demo @ Entrance     [ /citec/csra/home/hallway/entrance/button/scene_demo/                                                 ]
88f06270-9441-4afc-8a8d-54a7ab4aaef6  [ Device-38                                                 ]                              Entrance @ Entrance     [ /citec/csra/home/hallway/entrance/device/entrance/                                                   ]
a33d0c22-346c-42ca-bed5-c72019700729  [ Device-64                                                 ]                       EntranceButtons @ Entrance     [ /citec/csra/home/hallway/entrance/device/entrancebuttons/                                            ]
053019e3-51aa-48be-bd16-b16da6e99519  [ LightSensor-17                                            ]                              Entrance @ Entrance     [ /citec/csra/home/hallway/entrance/lightsensor/entrance/                                              ]
c0a82127-ab4f-4c75-9f61-96a2a208bf7a  [ MotionDetector-3                                          ]                              Entrance @ Entrance     [ /citec/csra/home/hallway/entrance/motiondetector/entrance/                                           ]
0d1e337f-7793-4c1b-bd54-e37befbddfe7  [ TamperDetector-6                                          ]                              Entrance @ Entrance     [ /citec/csra/home/hallway/entrance/tamperdetector/entrance/                                           ]
e4b90f9a-923a-4300-80a5-e2e2aa10347d  [ TemperatureSensor-4                                       ]                              Entrance @ Entrance     [ /citec/csra/home/hallway/entrance/temperaturesensor/entrance/                                        ]
b4af10fe-115c-4b23-a6f7-5033071c1655  [ LightSensor-5                                             ]                               Hallway @ Hallway      [ /citec/csra/home/hallway/lightsensor/hallway/                                                        ]
7c243a03-7d31-41a2-979d-da4c9418ff10  [ MotionDetector-13                                         ]                               Hallway @ Hallway      [ /citec/csra/home/hallway/motiondetector/hallway/                                                     ]
6e589084-a3a5-4789-af7a-28925e28eeb6  [ ReedContact-6                                             ]                EntranceDoorReedSwitch @ Hallway      [ /citec/csra/home/hallway/reedcontact/entrancedoorreedswitch/                                         ]
ce4eae68-1738-4241-8ac1-bceabac12593  [ Scene-19                                                  ]                       AllOff Entrance @ Hallway      [ /citec/csra/home/hallway/scene/alloff_entrance/                                                      ]
7dbfb6a5-83bd-4b97-ba97-00506142caa1  [ TamperDetector-8                                          ]                               Hallway @ Hallway      [ /citec/csra/home/hallway/tamperdetector/hallway/                                                     ]
cb97582a-43fa-42bc-bcf1-4977cf090070  [ TemperatureSensor-6                                       ]                               Hallway @ Hallway      [ /citec/csra/home/hallway/temperaturesensor/hallway/                                                  ]
72f220fd-5b35-4979-8b3b-0ccabe4d98a3  [ VideoDepthSource-16                                       ]      ASUS_90IW0122-B01UA_E3IWBDA33551 @ Hallway      [ /citec/csra/home/hallway/videodepthsource/asus_90iw0122-b01ua_e3iwbda33551/                          ]
7e878a47-f310-4d8f-a18c-223c4c4544e5  [ VideoDepthSource-6                                        ]      ASUS_90IW0122-B01UA_E3IWBDA34151 @ Hallway      [ /citec/csra/home/hallway/videodepthsource/asus_90iw0122-b01ua_e3iwbda34151/                          ]
e476bdfa-c206-40fb-aa28-a1d42dcc6fec  [ VideoRgbSource-21                                         ]      ASUS_90IW0122-B01UA_E3IWBDA33551 @ Hallway      [ /citec/csra/home/hallway/videorgbsource/asus_90iw0122-b01ua_e3iwbda33551/                            ]
23027f66-4350-4d43-9d81-607fa3f3e6d2  [ VideoRgbSource-1                                          ]      ASUS_90IW0122-B01UA_E3IWBDA34151 @ Hallway      [ /citec/csra/home/hallway/videorgbsource/asus_90iw0122-b01ua_e3iwbda34151/                            ]
f0a71f71-1463-41e3-9c9a-25a02a536001  [ Location-3, Kitchen                                       ]                               Kitchen @ Home         [ /citec/csra/home/kitchen/                                                                            ]
c1df1059-7823-4c24-8943-04db2bb04271  [ Agent-11                                                  ]            KitchenAbsenceEnergySaving @ Kitchen      [ /citec/csra/home/kitchen/agent/absenceenergysaving/kitchenabsenceenergysaving/                       ]
54398739-ed7a-4261-b2ca-e1eba578d2d8  [ Agent-6                                                   ]   KitchenDimmerPowerStateSynchroniser @ Kitchen      [ /citec/csra/home/kitchen/agent/powerstatesynchroniser/kitchendimmerpowerstatesynchroniser/           ]
380abfb6-0863-4830-b12b-8f73fc0dc667  [ Agent-17                                                  ]                  KitchenPresenceLight @ Kitchen      [ /citec/csra/home/kitchen/agent/presencelight/kitchenpresencelight/                                   ]
b52852e5-0ff5-41d3-854c-3a38cc756b4a  [ Agent-12                                                  ]                        StandbyKitchen @ Kitchen      [ /citec/csra/home/kitchen/agent/standby/standbykitchen/                                               ]
98acc701-87b9-4cf2-b79b-3eb6c166e2fe  [ App-2                                                     ]                    PartyLightFollower @ Kitchen      [ /citec/csra/home/kitchen/app/partylighttilefollower/partylightfollower/                              ]
8b787be0-45c2-4c7f-b3a3-7a6b73040df0  [ Location-22                                               ]                            Assistance @ Kitchen      [ /citec/csra/home/kitchen/assistance/                                                                 ]
1da22f8c-fb16-4b67-a9b5-e6e8381ed55e  [ AudioSource-7                                             ]      ASUS_90IW0122-B01UA_E3IWBDA34146 @ Kitchen      [ /citec/csra/home/kitchen/audiosource/asus_90iw0122-b01ua_e3iwbda34146/                               ]
c761f3bc-8b95-4e91-a282-f0826185c90f  [ AudioSource-15                                            ]      ASUS_90IW0122-B01UA_E3IWBDA34154 @ Kitchen      [ /citec/csra/home/kitchen/audiosource/asus_90iw0122-b01ua_e3iwbda34154/                               ]
46897193-9372-437c-9688-d5c29eb58aaa  [ Battery-2                                                 ]                            DoorClosed @ Kitchen      [ /citec/csra/home/kitchen/battery/doorclosed/                                                         ]
17a97269-351d-4ff7-9d21-ed760fd8a667  [ Battery-26                                                ]                              DoorOpen @ Kitchen      [ /citec/csra/home/kitchen/battery/dooropen/                                                           ]
063b5783-4576-4553-872d-3f5d4e17060d  [ Battery-16                                                ]                                Global @ Kitchen      [ /citec/csra/home/kitchen/battery/global/                                                             ]
c82b515d-7b9f-4a66-8f89-77af9cbd3c71  [ Button-44                                                 ]                        AllOff Kitchen @ Kitchen      [ /citec/csra/home/kitchen/button/alloff_kitchen/                                                      ]
4f602ace-928a-4d0b-8853-d0bbe4d3fc74  [ Button-34                                                 ]                       Default Kitchen @ Kitchen      [ /citec/csra/home/kitchen/button/default_kitchen/                                                     ]
15d2471e-d226-474a-9382-5d70a543ca99  [ Button-48                                                 ]                          DoorButton 3 @ Kitchen      [ /citec/csra/home/kitchen/button/doorbutton_3/                                                        ]
3831e7cc-5fa7-4e38-9434-6db4b4197400  [ Button-17                                                 ]                     Scenario: Cleanup @ Kitchen      [ /citec/csra/home/kitchen/button/scenario_cleanup/                                                    ]
161d752e-4adc-42e0-88f1-9f54be5665e9  [ Button-5                                                  ]                        Scene: Cooking @ Kitchen      [ /citec/csra/home/kitchen/button/scene_cooking/                                                       ]
2fe2dc58-3c1e-4ded-a27c-695d24621216  [ Button-30                                                 ]                         Scene: Dinner @ Kitchen      [ /citec/csra/home/kitchen/button/scene_dinner/                                                        ]
8e919ea0-26ca-4e31-b650-b00a2101320a  [ ColorableLight-43, cupboard1                              ]                                   501 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/501/                                                         ]
56d96b1e-e9d6-4682-a105-fa4e12b129fe  [ ColorableLight-22                                         ]                                   502 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/502/                                                         ]
72ad4c6b-80f7-431a-bf2e-31ff58066426  [ ColorableLight-23                                         ]                                   503 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/503/                                                         ]
6a347801-c3e6-4893-a841-9b8d3577abfa  [ ColorableLight-2, drawer2                                 ]                                   504 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/504/                                                         ]
e83686fd-99bc-44a0-9170-e6166598a95c  [ ColorableLight-28, drawer1                                ]                                   505 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/505/                                                         ]
79c495a1-cb54-4eb8-9047-f09a3b97b720  [ ColorableLight-18, cupboard2                              ]                                   506 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/506/                                                         ]
8d310f30-d60a-4627-8884-373c5e2dcbdd  [ ColorableLight-24                                         ]                         CeilingLamp 1 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_1/                                               ]
96891f9d-e7f2-449d-9871-a2d317214295  [ ColorableLight-10                                         ]                         CeilingLamp 2 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_2/                                               ]
48e43d6f-0015-40b3-895b-0ff33d4a74a4  [ ColorableLight-5                                          ]                         CeilingLamp 3 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_3/                                               ]
9c3561a1-e6ce-476e-9bff-0d35807d2607  [ ColorableLight-29                                         ]                         CeilingLamp 4 @ Kitchen      [ /citec/csra/home/kitchen/colorablelight/ceilinglamp_4/                                               ]
8ca11b1c-6359-4cbe-b894-00972e9c9601  [ Device-131                                                ]                                   501 @ Kitchen      [ /citec/csra/home/kitchen/device/501/                                                                 ]
713eccd9-8a4d-4a69-89e8-aa39bd1235e6  [ Device-7                                                  ]                                   502 @ Kitchen      [ /citec/csra/home/kitchen/device/502/                                                                 ]
9735550c-bfc0-422f-b26b-ba2ae2fc3bcb  [ Device-12                                                 ]                                   503 @ Kitchen      [ /citec/csra/home/kitchen/device/503/                                                                 ]
dbfa27b8-d13c-4a3a-b489-85646dbce942  [ Device-119                                                ]                                   504 @ Kitchen      [ /citec/csra/home/kitchen/device/504/                                                                 ]
87c4aba8-e227-45c9-8e5b-6a4888373729  [ Device-76                                                 ]                                   505 @ Kitchen      [ /citec/csra/home/kitchen/device/505/                                                                 ]
9c2a6435-f605-4468-b125-be540b65b96f  [ Device-73                                                 ]                                   506 @ Kitchen      [ /citec/csra/home/kitchen/device/506/                                                                 ]
933c0e87-3852-466d-a153-b37c69e1b251  [ Device-17                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34146 @ Kitchen      [ /citec/csra/home/kitchen/device/asus_90iw0122-b01ua_e3iwbda34146/                                    ]
c8bff4c0-b228-4a6c-9e9a-95f99e458fc5  [ Device-112                                                ]      ASUS_90IW0122-B01UA_E3IWBDA34154 @ Kitchen      [ /citec/csra/home/kitchen/device/asus_90iw0122-b01ua_e3iwbda34154/                                    ]
02067c8e-eb24-46f7-a725-5e6ba535dea2  [ Device-18                                                 ]                         CeilingLamp 1 @ Kitchen      [ /citec/csra/home/kitchen/device/ceilinglamp_1/                                                       ]
f4813cfb-0701-46f6-848c-94697c9a87ef  [ Device-121                                                ]                         CeilingLamp 2 @ Kitchen      [ /citec/csra/home/kitchen/device/ceilinglamp_2/                                                       ]
be347a9c-0bb2-42d6-8f69-3699e52224ba  [ Device-88                                                 ]                         CeilingLamp 3 @ Kitchen      [ /citec/csra/home/kitchen/device/ceilinglamp_3/                                                       ]
fac04544-0148-4969-adae-a96e94f5faac  [ Device-113                                                ]                         CeilingLamp 4 @ Kitchen      [ /citec/csra/home/kitchen/device/ceilinglamp_4/                                                       ]
a9b55776-57b2-4589-a90c-dccb1fc7324e  [ Device-80                                                 ]                           DoorButtons @ Kitchen      [ /citec/csra/home/kitchen/device/doorbuttons/                                                         ]
4d350be1-3f09-48f8-8796-d336d7b10dfe  [ Device-3                                                  ]                            DoorClosed @ Kitchen      [ /citec/csra/home/kitchen/device/doorclosed/                                                          ]
1779a5fa-1ba9-4cae-ad58-f92928128c07  [ Device-1                                                  ]                              DoorOpen @ Kitchen      [ /citec/csra/home/kitchen/device/dooropen/                                                            ]
f65b09c6-b14b-4da6-9d3d-47b4c3ba10ff  [ Device-27                                                 ]                              FlobiCam @ Kitchen      [ /citec/csra/home/kitchen/device/flobicam/                                                            ]
c9b69cd9-a9d9-43f1-be87-fbf0fdd51103  [ Device-24                                                 ]                                 floor @ Kitchen      [ /citec/csra/home/kitchen/device/floor/                                                               ]
0a4a7efd-1e28-47b1-b631-56293de8d455  [ Device-92                                                 ]           Future-Shape_SE3-P_02858000 @ Kitchen      [ /citec/csra/home/kitchen/device/future-shape_se3-p_02858000/                                         ]
928147d9-91b9-47ff-b952-14c300491c27  [ Device-96                                                 ]                                Global @ Kitchen      [ /citec/csra/home/kitchen/device/global/                                                              ]
1c667ff0-8c5f-48d2-b467-9669c30c4578  [ Dimmer-6                                                  ]                                Dimmer @ Kitchen      [ /citec/csra/home/kitchen/dimmer/dimmer/                                                              ]
61069abf-ebdc-4638-aebd-22ecbb66fe19  [ LightSensor-4                                             ]                                Global @ Kitchen      [ /citec/csra/home/kitchen/lightsensor/global/                                                         ]
5a53e87c-207c-4214-92f9-709abd11e478  [ MotionDetector-10                                         ]                                Global @ Kitchen      [ /citec/csra/home/kitchen/motiondetector/global/                                                      ]
76f0333a-b159-4ede-8043-b5a0a04075c9  [ water                                                     ]                                Kettle @ Kitchen      [ /citec/csra/home/kitchen/object/kettle/                                                              ]
5809216a-0a05-4bce-adbe-b61188c9af85  [ PowerConsumptionSensor-52, KettlePowerConsumptionSensor   ]                                 S3 A2 @ Kitchen      [ /citec/csra/home/kitchen/powerconsumptionsensor/s3_a2/                                               ]
a69b3e90-f0be-4433-9a40-583b438a3b93  [ PowerConsumptionSensor-27                                 ]                                  S3C1 @ Kitchen      [ /citec/csra/home/kitchen/powerconsumptionsensor/s3c1/                                                ]
86c6c67f-1f8e-4994-a70f-c1f5de0d13c1  [ PowerConsumptionSensor-26                                 ]                                 S8 A6 @ Kitchen      [ /citec/csra/home/kitchen/powerconsumptionsensor/s8_a6/                                               ]
e763d6d4-8a91-4c56-a383-45b1a54cedbf  [ PowerSwitch-59                                            ]                                Kettle @ Kitchen      [ /citec/csra/home/kitchen/powerswitch/kettle/                                                         ]
8d92ec6f-889a-47be-8e47-00f838855cd7  [ PowerSwitch-34                                            ]                                 S8_C6 @ Kitchen      [ /citec/csra/home/kitchen/powerswitch/s8_c6/                                                          ]
aed87a02-7a77-49ff-b8f7-7e6db819c285  [ PowerSwitch-61                                            ]                              Worktop  @ Kitchen      [ /citec/csra/home/kitchen/powerswitch/worktop/                                                        ]
27340ccd-340a-45a5-92f4-96fbc7040b91  [ ReedContact-19                                            ]                                   501 @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/501/                                                            ]
37bf578a-c30a-48b5-84b4-ffc1621eff30  [ ReedContact-5                                             ]                                   502 @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/502/                                                            ]
db112245-dffc-46bf-aadd-f5e5f4f30394  [ ReedContact-1                                             ]                                   503 @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/503/                                                            ]
3b4c23f2-162f-4556-a13a-ed71434c08e8  [ ReedContact-4                                             ]                                   504 @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/504/                                                            ]
cbe3a9cc-2869-463f-b217-7c6f8e2650b6  [ ReedContact-13                                            ]                                   505 @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/505/                                                            ]
7bab2d9a-fe71-40a6-8088-a3106406d27b  [ ReedContact-14                                            ]                                   506 @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/506/                                                            ]
7246780e-97db-4863-83eb-203ae1b6e362  [ ReedContact-15                                            ]                            DoorClosed @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/doorclosed/                                                     ]
3faec094-8ec7-47cb-b4a2-b14d442aa22f  [ ReedContact-7                                             ]                              DoorOpen @ Kitchen      [ /citec/csra/home/kitchen/reedcontact/dooropen/                                                       ]
ad4572dd-da48-4955-8a3c-254af118ff33  [ Scene-26                                                  ]                        AllOff Kitchen @ Kitchen      [ /citec/csra/home/kitchen/scene/alloff_kitchen/                                                       ]
b94e86fd-9606-4c8c-9a0b-2ca9ac7f6d44  [ Scene-14                                                  ]                                Dinner @ Kitchen      [ /citec/csra/home/kitchen/scene/dinner/                                                               ]
60c76826-4e0b-46c2-aa5c-36e7809ab7d3  [ Location-26                                               ]                                  Sink @ Kitchen      [ /citec/csra/home/kitchen/sink/                                                                       ]
2e5602d8-67fd-402a-94e3-99ab9e4f3377  [ TamperDetector-2                                          ]                                Global @ Kitchen      [ /citec/csra/home/kitchen/tamperdetector/global/                                                      ]
308037c0-6a75-4353-bbfc-6b77519955d7  [ TemperatureSensor-15                                      ]                                Global @ Kitchen      [ /citec/csra/home/kitchen/temperaturesensor/global/                                                   ]
2c95255e-a491-46d7-a6a6-f66d5e6c2d3b  [ UnitGroup-2                                               ]                          Handle Group @ Kitchen      [ /citec/csra/home/kitchen/unitgroup/handle_group/                                                     ]
00791bae-f295-4fcd-925d-fbc58148b2cb  [ VideoDepthSource-5                                        ]      ASUS_90IW0122-B01UA_E3IWBDA34146 @ Kitchen      [ /citec/csra/home/kitchen/videodepthsource/asus_90iw0122-b01ua_e3iwbda34146/                          ]
2855e6f8-5591-43ab-aadd-a36ffc85e1af  [ VideoDepthSource-1                                        ]      ASUS_90IW0122-B01UA_E3IWBDA34154 @ Kitchen      [ /citec/csra/home/kitchen/videodepthsource/asus_90iw0122-b01ua_e3iwbda34154/                          ]
04d1cf68-ecaf-4bb2-bcd7-587fe2623e11  [ VideoRgbSource-15                                         ]      ASUS_90IW0122-B01UA_E3IWBDA34146 @ Kitchen      [ /citec/csra/home/kitchen/videorgbsource/asus_90iw0122-b01ua_e3iwbda34146/                            ]
234da3fa-634b-4d91-a5be-8f337a53b1ba  [ VideoRgbSource-12                                         ]      ASUS_90IW0122-B01UA_E3IWBDA34154 @ Kitchen      [ /citec/csra/home/kitchen/videorgbsource/asus_90iw0122-b01ua_e3iwbda34154/                            ]
ac20b83e-e2db-49ec-84c1-5b336943bf51  [ VideoRgbSource-13                                         ]                              FlobiCam @ Kitchen      [ /citec/csra/home/kitchen/videorgbsource/flobicam/                                                    ]
81b9efa4-2dc9-432e-b47c-1d73021ff0f3  [ Location-11, Living                                       ]                                Living @ Home         [ /citec/csra/home/living/                                                                             ]
2661efe0-93c4-4574-8393-e7ad49e4db77  [ Agent-3                                                   ]             LivingAbsenceEnergySaving @ Living       [ /citec/csra/home/living/agent/absenceenergysaving/livingabsenceenergysaving/                         ]
066a94d5-abdb-472e-be94-712fabd401c3  [ Agent-22                                                  ]   CeilingLampCentralPowerSynchroniser @ Living       [ /citec/csra/home/living/agent/powerstatesynchroniser/ceilinglampcentralpowersynchroniser/            ]
e4250019-2c88-4340-b0a0-8bea71cbe2ac  [ Agent-9                                                   ]    CeilingWindowLampPowerSynchroniser @ Living       [ /citec/csra/home/living/agent/powerstatesynchroniser/ceilingwindowlamppowersynchroniser/             ]
502bdaaf-8d98-4563-9e13-200d33ced339  [ Agent-19                                                  ]                   LivingPresenceLight @ Living       [ /citec/csra/home/living/agent/presencelight/livingpresencelight/                                     ]
a2ae3197-e552-4e72-ac9c-0f419a31e964  [ Agent-24                                                  ]                         StandbyLiving @ Living       [ /citec/csra/home/living/agent/standby/standbyliving/                                                 ]
6649d120-54ea-4979-98be-5aca38ea4392  [ AudioSource-4                                             ]      ASUS_90IW0122-B01UA_E3IWBDA33883 @ Living       [ /citec/csra/home/living/audiosource/asus_90iw0122-b01ua_e3iwbda33883/                                ]
33216ec8-83ea-4131-9e2c-33831a587f54  [ AudioSource-3                                             ]      ASUS_90IW0122-B01UA_E3IWBDA34145 @ Living       [ /citec/csra/home/living/audiosource/asus_90iw0122-b01ua_e3iwbda34145/                                ]
8d9db3f8-5a12-442d-822a-73289674ff0f  [ AudioSource-6                                             ]      ASUS_90IW0122-B01UA_E3IWBDA34152 @ Living       [ /citec/csra/home/living/audiosource/asus_90iw0122-b01ua_e3iwbda34152/                                ]
b347951e-fa8d-46bf-b569-4263981b18b4  [ AudioSource-2                                             ]      ASUS_90IW0122-B01UA_E3IWBDA34183 @ Living       [ /citec/csra/home/living/audiosource/asus_90iw0122-b01ua_e3iwbda34183/                                ]
3d399924-f10a-4115-8fac-4435faabfd64  [ AudioSource-17                                            ]                            Kinect atl @ Living       [ /citec/csra/home/living/audiosource/kinect_atl/                                                      ]
c3b419cb-ced9-4a04-ac87-8c43314b646a  [ Battery-14                                                ]                LeftWindowHandleSensor @ Living       [ /citec/csra/home/living/battery/leftwindowhandlesensor/                                              ]
f7c093da-36e7-4544-8b4e-93181cd8683f  [ Battery-17                                                ]                  LeftWindowReedSwitch @ Living       [ /citec/csra/home/living/battery/leftwindowreedswitch/                                                ]
02c23816-6c38-4f09-9543-221bbcc64482  [ Battery-21                                                ]               RightWindowHandleSensor @ Living       [ /citec/csra/home/living/battery/rightwindowhandlesensor/                                             ]
3280c10f-7228-4b5d-a7ae-bbd98fb15293  [ Battery-34                                                ]                 RightWindowReedSwitch @ Living       [ /citec/csra/home/living/battery/rightwindowreedswitch/                                               ]
2f192f3f-1b57-477a-9812-421631d227ba  [ Button-8                                                  ]                      AllOff Apartment @ Living       [ /citec/csra/home/living/button/alloff_apartment/                                                     ]
0f50577f-3a2a-43c1-aaed-1741c1c597d0  [ Button-13                                                 ]                     Default Apartment @ Living       [ /citec/csra/home/living/button/default_apartment/                                                    ]
8651c4a2-0d24-4f1b-a8c6-6f93a438fe6a  [ Button-45                                                 ]                                resume @ Living       [ /citec/csra/home/living/button/resume/                                                               ]
58128d40-922e-4aa8-b413-2a5ec5bd5eae  [ Button-39                                                 ]                        Scenario: FSMT @ Living       [ /citec/csra/home/living/button/scenario_fsmt/                                                        ]
d9ee6f58-d127-430b-9970-bf72b9261de4  [ Button-3                                                  ]                        Scene: Default @ Living       [ /citec/csra/home/living/button/scene_default/                                                        ]
61f05c52-ac8c-4336-b2ae-39b435050d27  [ Button-43                                                 ]                               suspend @ Living       [ /citec/csra/home/living/button/suspend/                                                              ]
66b5b93f-9f33-4d7d-8e61-5951a22f5483  [ ColorableLight-17                                         ]                             CouchLamp @ Living       [ /citec/csra/home/living/colorablelight/couchlamp/                                                    ]
8f7b2513-4f33-4e8d-8b7e-eced4d54108c  [ ColorableLight-30                                         ]                                LLamp1 @ Living       [ /citec/csra/home/living/colorablelight/llamp1/                                                       ]
584bdf80-a86a-41ae-b074-f543d90b5628  [ ColorableLight-35                                         ]                                LLamp3 @ Living       [ /citec/csra/home/living/colorablelight/llamp3/                                                       ]
c8b2bfb5-45d9-4a2b-9994-d4062ab19cab  [ ColorableLight-27                                         ]                                LLamp6 @ Living       [ /citec/csra/home/living/colorablelight/llamp6/                                                       ]
fa3f910a-3c47-4691-a230-32e75909d371  [ ColorableLight-19                                         ]                            SLampLeft1 @ Living       [ /citec/csra/home/living/colorablelight/slampleft1/                                                   ]
34ca3b1a-417b-4c6c-bca0-3e8e77aacf9a  [ ColorableLight-41                                         ]                            SLampLeft2 @ Living       [ /citec/csra/home/living/colorablelight/slampleft2/                                                   ]
1e40044f-3b9f-4e5c-ae65-f7a37a462a92  [ ColorableLight-40                                         ]                           SLampRight1 @ Living       [ /citec/csra/home/living/colorablelight/slampright1/                                                  ]
2ca45216-ac17-4086-9e6c-f2a656f8b28d  [ ColorableLight-20                                         ]                           SLampRight2 @ Living       [ /citec/csra/home/living/colorablelight/slampright2/                                                  ]
3dfcddc2-3fa4-4f2d-824b-bc46934775d1  [ Device-16                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33883 @ Living       [ /citec/csra/home/living/device/asus_90iw0122-b01ua_e3iwbda33883/                                     ]
41f58f6b-28d3-48c7-90ed-9c81d7b74f49  [ Device-34                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34145 @ Living       [ /citec/csra/home/living/device/asus_90iw0122-b01ua_e3iwbda34145/                                     ]
84a03ce7-c133-43dc-849b-f6352704427e  [ Device-90                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34152 @ Living       [ /citec/csra/home/living/device/asus_90iw0122-b01ua_e3iwbda34152/                                     ]
e7eb4c9e-253f-4cf1-b08d-591ba35c1ffe  [ Device-11                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34183 @ Living       [ /citec/csra/home/living/device/asus_90iw0122-b01ua_e3iwbda34183/                                     ]
623f21e0-ff32-4e08-94cc-7052b5355abc  [ Device-108                                                ]                             CouchLamp @ Living       [ /citec/csra/home/living/device/couchlamp/                                                            ]
6678a48f-05a1-47f1-b962-35227c396675  [ Device-83                                                 ]                            Kinect atl @ Living       [ /citec/csra/home/living/device/kinect_atl/                                                           ]
d32f99bf-dc57-456e-9510-1146eba29bc4  [ Device-15                                                 ]                            Kinect pug @ Living       [ /citec/csra/home/living/device/kinect_pug/                                                           ]
bed3f15f-9b3d-4533-9d3c-be91df819829  [ Device-79                                                 ]                LeftWindowHandleSensor @ Living       [ /citec/csra/home/living/device/leftwindowhandlesensor/                                               ]
9420f93f-6236-44ff-ae31-2ce98e1db7e9  [ Device-54                                                 ]                  LeftWindowReedSwitch @ Living       [ /citec/csra/home/living/device/leftwindowreedswitch/                                                 ]
0e817514-cff1-4939-9a17-8ab97934024f  [ Device-30                                                 ]                                LLamp1 @ Living       [ /citec/csra/home/living/device/llamp1/                                                               ]
ec06d7c5-0852-4912-94ff-3d85e51a39c7  [ Device-122                                                ]                                LLamp3 @ Living       [ /citec/csra/home/living/device/llamp3/                                                               ]
066a42fb-7850-481a-a0e9-c11648064e2b  [ Device-10                                                 ]                                LLamp6 @ Living       [ /citec/csra/home/living/device/llamp6/                                                               ]
cf8982cc-7a33-4043-bb69-3f792ffc0b05  [ Device-68                                                 ]               RightWindowHandleSensor @ Living       [ /citec/csra/home/living/device/rightwindowhandlesensor/                                              ]
2f9003c9-e87d-425e-9601-4ae6360e2d7a  [ Device-9                                                  ]                 RightWindowReedSwitch @ Living       [ /citec/csra/home/living/device/rightwindowreedswitch/                                                ]
57c791f2-f080-44d0-834d-511e18b0aa31  [ Device-106                                                ]                            SLampLeft1 @ Living       [ /citec/csra/home/living/device/slampleft1/                                                           ]
aff0965a-0b08-46c8-a9b8-757058ecf5da  [ Device-58                                                 ]                            SLampLeft2 @ Living       [ /citec/csra/home/living/device/slampleft2/                                                           ]
9a22c198-89fb-41b7-81d2-79c76737ac6f  [ Device-120                                                ]                           SLampRight1 @ Living       [ /citec/csra/home/living/device/slampright1/                                                          ]
2ca48f76-c875-47a4-9c49-1f30bf1d64c4  [ Device-72                                                 ]                           SLampRight2 @ Living       [ /citec/csra/home/living/device/slampright2/                                                          ]
933f4d62-769a-4975-ad8d-45d36912b68b  [ Device-114                                                ]                     SportsDoorButtons @ Living       [ /citec/csra/home/living/device/sportsdoorbuttons/                                                    ]
dccc86dc-f764-4602-8ad4-945bf6851581  [ Dimmer-7                                                  ]                  CeilingCentralDimmer @ Living       [ /citec/csra/home/living/dimmer/ceilingcentraldimmer/                                                 ]
9b27299f-522f-4b62-854a-187d3909d5a9  [ Dimmer-1                                                  ]                           TableDimmer @ Living       [ /citec/csra/home/living/dimmer/tabledimmer/                                                          ]
59a6c6a9-bec5-4766-93a7-67782f4e36d4  [ Location-15, Dining                                       ]                                Dining @ Living       [ /citec/csra/home/living/dining/                                                                      ]
3873b82e-f9d0-44c8-b9ee-c7a40d438fca  [ Agent-20                                                  ]     TableDimmerPowerStateSynchroniser @ Dining       [ /citec/csra/home/living/dining/agent/powerstatesynchroniser/tabledimmerpowerstatesynchroniser/       ]
76ed8aec-fcc7-4e3b-a09b-f723b38ea5ab  [ Battery-18                                                ]                                 Table @ Dining       [ /citec/csra/home/living/dining/battery/table/                                                        ]
685b5740-5f56-4419-b838-d7be07307bfa  [ Button-16                                                 ]                         AllOff Dining @ Dining       [ /citec/csra/home/living/dining/button/alloff_dining/                                                 ]
65fcfdba-64bb-4d33-b37c-bbe7f6f807f3  [ Button-46                                                 ]                        AllOff Kitchen @ Dining       [ /citec/csra/home/living/dining/button/alloff_kitchen/                                                ]
b59bd1f5-0775-478a-b722-a2edbebf1b80  [ Button-38                                                 ]                         AllOff Lounge @ Dining       [ /citec/csra/home/living/dining/button/alloff_lounge/                                                 ]
646e0296-d189-4d31-b051-676979dcf1c3  [ Button-10                                                 ]                              Button 1 @ Dining       [ /citec/csra/home/living/dining/button/button_1/                                                      ]
ceb3d87c-9330-47d9-aea0-92c4cca06521  [ Button-23                                                 ]                              Button 2 @ Dining       [ /citec/csra/home/living/dining/button/button_2/                                                      ]
045b1d5c-1109-43e6-b5f6-dcf2b0b2ffdc  [ Button-14                                                 ]                              Button 3 @ Dining       [ /citec/csra/home/living/dining/button/button_3/                                                      ]
8a17706f-f479-46ab-bdeb-ad7ec59dfacc  [ Button-27                                                 ]                              Button 4 @ Dining       [ /citec/csra/home/living/dining/button/button_4/                                                      ]
807f30a3-f9b6-424c-8c1c-9127f12a905c  [ Button-37                                                 ]                        Default Dining @ Dining       [ /citec/csra/home/living/dining/button/default_dining/                                                ]
335b96cd-b2a5-4066-8a20-1aae7bc60a18  [ Button-6                                                  ]                       Default Kitchen @ Dining       [ /citec/csra/home/living/dining/button/default_kitchen/                                               ]
7d47fffe-96b8-4e85-9465-ec2baa4284c3  [ Button-49                                                 ]                        Default Lounge @ Dining       [ /citec/csra/home/living/dining/button/default_lounge/                                                ]
e0ed255a-21c1-4293-9283-f0ddc3aa242a  [ ColorableLight-9                                          ]                               Table_0 @ Dining       [ /citec/csra/home/living/dining/colorablelight/table_0/                                               ]
cdfa87e9-1c07-40f7-9acc-9e349a81f619  [ ColorableLight-16                                         ]                               Table_1 @ Dining       [ /citec/csra/home/living/dining/colorablelight/table_1/                                               ]
6bc1da9d-7941-4a32-bb2e-100c93e3b6bd  [ Device-123                                                ]                   ControlBelowButtons @ Dining       [ /citec/csra/home/living/dining/device/controlbelowbuttons/                                           ]
31b88fc4-67c2-4642-b2ed-cebae6196113  [ Device-6                                                  ]                        ControlButtons @ Dining       [ /citec/csra/home/living/dining/device/controlbuttons/                                                ]
f79b60b8-168c-4bf7-9b1b-87fb0c999224  [ Device-22                                                 ]                                 Table @ Dining       [ /citec/csra/home/living/dining/device/table/                                                         ]
df8cdeeb-bd9b-4590-be1f-15511debbbca  [ Device-55                                                 ]                               Table_0 @ Dining       [ /citec/csra/home/living/dining/device/table_0/                                                       ]
5e61acce-38e6-4830-8aaa-f92a4be2e0b6  [ Device-23                                                 ]                               Table_1 @ Dining       [ /citec/csra/home/living/dining/device/table_1/                                                       ]
26be053f-823c-4f78-b666-d020ad9b63e9  [ LightSensor-15                                            ]                                 Table @ Dining       [ /citec/csra/home/living/dining/lightsensor/table/                                                    ]
ce0cf493-3785-43c5-9069-3e8ff2ba640a  [ MotionDetector-1                                          ]                                 Table @ Dining       [ /citec/csra/home/living/dining/motiondetector/table/                                                 ]
32f9a1e2-0b56-4a31-a0bb-2b7042f47c20  [ Scene-28                                                  ]                         AllOff Dining @ Dining       [ /citec/csra/home/living/dining/scene/alloff_dining/                                                  ]
e800c2ca-a93c-401d-9310-07ee9d96e1aa  [ TamperDetector-17                                         ]                                 Table @ Dining       [ /citec/csra/home/living/dining/tamperdetector/table/                                                 ]
fdaa2517-6e70-4d8f-836a-d33e21a3465b  [ TemperatureController-1                                   ]           TemperatureControllerLiving @ Dining       [ /citec/csra/home/living/dining/temperaturecontroller/temperaturecontrollerliving/                    ]
ff66debf-653f-45c5-b151-0f315999e053  [ TemperatureSensor-12                                      ]                                 Table @ Dining       [ /citec/csra/home/living/dining/temperaturesensor/table/                                              ]
ed874b53-c88b-4b1c-82fb-5d97478b0980  [ UnitGroup-3                                               ]                           Table light @ Dining       [ /citec/csra/home/living/dining/unitgroup/table_light/                                                ]
fee13d9e-cdf3-442e-926e-a8a7eb6a6a41  [ Handle-5                                                  ]                LeftWindowHandleSensor @ Living       [ /citec/csra/home/living/handle/leftwindowhandlesensor/                                               ]
c79208cf-21f7-427d-8552-cd527481735f  [ Handle-4                                                  ]               RightWindowHandleSensor @ Living       [ /citec/csra/home/living/handle/rightwindowhandlesensor/                                              ]
eb89de19-36db-4f26-b8a5-a75df850892e  [ Location-6                                                ]                           Hometheater @ Living       [ /citec/csra/home/living/hometheater/                                                                 ]
0773e288-9c36-47d3-ab6d-df4502281648  [ Battery-20                                                ]                                 Media @ Hometheater  [ /citec/csra/home/living/hometheater/battery/media/                                                   ]
12572989-0ba8-4a3e-b2cd-55ab483850cb  [ Device-19                                                 ]                                 Media @ Hometheater  [ /citec/csra/home/living/hometheater/device/media/                                                    ]
deebbd1a-4db5-4125-84c9-b25c56e945fa  [ LightSensor-14                                            ]                                 Media @ Hometheater  [ /citec/csra/home/living/hometheater/lightsensor/media/                                               ]
f1f18c3b-bacb-48a2-be77-30aa03f9be84  [ MotionDetector-11                                         ]                                 Media @ Hometheater  [ /citec/csra/home/living/hometheater/motiondetector/media/                                            ]
4b75a113-3daa-4a01-b553-ec5009a63715  [ PowerConsumptionSensor-66                                 ]                                    TV @ Hometheater  [ /citec/csra/home/living/hometheater/powerconsumptionsensor/tv/                                       ]
6f6dce7d-e959-49ff-9bf9-6b15dcde3082  [ PowerSwitch-11                                            ]                                    TV @ Hometheater  [ /citec/csra/home/living/hometheater/powerswitch/tv/                                                  ]
daf24096-6420-43f2-b289-f2605acbdcbb  [ TamperDetector-10                                         ]                                 Media @ Hometheater  [ /citec/csra/home/living/hometheater/tamperdetector/media/                                            ]
b4978623-f8f5-4724-90db-243494223b6f  [ TemperatureSensor-1                                       ]                                 Media @ Hometheater  [ /citec/csra/home/living/hometheater/temperaturesensor/media/                                         ]
23771e28-3fbe-4753-8f1e-38f0deb16326  [ Location-28                                               ]                                  Info @ Living       [ /citec/csra/home/living/info/                                                                        ]
37298baf-95e4-41a7-9073-3e9a99fcdaf2  [ Battery-29                                                ]                               Control @ Info         [ /citec/csra/home/living/info/battery/control/                                                        ]
3269e1e7-28fc-4bdb-9ff7-33ce1b751364  [ Device-61                                                 ]                               Control @ Info         [ /citec/csra/home/living/info/device/control/                                                         ]
6d7df96c-d71c-45ad-a65f-ddc195f32f6b  [ LightSensor-11                                            ]                               Control @ Info         [ /citec/csra/home/living/info/lightsensor/control/                                                    ]
31270ca9-b672-4732-b666-24e35c63e4e3  [ MotionDetector-9                                          ]                               Control @ Info         [ /citec/csra/home/living/info/motiondetector/control/                                                 ]
2d68dad7-e96e-4da3-955f-56b8dc261a5a  [ TamperDetector-5                                          ]                               Control @ Info         [ /citec/csra/home/living/info/tamperdetector/control/                                                 ]
914d4f93-9510-4067-846e-57284fa25b53  [ TemperatureSensor-9                                       ]                               Control @ Info         [ /citec/csra/home/living/info/temperaturesensor/control/                                              ]
0df5bbb8-2d17-4f81-9b34-314a26ae713a  [ Location-5                                                ]                                Lounge @ Living       [ /citec/csra/home/living/lounge/                                                                      ]
ad9c25be-c7d0-4e58-bf28-38acb4861efe  [ Battery-25                                                ]                                 Couch @ Lounge       [ /citec/csra/home/living/lounge/battery/couch/                                                        ]
47e63f5a-ff30-4b0d-905a-815f94aa8b50  [ ColorableLight-26                                         ]                    CeilingCentralLamp @ Lounge       [ /citec/csra/home/living/lounge/colorablelight/ceilingcentrallamp/                                    ]
2ca1b701-cfde-4570-83de-46610e6718fc  [ ColorableLight-11                                         ]                     CeilingWindowLamp @ Lounge       [ /citec/csra/home/living/lounge/colorablelight/ceilingwindowlamp/                                     ]
3b0602c8-6524-4d08-b8c5-5d4f2e97b91b  [ Device-4                                                  ]                                 Couch @ Lounge       [ /citec/csra/home/living/lounge/device/couch/                                                         ]
d7f45b8f-f3b3-4d1a-b107-3231b4b33f3b  [ Device-49                                                 ]                         DimmActuator2 @ Lounge       [ /citec/csra/home/living/lounge/device/dimmactuator2/                                                 ]
96f07007-bcbd-4168-aee3-4f4413dfd768  [ Device-8                                                  ]                            LoungeLamp @ Lounge       [ /citec/csra/home/living/lounge/device/loungelamp/                                                    ]
6db185ba-2a83-4f07-8bdc-25a3cec87f3c  [ Device-118                                                ]                              MediaHue @ Lounge       [ /citec/csra/home/living/lounge/device/mediahue/                                                      ]
7e479546-e973-42cc-bc03-8a673bfceb70  [ Dimmer-9                                                  ]                   CeilingWindowDimmer @ Lounge       [ /citec/csra/home/living/lounge/dimmer/ceilingwindowdimmer/                                           ]
9bc4e2c2-1cf0-4f77-a32c-a786b2b81c43  [ LightSensor-2                                             ]                                 Couch @ Lounge       [ /citec/csra/home/living/lounge/lightsensor/couch/                                                    ]
a1a61734-f438-4bd4-9548-6b6f526941cb  [ MotionDetector-7                                          ]                                 Couch @ Lounge       [ /citec/csra/home/living/lounge/motiondetector/couch/                                                 ]
ddbd4adb-f20b-416f-8d86-8ac3337a3cd8  [ TamperDetector-3                                          ]                                 Couch @ Lounge       [ /citec/csra/home/living/lounge/tamperdetector/couch/                                                 ]
c9c06850-a890-4ab9-b271-0285dece7991  [ TemperatureSensor-10                                      ]                                 Couch @ Lounge       [ /citec/csra/home/living/lounge/temperaturesensor/couch/                                              ]
5f8cafff-2a65-44d2-8da6-ffccaea5ee15  [ Object-2, Plant                                           ]                             InfoPlant @ Living       [ /citec/csra/home/living/object/infoplant/                                                            ]
408828bd-a45e-407a-a0f6-e96a40dfb742  [ Object-4                                                  ]                           Moving Head @ Living       [ /citec/csra/home/living/object/moving_head/                                                          ]
02385583-abdb-4aba-9e34-1a17cd4c2c3d  [ PowerConsumptionSensor-47                                 ]              BeleuchtungZwischendecke @ Living       [ /citec/csra/home/living/powerconsumptionsensor/beleuchtungzwischendecke/                             ]
9aa10a07-69f9-4878-baf3-eb3bf81e2f22  [ PowerConsumptionSensor-21                                 ]                                  S6C3 @ Living       [ /citec/csra/home/living/powerconsumptionsensor/s6c3/                                                 ]
804542df-aebc-42cb-82ef-f03a97c96bf8  [ PowerSwitch-27                                            ]              BeleuchtungZwischendecke @ Living       [ /citec/csra/home/living/powerswitch/beleuchtungzwischendecke/                                        ]
0248c374-a6a3-4ab8-93a1-d1c249aae4dc  [ PowerSwitch-8                                             ]                                  S6C3 @ Living       [ /citec/csra/home/living/powerswitch/s6c3/                                                            ]
0b8a1503-7cc5-4e03-9ed5-9d3efed43832  [ ReedContact-2                                             ]                  LeftWindowReedSwitch @ Living       [ /citec/csra/home/living/reedcontact/leftwindowreedswitch/                                            ]
f08a94ae-79e3-4de7-a0b6-f167cdeb49b0  [ ReedContact-9                                             ]                 RightWindowReedSwitch @ Living       [ /citec/csra/home/living/reedcontact/rightwindowreedswitch/                                           ]
dc5e83cb-b8e9-4796-8fec-1a583efbc763  [ RollerShutter-5                                           ]                            LeftInside @ Living       [ /citec/csra/home/living/rollershutter/leftinside/                                                    ]
1fed230c-4b97-4d8d-83ec-6d212902014a  [ RollerShutter-8                                           ]                          MiddleInside @ Living       [ /citec/csra/home/living/rollershutter/middleinside/                                                  ]
6a2501d7-f625-4eb6-b46e-6e4f5c6001be  [ RollerShutter-3                                           ]                               Outside @ Living       [ /citec/csra/home/living/rollershutter/outside/                                                       ]
db655d6e-6ea9-41ea-9f88-cb892efe4f36  [ RollerShutter-7                                           ]                           RightInside @ Living       [ /citec/csra/home/living/rollershutter/rightinside/                                                   ]
d4b37376-9283-482e-9fff-e941a0aa31dd  [ RollerShutter-2                                           ]                      Roller Shutter 4 @ Living       [ /citec/csra/home/living/rollershutter/roller_shutter_4/                                              ]
f11a9399-3d0b-4745-b5e6-1145e87fb034  [ RollerShutter-4                                           ]                      Roller Shutter 6 @ Living       [ /citec/csra/home/living/rollershutter/roller_shutter_6/                                              ]
6401d091-fb99-4574-be22-ebb924ae4344  [ Scene-10                                                  ]                         AllOff Living @ Living       [ /citec/csra/home/living/scene/alloff_living/                                                         ]
8db4a9cb-b8b9-4b88-964e-d5be15e5bb39  [ Scene-11                                                  ]                               Reading @ Living       [ /citec/csra/home/living/scene/reading/                                                               ]
fab86638-192e-4231-a813-25a920a08089  [ UnitGroup-4                                               ]                          LLamp Living @ Living       [ /citec/csra/home/living/unitgroup/llamp_living/                                                      ]
46f1f139-5a7d-48ac-92f8-ded806a888d2  [ UnitGroup-5                                               ]                      SLampLeft Living @ Living       [ /citec/csra/home/living/unitgroup/slampleft_living/                                                  ]
c449cd71-98b9-4b1e-8cf8-95f08262ba98  [ UnitGroup-1                                               ]                     SLampRight Living @ Living       [ /citec/csra/home/living/unitgroup/slampright_living/                                                 ]
4643aa2d-36eb-40c5-8c7f-ad96caaa2ce1  [ VideoDepthSource-3                                        ]      ASUS_90IW0122-B01UA_E3IWBDA33883 @ Living       [ /citec/csra/home/living/videodepthsource/asus_90iw0122-b01ua_e3iwbda33883/                           ]
97288345-80a8-4805-b1d6-9d92196f1457  [ VideoDepthSource-18                                       ]      ASUS_90IW0122-B01UA_E3IWBDA34145 @ Living       [ /citec/csra/home/living/videodepthsource/asus_90iw0122-b01ua_e3iwbda34145/                           ]
46cfb588-9a97-4d50-8e6a-a173212d8ca0  [ VideoDepthSource-19                                       ]      ASUS_90IW0122-B01UA_E3IWBDA34152 @ Living       [ /citec/csra/home/living/videodepthsource/asus_90iw0122-b01ua_e3iwbda34152/                           ]
8fe75b2b-b254-4a3c-bf4d-b63aa357c856  [ VideoDepthSource-7                                        ]      ASUS_90IW0122-B01UA_E3IWBDA34183 @ Living       [ /citec/csra/home/living/videodepthsource/asus_90iw0122-b01ua_e3iwbda34183/                           ]
d954e37e-04f5-4f93-a2f6-4f40642214c0  [ VideoDepthSource-8                                        ]                            Kinect atl @ Living       [ /citec/csra/home/living/videodepthsource/kinect_atl/                                                 ]
0622bbf2-b6b0-4349-9506-e8f61136d9f4  [ VideoRgbSource-5                                          ]      ASUS_90IW0122-B01UA_E3IWBDA33883 @ Living       [ /citec/csra/home/living/videorgbsource/asus_90iw0122-b01ua_e3iwbda33883/                             ]
efb2575b-a61a-469b-b3cb-352e530b6600  [ VideoRgbSource-7                                          ]      ASUS_90IW0122-B01UA_E3IWBDA34145 @ Living       [ /citec/csra/home/living/videorgbsource/asus_90iw0122-b01ua_e3iwbda34145/                             ]
5429ef66-1f5f-4dc7-85fa-7ad0782dabb2  [ VideoRgbSource-17                                         ]      ASUS_90IW0122-B01UA_E3IWBDA34152 @ Living       [ /citec/csra/home/living/videorgbsource/asus_90iw0122-b01ua_e3iwbda34152/                             ]
b5dfc011-5d4b-4e9b-9c74-261ce2a85873  [ VideoRgbSource-6                                          ]      ASUS_90IW0122-B01UA_E3IWBDA34183 @ Living       [ /citec/csra/home/living/videorgbsource/asus_90iw0122-b01ua_e3iwbda34183/                             ]
c004ba7b-cf51-43f3-b470-c60e5a56bf99  [ VideoRgbSource-10                                         ]                            Kinect atl @ Living       [ /citec/csra/home/living/videorgbsource/kinect_atl/                                                   ]
0aad7cdf-6192-4f01-96cf-17bdf2bd6410  [ Location-30                                               ]                                Window @ Living       [ /citec/csra/home/living/window/                                                                      ]
71c8c69e-67d7-4d26-98dc-ab725940d092  [ Scene-17                                                  ]                      AllOff Apartment @ Home         [ /citec/csra/home/scene/alloff_apartment/                                                             ]
c6e58def-b52e-47e0-bf68-1988d2b7d4e9  [ Scene-21                                                  ]                                 Chill @ Home         [ /citec/csra/home/scene/chill/                                                                        ]
5a72cd49-0f8e-48c4-9ebb-dcc365feca1e  [ Scene-15                                                  ]                               Cooking @ Home         [ /citec/csra/home/scene/cooking/                                                                      ]
46352c4e-7bc5-4aff-909a-c73007861601  [ Scene-12                                                  ]                                  Cozy @ Home         [ /citec/csra/home/scene/cozy/                                                                         ]
48f82f45-cd4d-418c-9d6e-28d9a8097f8c  [ Scene-1                                                   ]                                 Debug @ Home         [ /citec/csra/home/scene/debug/                                                                        ]
a56d44a7-c798-44e2-a2b6-65cf41e69daf  [ Scene-23                                                  ]                               Default @ Home         [ /citec/csra/home/scene/default/                                                                      ]
1b8384ec-4eda-4e03-93db-035afc9defbb  [ Scene-30                                                  ]                     Default Apartment @ Home         [ /citec/csra/home/scene/default_apartment/                                                            ]
128e14b3-b814-444b-8fa9-db3206c29807  [ Scene-20                                                  ]                                  Demo @ Home         [ /citec/csra/home/scene/demo/                                                                         ]
cb1446a4-a5f4-46ca-85f5-f2e3cc6302ed  [ Scene-5                                                   ]                         Entertainment @ Home         [ /citec/csra/home/scene/entertainment/                                                                ]
6ca3001f-5265-437a-b9d6-ab032d5e0372  [ Scene-8                                                   ]                               Leaving @ Home         [ /citec/csra/home/scene/leaving/                                                                      ]
f9ab18d8-60bf-4ad8-933c-0686d6e9d19f  [ Scene-22                                                  ]                           Maintenance @ Home         [ /citec/csra/home/scene/maintenance/                                                                  ]
5ba0ba4e-e62b-4512-a62f-f63bc5f392d4  [ Scene-6                                                   ]                               Meeting @ Home         [ /citec/csra/home/scene/meeting/                                                                      ]
0b0c5679-1eb5-4a2c-986d-e8f994818263  [ Scene-9                                                   ]                                 Party @ Home         [ /citec/csra/home/scene/party/                                                                        ]
af53fd13-5f64-4bff-a716-ea45c4f990c3  [ Scene-4                                                   ]                             Reception @ Home         [ /citec/csra/home/scene/reception/                                                                    ]
fb9c22b8-1d58-44f6-867b-abb98f6911fd  [ Scene-13                                                  ]                                 Reset @ Home         [ /citec/csra/home/scene/reset/                                                                        ]
098d78a3-f721-4c89-9a70-ab707e8fbc3e  [ Scene-7                                                   ]                                Search @ Home         [ /citec/csra/home/scene/search/                                                                       ]
2b242fea-bf6c-40df-a763-eb1ba0515560  [ Scene-24                                                  ]                           Socializing @ Home         [ /citec/csra/home/scene/socializing/                                                                  ]
654c83c1-59f9-4ebc-b2e1-0874b0e53853  [ Scene-3                                                   ]                               Standby @ Home         [ /citec/csra/home/scene/standby/                                                                      ]
70926b9f-916d-4718-9328-5f98bab5e8f2  [ UnitGroup-6                                               ]                   Ceiling Light Group @ Home         [ /citec/csra/home/unitgroup/ceiling_light_group/                                                      ]
d788455f-0a3b-4742-97d4-93c4ede56e6f  [ VideoDepthSource-12                                       ]      ASUS_90IW0122-B01UA_E3IWBDA33553 @ Home         [ /citec/csra/home/videodepthsource/asus_90iw0122-b01ua_e3iwbda33553/                                  ]
60257a69-e42c-473d-9af0-ad334267ed9d  [ VideoDepthSource-2                                        ]      ASUS_90IW0122-B01UA_E3IWBDA33879 @ Home         [ /citec/csra/home/videodepthsource/asus_90iw0122-b01ua_e3iwbda33879/                                  ]
d46d5af3-cc77-49ed-849d-f63a723cb9b0  [ VideoDepthSource-13                                       ]      ASUS_90IW0122-B01UA_E3IWBDA33884 @ Home         [ /citec/csra/home/videodepthsource/asus_90iw0122-b01ua_e3iwbda33884/                                  ]
ded150ba-9708-46d0-aff6-9195d571e713  [ VideoDepthSource-10                                       ]      ASUS_90IW0122-B01UA_E3IWBDA34148 @ Home         [ /citec/csra/home/videodepthsource/asus_90iw0122-b01ua_e3iwbda34148/                                  ]
8e46e929-1f00-48a9-8456-e74bc3873ef3  [ VideoDepthSource-11                                       ]      ASUS_90IW0122-B01UA_E3IWBDA34180 @ Home         [ /citec/csra/home/videodepthsource/asus_90iw0122-b01ua_e3iwbda34180/                                  ]
c40128a6-3d28-4e16-a052-e9d5d41b41d3  [ VideoDepthSource-4                                        ]      ASUS_90IW0122-B01UA_E3IWBDA34182 @ Home         [ /citec/csra/home/videodepthsource/asus_90iw0122-b01ua_e3iwbda34182/                                  ]
ea222561-08ed-4227-acd6-a4aa0fa41439  [ VideoDepthSource-20                                       ]                            Kinect pug @ Home         [ /citec/csra/home/videodepthsource/kinect_pug/                                                        ]
b9a2f6d0-14cf-4540-9b07-54afe1293b6a  [ VideoRgbSource-16                                         ]      ASUS_90IW0122-B01UA_E3IWBDA33553 @ Home         [ /citec/csra/home/videorgbsource/asus_90iw0122-b01ua_e3iwbda33553/                                    ]
b9caecfa-3fe0-4f67-a78b-efea784b65b8  [ VideoRgbSource-20                                         ]      ASUS_90IW0122-B01UA_E3IWBDA33879 @ Home         [ /citec/csra/home/videorgbsource/asus_90iw0122-b01ua_e3iwbda33879/                                    ]
ac76c854-621f-4de5-9522-352a284f2332  [ VideoRgbSource-14                                         ]      ASUS_90IW0122-B01UA_E3IWBDA33884 @ Home         [ /citec/csra/home/videorgbsource/asus_90iw0122-b01ua_e3iwbda33884/                                    ]
ed399374-f1da-4411-8671-29dd992ddb8b  [ VideoRgbSource-19                                         ]      ASUS_90IW0122-B01UA_E3IWBDA34148 @ Home         [ /citec/csra/home/videorgbsource/asus_90iw0122-b01ua_e3iwbda34148/                                    ]
cc34d988-8510-4dd6-96c5-5ba742204050  [ VideoRgbSource-2                                          ]      ASUS_90IW0122-B01UA_E3IWBDA34180 @ Home         [ /citec/csra/home/videorgbsource/asus_90iw0122-b01ua_e3iwbda34180/                                    ]
d1ca7bd9-5a4f-484b-b430-3cc8f3a6479b  [ VideoRgbSource-8                                          ]      ASUS_90IW0122-B01UA_E3IWBDA34182 @ Home         [ /citec/csra/home/videorgbsource/asus_90iw0122-b01ua_e3iwbda34182/                                    ]
0eb5f2fb-a74e-428f-88bd-3a4ce255bebe  [ VideoRgbSource-11                                         ]                            Kinect pug @ Home         [ /citec/csra/home/videorgbsource/kinect_pug/                                                          ]
7ad72d61-e398-414b-9c5a-173242912ce6  [ Location-2                                                ]                             RobotRoom @ CSRA         [ /citec/csra/robotroom/                                                                               ]
be184a0f-8401-46e0-a1c8-999ca4704260  [ Agent-13                                                  ]                       StandyRobotRoom @ RobotRoom    [ /citec/csra/robotroom/agent/standby/standyrobotroom/                                                 ]
e8199b6a-96e5-453b-8dd7-f7193ea78728  [ AudioSource-9                                             ]      ASUS_90IW0122-B01UA_E3IWBDA33550 @ RobotRoom    [ /citec/csra/robotroom/audiosource/asus_90iw0122-b01ua_e3iwbda33550/                                  ]
8efa5936-b891-4f9a-9e2c-e7f4afa5341e  [ AudioSource-8                                             ]      ASUS_90IW0122-B01UA_E3IWBDA33878 @ RobotRoom    [ /citec/csra/robotroom/audiosource/asus_90iw0122-b01ua_e3iwbda33878/                                  ]
0b3237bc-38e5-44dc-8b5c-2d337759ceb8  [ AudioSource-11                                            ]      ASUS_90IW0122-B01UA_E3IWBDA34149 @ RobotRoom    [ /citec/csra/robotroom/audiosource/asus_90iw0122-b01ua_e3iwbda34149/                                  ]
3dfba6c8-ce84-4768-92f9-0ef68a5ad975  [ AudioSource-14                                            ]      ASUS_90IW0122-B01UA_E3IWBDA34150 @ RobotRoom    [ /citec/csra/robotroom/audiosource/asus_90iw0122-b01ua_e3iwbda34150/                                  ]
d317fe15-5f9c-4f88-9db9-19e268ec4923  [ Battery-30                                                ]                               Pathway @ RobotRoom    [ /citec/csra/robotroom/battery/pathway/                                                               ]
9c467222-1d2a-4244-b20a-ba9393f61693  [ Battery-23                                                ]             SportsToControlReedSwitch @ RobotRoom    [ /citec/csra/robotroom/battery/sportstocontrolreedswitch/                                             ]
2c6fd4c6-b5d6-47b9-8ff7-383cae27d58b  [ Battery-4                                                 ]              SportsToLivingReedSwitch @ RobotRoom    [ /citec/csra/robotroom/battery/sportstolivingreedswitch/                                              ]
f8f3c6fe-bbd9-4161-a1df-7a3f59d7d050  [ Battery-9                                                 ]                    WindowHandleSensor @ RobotRoom    [ /citec/csra/robotroom/battery/windowhandlesensor/                                                    ]
3f37ba81-6e95-4a27-ae75-2ef08797e62e  [ Battery-7                                                 ]                      WindowReedSwitch @ RobotRoom    [ /citec/csra/robotroom/battery/windowreedswitch/                                                      ]
8a38a631-9ced-4b38-97b7-680b5db36adb  [ Button-7                                                  ]                      AllOff Apartment @ RobotRoom    [ /citec/csra/robotroom/button/alloff_apartment/                                                       ]
30c7dabd-c82d-4d4d-ab21-f19075979f57  [ Button-18                                                 ]                     AllOff Robot Room @ RobotRoom    [ /citec/csra/robotroom/button/alloff_robot_room/                                                      ]
aae84619-dd2b-4f98-97f0-0722e0fc7445  [ Button-28                                                 ]                              Button 1 @ RobotRoom    [ /citec/csra/robotroom/button/button_1/                                                               ]
abb42a9a-fa54-4456-b6a6-c254e39a87a9  [ Button-41                                                 ]                              Button 2 @ RobotRoom    [ /citec/csra/robotroom/button/button_2/                                                               ]
64b0bb4d-0f88-4b1d-9e4a-6b2dad7a8022  [ Button-50                                                 ]                              Button 3 @ RobotRoom    [ /citec/csra/robotroom/button/button_3/                                                               ]
d01ca6db-1a56-46ed-8d44-0629fcf5e4cf  [ Button-12                                                 ]                              Button 4 @ RobotRoom    [ /citec/csra/robotroom/button/button_4/                                                               ]
916bfdf8-51db-4b0e-a2a6-dba15837b28a  [ Button-21                                                 ]                                  Cozy @ RobotRoom    [ /citec/csra/robotroom/button/cozy/                                                                   ]
f1e12c87-8072-47f9-a71f-658fafe85056  [ Button-51                                                 ]                     Default Apartment @ RobotRoom    [ /citec/csra/robotroom/button/default_apartment/                                                      ]
aacc027c-ee25-4c7b-aba6-bd6109dcb6e0  [ Button-53                                                 ]                    Default Robot Room @ RobotRoom    [ /citec/csra/robotroom/button/default_robot_room/                                                     ]
379449e0-4ee4-4eb0-842b-2e05ba4e68ec  [ Button-36                                                 ]                               Standby @ RobotRoom    [ /citec/csra/robotroom/button/standby/                                                                ]
80562845-b451-4f43-ab83-3236611c4c84  [ ColorableLight-31                                         ]                          SLampWindow1 @ RobotRoom    [ /citec/csra/robotroom/colorablelight/slampwindow1/                                                   ]
471470f4-2f37-4cef-9b6b-0299631b0690  [ ColorableLight-15                                         ]                          SLampWindow2 @ RobotRoom    [ /citec/csra/robotroom/colorablelight/slampwindow2/                                                   ]
932b4f48-59d9-474a-b83e-82c4218b5ecf  [ ColorableLight-1                                          ]              Table Corner Lamp Bottom @ RobotRoom    [ /citec/csra/robotroom/colorablelight/table_corner_lamp_bottom/                                       ]
0b26889b-ff0a-4ba0-98ac-51a481c6b559  [ ColorableLight-36                                         ]                 Table Corner Lamp Top @ RobotRoom    [ /citec/csra/robotroom/colorablelight/table_corner_lamp_top/                                          ]
748d8041-37bf-4b9f-943f-d0500f827846  [ Device-87                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33550 @ RobotRoom    [ /citec/csra/robotroom/device/asus_90iw0122-b01ua_e3iwbda33550/                                       ]
aac2ded7-3860-413f-b28b-854f54e76c92  [ Device-13                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA33878 @ RobotRoom    [ /citec/csra/robotroom/device/asus_90iw0122-b01ua_e3iwbda33878/                                       ]
73641725-f39c-47d0-8129-6d8967b43f89  [ Device-99                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34149 @ RobotRoom    [ /citec/csra/robotroom/device/asus_90iw0122-b01ua_e3iwbda34149/                                       ]
0d1ff388-ef05-4141-99d2-f8fb75dc5670  [ Device-44                                                 ]      ASUS_90IW0122-B01UA_E3IWBDA34150 @ RobotRoom    [ /citec/csra/robotroom/device/asus_90iw0122-b01ua_e3iwbda34150/                                       ]
83d9370e-6d10-4364-a8aa-91f9e954b161  [ Device-78                                                 ]                                 floor @ RobotRoom    [ /citec/csra/robotroom/device/floor/                                                                  ]
6cc6e8dd-6d22-4fdc-a1e0-52bed009bdf2  [ Device-101                                                ]           Future-Shape_SE3-P_02848000 @ RobotRoom    [ /citec/csra/robotroom/device/future-shape_se3-p_02848000/                                            ]
35ac10cc-364a-464f-bcac-0dba69b42ff7  [ Device-75                                                 ]                               Pathway @ RobotRoom    [ /citec/csra/robotroom/device/pathway/                                                                ]
e8815586-ddf8-490a-99e1-5592a2014b55  [ Device-81                                                 ]                   PathwayBelowButtons @ RobotRoom    [ /citec/csra/robotroom/device/pathwaybelowbuttons/                                                    ]
1fb25195-1d78-447f-a1aa-3fb1db979245  [ Device-43                                                 ]                       PathwayButtons1 @ RobotRoom    [ /citec/csra/robotroom/device/pathwaybuttons1/                                                        ]
4f5245e0-73e2-4e36-a2d0-448f7808d1fb  [ Device-20                                                 ]                          SLampWindow1 @ RobotRoom    [ /citec/csra/robotroom/device/slampwindow1/                                                           ]
bcff6442-c4c2-43c7-a315-3e6447308682  [ Device-109                                                ]                          SLampWindow2 @ RobotRoom    [ /citec/csra/robotroom/device/slampwindow2/                                                           ]
5c3b78f4-2ea0-44b0-84ac-3d2ed211f412  [ Device-82                                                 ]             SportsToControlReedSwitch @ RobotRoom    [ /citec/csra/robotroom/device/sportstocontrolreedswitch/                                              ]
9f7dc1ba-7059-4823-a8d7-61ed4ef58cfa  [ Device-89                                                 ]              SportsToLivingReedSwitch @ RobotRoom    [ /citec/csra/robotroom/device/sportstolivingreedswitch/                                               ]
6bf6c556-1312-462f-baaf-447effcfd6b8  [ Device-117                                                ]              Table Corner Lamp Bottom @ RobotRoom    [ /citec/csra/robotroom/device/table_corner_lamp_bottom/                                               ]
4e432dbd-11da-45c2-ba00-940a6ec89cb7  [ Device-32                                                 ]                 Table Corner Lamp Top @ RobotRoom    [ /citec/csra/robotroom/device/table_corner_lamp_top/                                                  ]
9a7c521e-f436-4f62-8477-f71bb478ba8a  [ Device-100                                                ]                    WindowHandleSensor @ RobotRoom    [ /citec/csra/robotroom/device/windowhandlesensor/                                                     ]
01841d35-68b0-46ee-8248-f21fb7e464c3  [ Device-37                                                 ]                      WindowReedSwitch @ RobotRoom    [ /citec/csra/robotroom/device/windowreedswitch/                                                       ]
fd3443a8-8c3e-4894-ae1b-32c5dcb1b095  [ Dimmer-2                                                  ]                           RightDimmer @ RobotRoom    [ /citec/csra/robotroom/dimmer/rightdimmer/                                                            ]
5552e4bd-85f9-467d-8de7-9f040e106ac1  [ Handle-3                                                  ]                    WindowHandleSensor @ RobotRoom    [ /citec/csra/robotroom/handle/windowhandlesensor/                                                     ]
dae2ee74-5748-46bb-a95a-1054ce40ea0a  [ Location-14                                               ]                           Interaction @ RobotRoom    [ /citec/csra/robotroom/interaction/                                                                   ]
65a22ae1-d80c-4b34-b1a0-9f3319718bfd  [ Battery-3                                                 ]                           Interaction @ Interaction  [ /citec/csra/robotroom/interaction/battery/interaction/                                               ]
80de8bfe-04a0-455a-94b8-f27b2ffabd16  [ Device-107                                                ]                           Interaction @ Interaction  [ /citec/csra/robotroom/interaction/device/interaction/                                                ]
fec3cb67-ab1a-4f5d-8ea3-7e3c5d68a287  [ Dimmer-4                                                  ]                            LeftDimmer @ Interaction  [ /citec/csra/robotroom/interaction/dimmer/leftdimmer/                                                 ]
4d4bc135-b6d8-4e21-82fa-57509403bef3  [ LightSensor-8                                             ]                           Interaction @ Interaction  [ /citec/csra/robotroom/interaction/lightsensor/interaction/                                           ]
d42de094-e6f5-434e-a443-cd1ec3d81ef9  [ MotionDetector-4                                          ]                           Interaction @ Interaction  [ /citec/csra/robotroom/interaction/motiondetector/interaction/                                        ]
e0816dc4-f3a1-40e5-bc2d-c490a818eff4  [ TamperDetector-9                                          ]                           Interaction @ Interaction  [ /citec/csra/robotroom/interaction/tamperdetector/interaction/                                        ]
6a7bcd7c-4662-413e-b8fd-b0d824cbc245  [ TemperatureSensor-16                                      ]                           Interaction @ Interaction  [ /citec/csra/robotroom/interaction/temperaturesensor/interaction/                                     ]
61ac1b86-2983-41cd-89d0-3e5148a18857  [ LightSensor-9                                             ]                               Pathway @ RobotRoom    [ /citec/csra/robotroom/lightsensor/pathway/                                                           ]
53f7cd18-8491-48b4-ba77-9612321b342c  [ MotionDetector-5                                          ]                               Pathway @ RobotRoom    [ /citec/csra/robotroom/motiondetector/pathway/                                                        ]
9f5e28a1-e085-4b15-9640-faecaa7a8c6c  [ ReedContact-10                                            ]             SportsToControlReedSwitch @ RobotRoom    [ /citec/csra/robotroom/reedcontact/sportstocontrolreedswitch/                                         ]
001b2abc-83c4-45b6-ae29-e16d69758d1e  [ ReedContact-3                                             ]              SportsToLivingReedSwitch @ RobotRoom    [ /citec/csra/robotroom/reedcontact/sportstolivingreedswitch/                                          ]
6f6823e9-bdbb-4731-87c6-eae2c792cd22  [ ReedContact-16                                            ]                      WindowReedSwitch @ RobotRoom    [ /citec/csra/robotroom/reedcontact/windowreedswitch/                                                  ]
f625d77e-e8dc-456f-a9b2-bc043f519e6e  [ RollerShutter-1                                           ]                                Inside @ RobotRoom    [ /citec/csra/robotroom/rollershutter/inside/                                                          ]
6f91d593-4dcc-4cbe-a1df-cf5a99c9b4ab  [ RollerShutter-6                                           ]                               Outside @ RobotRoom    [ /citec/csra/robotroom/rollershutter/outside/                                                         ]
7239135c-ab69-4b06-9d69-18ef7fc1a000  [ Scene-2                                                   ]                     AllOff Robot Room @ RobotRoom    [ /citec/csra/robotroom/scene/alloff_robot_room/                                                       ]
e0f96204-9494-428c-979b-8a50a87986f8  [ TamperDetector-16                                         ]                               Pathway @ RobotRoom    [ /citec/csra/robotroom/tamperdetector/pathway/                                                        ]
8571a265-c3c6-474a-a6e1-91456396e46f  [ TemperatureController-3                                   ]           TemperatureControllerSports @ RobotRoom    [ /citec/csra/robotroom/temperaturecontroller/temperaturecontrollersports/                             ]
e6901e9e-d975-4332-88df-f7e4b5f2f82e  [ TemperatureSensor-17                                      ]                               Pathway @ RobotRoom    [ /citec/csra/robotroom/temperaturesensor/pathway/                                                     ]
19910d7f-54e0-4b0a-99fb-d52f1e9d6a12  [ VideoDepthSource-14                                       ]      ASUS_90IW0122-B01UA_E3IWBDA33550 @ RobotRoom    [ /citec/csra/robotroom/videodepthsource/asus_90iw0122-b01ua_e3iwbda33550/                             ]
1f8b8261-a598-4950-b5c6-17d2819def20  [ VideoDepthSource-15                                       ]      ASUS_90IW0122-B01UA_E3IWBDA33878 @ RobotRoom    [ /citec/csra/robotroom/videodepthsource/asus_90iw0122-b01ua_e3iwbda33878/                             ]
e9af3e32-8c3a-43b0-af0d-2122b9f37b90  [ VideoDepthSource-9                                        ]      ASUS_90IW0122-B01UA_E3IWBDA34149 @ RobotRoom    [ /citec/csra/robotroom/videodepthsource/asus_90iw0122-b01ua_e3iwbda34149/                             ]
654bdaf7-8001-4068-98d9-aacfee21464a  [ VideoDepthSource-17                                       ]      ASUS_90IW0122-B01UA_E3IWBDA34150 @ RobotRoom    [ /citec/csra/robotroom/videodepthsource/asus_90iw0122-b01ua_e3iwbda34150/                             ]
aec0a4d5-c8b9-4843-b13c-789d87434452  [ VideoRgbSource-3                                          ]      ASUS_90IW0122-B01UA_E3IWBDA33550 @ RobotRoom    [ /citec/csra/robotroom/videorgbsource/asus_90iw0122-b01ua_e3iwbda33550/                               ]
d26af27e-81d6-4659-8c8e-a4ae6256e44c  [ VideoRgbSource-4                                          ]      ASUS_90IW0122-B01UA_E3IWBDA33878 @ RobotRoom    [ /citec/csra/robotroom/videorgbsource/asus_90iw0122-b01ua_e3iwbda33878/                               ]
29c138e4-c1b3-494c-9510-1e6dd8cf4f57  [ VideoRgbSource-9                                          ]      ASUS_90IW0122-B01UA_E3IWBDA34149 @ RobotRoom    [ /citec/csra/robotroom/videorgbsource/asus_90iw0122-b01ua_e3iwbda34149/                               ]
9b7bfa9f-1c46-4e96-abc6-cd6b902dec11  [ VideoRgbSource-18                                         ]      ASUS_90IW0122-B01UA_E3IWBDA34150 @ RobotRoom    [ /citec/csra/robotroom/videorgbsource/asus_90iw0122-b01ua_e3iwbda34150/                               ]
171229c4-74a5-48fe-b424-9afd2a38b4bc  [ UnitGroup-8, RecordLight                                  ]                         Record Lights @ CSRA         [ /citec/csra/unitgroup/record_lights/                                                                 ]
9be1344a-41f1-406b-bdae-41bfd5368f13  [ Location-8                                                ]                               Outdoor @ Citec        [ /citec/outdoor/                                                                                      ]
02bd0cd8-5158-4d65-a716-b54cdd0812bb  [ Battery-10                                                ]                              Entrance @ Outdoor      [ /citec/outdoor/battery/entrance/                                                                     ]
016a98c6-f0d3-4f79-9feb-874807798480  [ Location-24                                               ]                              Corridor @ Outdoor      [ /citec/outdoor/corridor/                                                                             ]
e4b0503e-4a3a-40f4-9a80-61e89d6874d2  [ Device-65                                                 ]                              Entrance @ Outdoor      [ /citec/outdoor/device/entrance/                                                                      ]
3a600e53-132a-46f0-ba7c-4882cbfca1af  [ Device-40                                                 ]          Intel_D4250WYKH_G6YK42002587 @ Outdoor      [ /citec/outdoor/device/intel_d4250wykh_g6yk42002587/                                                  ]
ad29da51-426b-4816-a5fb-6f6f92465a99  [ LightSensor-13                                            ]                              Entrance @ Outdoor      [ /citec/outdoor/lightsensor/entrance/                                                                 ]
c9f99e1c-7922-4fb6-9f8a-c1e30fd3fb2d  [ MotionDetector-2                                          ]                              Entrance @ Outdoor      [ /citec/outdoor/motiondetector/entrance/                                                              ]
9408f3eb-a56d-49d5-abb1-4c380eb5c334  [ TamperDetector-4                                          ]                              Entrance @ Outdoor      [ /citec/outdoor/tamperdetector/entrance/                                                              ]
cba4f819-9318-464f-86f9-af354c92d2d1  [ TemperatureSensor-2                                       ]                              Entrance @ Outdoor      [ /citec/outdoor/temperaturesensor/entrance/                                                           ]
01ae2995-39eb-4ca4-8694-108055a1b007  [ User-1                                                    ]            bcarlmey (Birte Carlmeyer) @ Home         [ /manager/user/bcarlmey/                                                                              ]
ef171da7-95ad-4f16-979d-fa94daaf1031  [ User-5                                                    ]               Divine (Marian Pohling) @ Home         [ /manager/user/divine/                                                                                ]
681b7ef1-011b-4bae-979d-c5e9e598fc2d  [ User-3                                                    ]                   MZB (Sebastian MZB) @ Home         [ /manager/user/mzb/                                                                                   ]
b7d2a565-7f40-4bb7-bd23-fee9480f7569  [ User-8                                                    ]              nkoester (Norman Köster) @ Home         [ /manager/user/nkoester/                                                                              ]
cc1ec50b-9582-469f-a8fc-54a6bffbcc9b  [ User-6                                                    ]           pholthau (Patrick Holthaus) @ Home         [ /manager/user/pholthau/                                                                              ]
0bcc7fe2-c336-47a0-9446-7767e9076fdb  [ User-2                                                    ]              pLeminoq (Tamino Huxohl) @ Home         [ /manager/user/pleminoq/                                                                              ]
cad3d333-7aaf-4ebc-835b-5ab7cb539d4f  [ User-4                                                    ]                     rzorn (Rene Zorn) @ Home         [ /manager/user/rzorn/                                                                                 ]
bb0ad996-407a-44c2-9c89-2c9ac22fa67c  [ User-7                                                    ]             vrichter (Viktor Richter) @ Home         [ /manager/user/vrichter/                                                                              ]

1.5.5. BCO - RSB Interface

To get an quite nice overview about the current bco - rsb interface and its provided rsb pattern, you can use the command bco-print-interface-rsb.

$ bco-print-interface-rsb
==================================================
BaseCubeOne - Registry (Service Discovery) RSB API
==================================================

General Information:

    Registry Scope Structure:
        / registry / <RegistryName> / <CommunicationPattern> : <RegistryDataType>

    Each registry publishes status changes via a dedecated rsb informer on the following status scope:
        / <RegistryScope> / status

    Each registry provides a set of rsb remote procedure call (rpc) methods accessable by there control scope:
        / <RegistryScope> / ctrl


This is the set of rpc methods provided by all registries:

    All
        / <RegistryScope> / ctrl / ping() : The connection delay as integer
        / <RegistryScope> / ctrl / requestStatus() : <RegistryDataType>

This is the registry specific set of rpc methods:

    AgentRegistry : rst.domotic.registry.AgentRegistryDataType.AgentRegistryData
        / registry / agent / ctrl / containsAgentClass(rst.domotic.unit.agent.AgentClassType.AgentClass) : Boolean
        / registry / agent / ctrl / containsAgentClassById(String) : Boolean
        / registry / agent / ctrl / containsAgentConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / agent / ctrl / containsAgentConfigById(String) : Boolean
        / registry / agent / ctrl / getAgentClassById(String) : rst.domotic.unit.agent.AgentClassType.AgentClass
        / registry / agent / ctrl / getAgentConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / agent / ctrl / isAgentClassRegistryConsistent() : Boolean
        / registry / agent / ctrl / isAgentClassRegistryReadOnly() : Boolean
        / registry / agent / ctrl / isAgentConfigRegistryConsistent() : Boolean
        / registry / agent / ctrl / isAgentConfigRegistryReadOnly() : Boolean
        / registry / agent / ctrl / isReady() : Boolean
        / registry / agent / ctrl / registerAgentClass(rst.domotic.unit.agent.AgentClassType.AgentClass) : rst.domotic.unit.agent.AgentClassType.AgentClass
        / registry / agent / ctrl / registerAgentConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / agent / ctrl / removeAgentClass(rst.domotic.unit.agent.AgentClassType.AgentClass) : rst.domotic.unit.agent.AgentClassType.AgentClass
        / registry / agent / ctrl / removeAgentConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / agent / ctrl / updateAgentClass(rst.domotic.unit.agent.AgentClassType.AgentClass) : rst.domotic.unit.agent.AgentClassType.AgentClass
        / registry / agent / ctrl / updateAgentConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / agent / ctrl / waitUntilReady()

    AppRegistry : rst.domotic.registry.AppRegistryDataType.AppRegistryData
        / registry / app / ctrl / containsAppClass(rst.domotic.unit.app.AppClassType.AppClass) : Boolean
        / registry / app / ctrl / containsAppClassById(String) : Boolean
        / registry / app / ctrl / containsAppConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / app / ctrl / containsAppConfigById(String) : Boolean
        / registry / app / ctrl / getAppClassById(String) : rst.domotic.unit.app.AppClassType.AppClass
        / registry / app / ctrl / getAppConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / app / ctrl / isAppClassRegistryConsistent() : Boolean
        / registry / app / ctrl / isAppClassRegistryReadOnly() : Boolean
        / registry / app / ctrl / isAppConfigRegistryConsistent() : Boolean
        / registry / app / ctrl / isAppConfigRegistryReadOnly() : Boolean
        / registry / app / ctrl / isReady() : Boolean
        / registry / app / ctrl / registerAppClass(rst.domotic.unit.app.AppClassType.AppClass) : rst.domotic.unit.app.AppClassType.AppClass
        / registry / app / ctrl / registerAppConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / app / ctrl / removeAppClass(rst.domotic.unit.app.AppClassType.AppClass) : rst.domotic.unit.app.AppClassType.AppClass
        / registry / app / ctrl / removeAppConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / app / ctrl / updateAppClass(rst.domotic.unit.app.AppClassType.AppClass) : rst.domotic.unit.app.AppClassType.AppClass
        / registry / app / ctrl / updateAppConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / app / ctrl / waitUntilReady()

    DeviceRegistry : rst.domotic.registry.DeviceRegistryDataType.DeviceRegistryData
        / registry / device / ctrl / containsDeviceClass(rst.domotic.unit.device.DeviceClassType.DeviceClass) : Boolean
        / registry / device / ctrl / containsDeviceClassById(String) : Boolean
        / registry / device / ctrl / containsDeviceConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / device / ctrl / containsDeviceConfigById(String) : Boolean
        / registry / device / ctrl / containsUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / device / ctrl / containsUnitGroupConfigById(String) : Boolean
        / registry / device / ctrl / containsUnitTemplate(rst.domotic.unit.UnitTemplateType.UnitTemplate) : Boolean
        / registry / device / ctrl / containsUnitTemplateById(String) : Boolean
        / registry / device / ctrl / getDeviceClassById(String) : rst.domotic.unit.device.DeviceClassType.DeviceClass
        / registry / device / ctrl / getDeviceConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getServiceConfigs(rst.domotic.service.ServiceTemplateType.ServiceTemplate.ServiceType) : java.util.Listrst.domotic.service.ServiceConfigType.ServiceConfig
        / registry / device / ctrl / getSubUnitTypesOfUnitType(rst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType) : java.util.Listrst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType
        / registry / device / ctrl / getUnitConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitConfigByScope(rst.rsb.ScopeType.Scope) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitConfigsByUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : java.util.Listrst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitConfigsByUnitTypeAndServiceTypes(rst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType) : java.util.Listrst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitGroupConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitGroupConfigs() : java.util.Listrst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitGroupConfigsByServiceTypes(java.util.List) : java.util.Listrst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitGroupConfigsByUnitType(rst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType) : java.util.Listrst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitGroupConfigsbyUnitConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : java.util.Listrst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / getUnitTemplateById(String) : rst.domotic.unit.UnitTemplateType.UnitTemplate
        / registry / device / ctrl / isDeviceClassRegistryConsistent() : Boolean
        / registry / device / ctrl / isDeviceClassRegistryReadOnly() : Boolean
        / registry / device / ctrl / isDeviceConfigRegistryConsistent() : Boolean
        / registry / device / ctrl / isDeviceConfigRegistryReadOnly() : Boolean
        / registry / device / ctrl / isReady() : Boolean
        / registry / device / ctrl / isUnitGroupConfigRegistryConsistent() : Boolean
        / registry / device / ctrl / isUnitGroupConfigRegistryReadOnly() : Boolean
        / registry / device / ctrl / isUnitTemplateRegistryConsistent() : Boolean
        / registry / device / ctrl / isUnitTemplateRegistryReadOnly() : Boolean
        / registry / device / ctrl / registerDeviceClass(rst.domotic.unit.device.DeviceClassType.DeviceClass) : rst.domotic.unit.device.DeviceClassType.DeviceClass
        / registry / device / ctrl / registerDeviceConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / registerUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / removeDeviceClass(rst.domotic.unit.device.DeviceClassType.DeviceClass) : rst.domotic.unit.device.DeviceClassType.DeviceClass
        / registry / device / ctrl / removeDeviceConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / removeUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / updateDeviceClass(rst.domotic.unit.device.DeviceClassType.DeviceClass) : rst.domotic.unit.device.DeviceClassType.DeviceClass
        / registry / device / ctrl / updateDeviceConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / updateUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / device / ctrl / updateUnitTemplate(rst.domotic.unit.UnitTemplateType.UnitTemplate) : rst.domotic.unit.UnitTemplateType.UnitTemplate
        / registry / device / ctrl / waitUntilReady()

    LocationRegistry : rst.domotic.registry.LocationRegistryDataType.LocationRegistryData
        / registry / location / ctrl / computeUnitIntersection(rst.tracking.PointingRay3DFloatType.PointingRay3DFloat) : rst.domotic.unit.UnitProbabilityCollectionType.UnitProbabilityCollection
        / registry / location / ctrl / computeUnitIntersection(rst.tracking.PointingRay3DFloatCollectionType.PointingRay3DFloatCollection) : rst.domotic.unit.UnitProbabilityCollectionType.UnitProbabilityCollection
        / registry / location / ctrl / containsConnectionConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / location / ctrl / containsConnectionConfigById(String) : Boolean
        / registry / location / ctrl / containsLocationConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / location / ctrl / containsLocationConfigById(String) : Boolean
        / registry / location / ctrl / getConnectionConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / getLocationConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / isConnectionConfigRegistryConsistent() : Boolean
        / registry / location / ctrl / isConnectionConfigRegistryReadOnly() : Boolean
        / registry / location / ctrl / isLocationConfigRegistryConsistent() : Boolean
        / registry / location / ctrl / isReady() : Boolean
        / registry / location / ctrl / registerConnectionConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / registerLocationConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / removeConnectionConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / removeLocationConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / updateConnectionConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / updateLocationConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / location / ctrl / waitUntilReady()

    SceneRegistry : rst.domotic.registry.SceneRegistryDataType.SceneRegistryData
        / registry / scene / ctrl / containsSceneConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / scene / ctrl / containsSceneConfigById(String) : Boolean
        / registry / scene / ctrl / getSceneConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / scene / ctrl / isSceneConfigRegistryConsistent() : Boolean
        / registry / scene / ctrl / isSceneConfigRegistryReadOnly() : Boolean
        / registry / scene / ctrl / registerSceneConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / scene / ctrl / removeSceneConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / scene / ctrl / updateSceneConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig

    UnitRegistry : rst.domotic.registry.UnitRegistryDataType.UnitRegistryData
        / registry / unit / ctrl / containsServiceTemplate(rst.domotic.service.ServiceTemplateType.ServiceTemplate) : Boolean
        / registry / unit / ctrl / containsServiceTemplateById(String) : Boolean
        / registry / unit / ctrl / containsUnitConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / unit / ctrl / containsUnitConfigById(String) : Boolean
        / registry / unit / ctrl / containsUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / unit / ctrl / containsUnitGroupConfigById(String) : Boolean
        / registry / unit / ctrl / containsUnitTemplate(rst.domotic.unit.UnitTemplateType.UnitTemplate) : Boolean
        / registry / unit / ctrl / containsUnitTemplateById(String) : Boolean
        / registry / unit / ctrl / getServiceTemplateById(String) : rst.domotic.service.ServiceTemplateType.ServiceTemplate
        / registry / unit / ctrl / getServiceTemplateByType(rst.domotic.service.ServiceTemplateType.ServiceTemplate.ServiceType) : rst.domotic.service.ServiceTemplateType.ServiceTemplate
        / registry / unit / ctrl / getUnitConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / getUnitConfigByScope(rst.rsb.ScopeType.Scope) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / getUnitGroupConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / getUnitTemplateById(String) : rst.domotic.unit.UnitTemplateType.UnitTemplate
        / registry / unit / ctrl / getUnitTemplateByType(rst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType) : rst.domotic.unit.UnitTemplateType.UnitTemplate
        / registry / unit / ctrl / isAgentUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isAgentUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isAppUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isAppUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isAuthorizationGroupUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isAuthorizationGroupUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isConnectionUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isConnectionUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isDalUnitConfigRegistryConsistent() : Boolean
        / registry / unit / ctrl / isDalUnitConfigRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isDeviceUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isDeviceUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isLocationUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isLocationUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isReady() : Boolean
        / registry / unit / ctrl / isSceneUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isSceneUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isServiceTemplateRegistryConsistent() : Boolean
        / registry / unit / ctrl / isServiceTemplateRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isUnitConfigRegistryConsistent() : Boolean
        / registry / unit / ctrl / isUnitConfigRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isUnitGroupConfigRegistryConsistent() : Boolean
        / registry / unit / ctrl / isUnitGroupConfigRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isUnitGroupUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isUnitGroupUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isUnitTemplateRegistryConsistent() : Boolean
        / registry / unit / ctrl / isUnitTemplateRegistryReadOnly() : Boolean
        / registry / unit / ctrl / isUserUnitRegistryConsistent() : Boolean
        / registry / unit / ctrl / isUserUnitRegistryReadOnly() : Boolean
        / registry / unit / ctrl / registerUnitConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / registerUnitConfigAuthenticated(rst.domotic.authentication.AuthenticatedValueType.AuthenticatedValue) : rst.domotic.authentication.AuthenticatedValueType.AuthenticatedValue
        / registry / unit / ctrl / registerUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / removeUnitConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / removeUnitConfigAuthenticated(rst.domotic.authentication.AuthenticatedValueType.AuthenticatedValue) : rst.domotic.authentication.AuthenticatedValueType.AuthenticatedValue
        / registry / unit / ctrl / removeUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / updateServiceTemplate(rst.domotic.service.ServiceTemplateType.ServiceTemplate) : rst.domotic.service.ServiceTemplateType.ServiceTemplate
        / registry / unit / ctrl / updateUnitConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / updateUnitConfigAuthenticated(rst.domotic.authentication.AuthenticatedValueType.AuthenticatedValue) : rst.domotic.authentication.AuthenticatedValueType.AuthenticatedValue
        / registry / unit / ctrl / updateUnitGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / unit / ctrl / updateUnitTemplate(rst.domotic.unit.UnitTemplateType.UnitTemplate) : rst.domotic.unit.UnitTemplateType.UnitTemplate
        / registry / unit / ctrl / waitUntilReady()

    UserRegistry : rst.domotic.registry.UserRegistryDataType.UserRegistryData
        / registry / user / ctrl / containsAuthorizationGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / user / ctrl / containsAuthorizationGroupConfigById(String) : Boolean
        / registry / user / ctrl / containsUserConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : Boolean
        / registry / user / ctrl / containsUserConfigById(String) : Boolean
        / registry / user / ctrl / getAuthorizationGroupConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / getUserConfigById(String) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / getUserIdByUserName(String) : String
        / registry / user / ctrl / isAuthorizationGroupConfigRegistryConsistent() : Boolean
        / registry / user / ctrl / isAuthorizationGroupConfigRegistryReadOnly() : Boolean
        / registry / user / ctrl / isUserConfigRegistryConsistent() : Boolean
        / registry / user / ctrl / isUserConfigRegistryReadOnly() : Boolean
        / registry / user / ctrl / registerAuthorizationGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / registerUserConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / removeAuthorizationGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / removeUserConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / updateAuthorizationGroupConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig
        / registry / user / ctrl / updateUserConfig(rst.domotic.unit.UnitConfigType.UnitConfig) : rst.domotic.unit.UnitConfigType.UnitConfig

    UserActivityRegistry : rst.domotic.registry.UserActivityRegistryDataType.UserActivityRegistryData
        / registry / user_activity / ctrl / containsUserActivityClass(rst.domotic.activity.UserActivityClassType.UserActivityClass) : Boolean
        / registry / user_activity / ctrl / containsUserActivityClassById(String) : Boolean
        / registry / user_activity / ctrl / containsUserActivityConfig(rst.domotic.activity.UserActivityConfigType.UserActivityConfig) : Boolean
        / registry / user_activity / ctrl / containsUserActivityConfigById(String) : Boolean
        / registry / user_activity / ctrl / getUserActivityClassById(String) : rst.domotic.activity.UserActivityClassType.UserActivityClass
        / registry / user_activity / ctrl / getUserActivityConfigById(String) : rst.domotic.activity.UserActivityConfigType.UserActivityConfig
        / registry / user_activity / ctrl / isUserActivityClassRegistryConsistent() : Boolean
        / registry / user_activity / ctrl / isUserActivityClassRegistryReadOnly() : Boolean
        / registry / user_activity / ctrl / isUserActivityConfigRegistryConsistent() : Boolean
        / registry / user_activity / ctrl / isUserActivityConfigRegistryReadOnly() : Boolean
        / registry / user_activity / ctrl / registerUserActivityClass(rst.domotic.activity.UserActivityClassType.UserActivityClass) : rst.domotic.activity.UserActivityClassType.UserActivityClass
        / registry / user_activity / ctrl / registerUserActivityConfig(rst.domotic.activity.UserActivityConfigType.UserActivityConfig) : rst.domotic.activity.UserActivityConfigType.UserActivityConfig
        / registry / user_activity / ctrl / removeUserActivityClass(rst.domotic.activity.UserActivityClassType.UserActivityClass) : rst.domotic.activity.UserActivityClassType.UserActivityClass
        / registry / user_activity / ctrl / removeUserActivityConfig(rst.domotic.activity.UserActivityConfigType.UserActivityConfig) : rst.domotic.activity.UserActivityConfigType.UserActivityConfig
        / registry / user_activity / ctrl / updateUserActivityClass(rst.domotic.activity.UserActivityClassType.UserActivityClass) : rst.domotic.activity.UserActivityClassType.UserActivityClass
        / registry / user_activity / ctrl / updateUserActivityConfig(rst.domotic.activity.UserActivityConfigType.UserActivityConfig) : rst.domotic.activity.UserActivityConfigType.UserActivityConfig

===========================================================
BaseCubeOne - DAL (Domotic Abstract Layer) RSB API
===========================================================

General Information:

    Unit Scope Structure:
        / <LocationScope> / <UnitType> / <UnitLabel> / <CommunicationPattern> : <UnitDataType>

    Each unit publishes status changes via a dedecated rsb informer on the following status scope:
        / <UnitScope> / status

    Each unit provides a set of rsb remote procedure call (rpc) methods accessable by there control scope:
        / <UnitScope> / ctrl


This static set of rpc methods is provided by all units:

    All
        / <UnitScope> / ctrl / ping() : The connection delay as integer
        / <UnitScope> / ctrl / requestStatus() : <UnitDataType>

Furthermore each unit provids a type specific set of rpc methods related to there services:

    OBJECT : rst.domotic.unit.dal.ObjectDataType.ObjectData

    COLORABLE_LIGHT : rst.domotic.unit.dal.ColorableLightDataType.ColorableLightData
        / <LocationScope> / colorable_light / <UnitLabel> / ctrl / getBrightnessState() : rst.domotic.state.BrightnessStateType.BrightnessState
        / <LocationScope> / colorable_light / <UnitLabel> / ctrl / getColorState() : rst.domotic.state.ColorStateType.ColorState
        / <LocationScope> / colorable_light / <UnitLabel> / ctrl / getPowerState() : rst.domotic.state.PowerStateType.PowerState
        / <LocationScope> / colorable_light / <UnitLabel> / ctrl / setBrightnessState(rst.domotic.state.BrightnessStateType.BrightnessState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / colorable_light / <UnitLabel> / ctrl / setColorState(rst.domotic.state.ColorStateType.ColorState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / colorable_light / <UnitLabel> / ctrl / setPowerState(rst.domotic.state.PowerStateType.PowerState) : rst.domotic.action.ActionFutureType.ActionFuture

    BATTERY : rst.domotic.unit.dal.BatteryDataType.BatteryData
        / <LocationScope> / battery / <UnitLabel> / ctrl / getBatteryState() : rst.domotic.state.BatteryStateType.BatteryState

    BRIGHTNESS_SENSOR : rst.domotic.unit.dal.BrightnessSensorDataType.BrightnessSensorData
        / <LocationScope> / brightness_sensor / <UnitLabel> / ctrl / getIlluminanceState() : rst.domotic.state.IlluminanceStateType.IlluminanceState

    BUTTON : rst.domotic.unit.dal.ButtonDataType.ButtonData
        / <LocationScope> / button / <UnitLabel> / ctrl / getButtonState() : rst.domotic.state.ButtonStateType.ButtonState

    SWITCH : rst.domotic.unit.dal.SwitchDataType.SwitchData
        / <LocationScope> / switch / <UnitLabel> / ctrl / getSwitchState() : rst.domotic.state.SwitchStateType.SwitchState

    DIMMER : rst.domotic.unit.dal.DimmerDataType.DimmerData
        / <LocationScope> / dimmer / <UnitLabel> / ctrl / getBrightnessState() : rst.domotic.state.BrightnessStateType.BrightnessState
        / <LocationScope> / dimmer / <UnitLabel> / ctrl / getPowerState() : rst.domotic.state.PowerStateType.PowerState
        / <LocationScope> / dimmer / <UnitLabel> / ctrl / setBrightnessState(rst.domotic.state.BrightnessStateType.BrightnessState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / dimmer / <UnitLabel> / ctrl / setPowerState(rst.domotic.state.PowerStateType.PowerState) : rst.domotic.action.ActionFutureType.ActionFuture

    DIMMABLE_LIGHT : rst.domotic.unit.dal.DimmableLightDataType.DimmableLightData
        / <LocationScope> / dimmable_light / <UnitLabel> / ctrl / getBrightnessState() : rst.domotic.state.BrightnessStateType.BrightnessState
        / <LocationScope> / dimmable_light / <UnitLabel> / ctrl / getPowerState() : rst.domotic.state.PowerStateType.PowerState
        / <LocationScope> / dimmable_light / <UnitLabel> / ctrl / setBrightnessState(rst.domotic.state.BrightnessStateType.BrightnessState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / dimmable_light / <UnitLabel> / ctrl / setPowerState(rst.domotic.state.PowerStateType.PowerState) : rst.domotic.action.ActionFutureType.ActionFuture

    HANDLE : rst.domotic.unit.dal.HandleDataType.HandleData
        / <LocationScope> / handle / <UnitLabel> / ctrl / getHandleState() : rst.domotic.state.HandleStateType.HandleState

    LIGHT : rst.domotic.unit.dal.LightDataType.LightData
        / <LocationScope> / light / <UnitLabel> / ctrl / getPowerState() : rst.domotic.state.PowerStateType.PowerState
        / <LocationScope> / light / <UnitLabel> / ctrl / setPowerState(rst.domotic.state.PowerStateType.PowerState) : rst.domotic.action.ActionFutureType.ActionFuture

    LIGHT_SENSOR : rst.domotic.unit.dal.LightSensorDataType.LightSensorData
        / <LocationScope> / light_sensor / <UnitLabel> / ctrl / getIlluminanceState() : rst.domotic.state.IlluminanceStateType.IlluminanceState

    MOTION_DETECTOR : rst.domotic.unit.dal.MotionDetectorDataType.MotionDetectorData
        / <LocationScope> / motion_detector / <UnitLabel> / ctrl / getMotionState() : rst.domotic.state.MotionStateType.MotionState

    POWER_CONSUMPTION_SENSOR : rst.domotic.unit.dal.PowerConsumptionSensorDataType.PowerConsumptionSensorData
        / <LocationScope> / power_consumption_sensor / <UnitLabel> / ctrl / getPowerConsumptionState() : rst.domotic.state.PowerConsumptionStateType.PowerConsumptionState

    POWER_SWITCH : rst.domotic.unit.dal.PowerSwitchDataType.PowerSwitchData
        / <LocationScope> / power_switch / <UnitLabel> / ctrl / getPowerState() : rst.domotic.state.PowerStateType.PowerState
        / <LocationScope> / power_switch / <UnitLabel> / ctrl / setPowerState(rst.domotic.state.PowerStateType.PowerState) : rst.domotic.action.ActionFutureType.ActionFuture

    REED_CONTACT : rst.domotic.unit.dal.ReedContactDataType.ReedContactData
        / <LocationScope> / reed_contact / <UnitLabel> / ctrl / getContactState() : rst.domotic.state.ContactStateType.ContactState

    SMOKE_DETECTOR : rst.domotic.unit.dal.SmokeDetectorDataType.SmokeDetectorData
        / <LocationScope> / smoke_detector / <UnitLabel> / ctrl / getSmokeAlarmState() : rst.domotic.state.AlarmStateType.AlarmState
        / <LocationScope> / smoke_detector / <UnitLabel> / ctrl / getSmokeState() : rst.domotic.state.SmokeStateType.SmokeState

    TAMPER_DETECTOR : rst.domotic.unit.dal.TamperDetectorDataType.TamperDetectorData
        / <LocationScope> / tamper_detector / <UnitLabel> / ctrl / getTamperState() : rst.domotic.state.TamperStateType.TamperState

    TEMPERATURE_CONTROLLER : rst.domotic.unit.dal.TemperatureControllerDataType.TemperatureControllerData
        / <LocationScope> / temperature_controller / <UnitLabel> / ctrl / getTargetTemperatureState() : rst.domotic.state.TemperatureStateType.TemperatureState
        / <LocationScope> / temperature_controller / <UnitLabel> / ctrl / getTemperatureState() : rst.domotic.state.TemperatureStateType.TemperatureState
        / <LocationScope> / temperature_controller / <UnitLabel> / ctrl / setTargetTemperatureState(rst.domotic.state.TemperatureStateType.TemperatureState) : rst.domotic.action.ActionFutureType.ActionFuture

    TEMPERATURE_SENSOR : rst.domotic.unit.dal.TemperatureSensorDataType.TemperatureSensorData
        / <LocationScope> / temperature_sensor / <UnitLabel> / ctrl / getTemperatureAlarmState() : rst.domotic.state.AlarmStateType.AlarmState
        / <LocationScope> / temperature_sensor / <UnitLabel> / ctrl / getTemperatureState() : rst.domotic.state.TemperatureStateType.TemperatureState

    ROLLER_SHUTTER : rst.domotic.unit.dal.RollerShutterDataType.RollerShutterData
        / <LocationScope> / roller_shutter / <UnitLabel> / ctrl / getBlindState() : rst.domotic.state.BlindStateType.BlindState
        / <LocationScope> / roller_shutter / <UnitLabel> / ctrl / setBlindState(rst.domotic.state.BlindStateType.BlindState) : rst.domotic.action.ActionFutureType.ActionFuture

    MONITOR : rst.domotic.unit.dal.MonitorDataType.MonitorData
        / <LocationScope> / monitor / <UnitLabel> / ctrl / getPowerState() : rst.domotic.state.PowerStateType.PowerState
        / <LocationScope> / monitor / <UnitLabel> / ctrl / getStandbyState() : rst.domotic.state.StandbyStateType.StandbyState
        / <LocationScope> / monitor / <UnitLabel> / ctrl / setPowerState(rst.domotic.state.PowerStateType.PowerState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / monitor / <UnitLabel> / ctrl / setStandbyState(rst.domotic.state.StandbyStateType.StandbyState) : rst.domotic.action.ActionFutureType.ActionFuture

    DISPLAY : rst.domotic.unit.dal.DisplayDataType.DisplayData
        Auto detection not possible.

    TELEVISION : rst.domotic.unit.dal.TelevisionDataType.TelevisionData
        Auto detection not possible.

    AUDIO_SOURCE : rst.domotic.unit.dal.AudioSourceDataType.AudioSourceData

    AUDIO_SINK : ?
        Auto detection not possible.

    VIDEO_RGB_SOURCE : rst.domotic.unit.dal.VideoRgbSourceDataType.VideoRgbSourceData

    VIDEO_DEPTH_SOURCE : rst.domotic.unit.dal.VideoDepthSourceDataType.VideoDepthSourceData

    LOCATION : rst.domotic.unit.location.LocationDataType.LocationData
        / <LocationScope> / location / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / location / <UnitLabel> / ctrl / recordSnapshot(rst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType) : rst.domotic.action.SnapshotType.Snapshot

    CONNECTION : rst.domotic.unit.connection.ConnectionDataType.ConnectionData
        / <LocationScope> / connection / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / connection / <UnitLabel> / ctrl / getDoorState() : rst.domotic.state.DoorStateType.DoorState
        / <LocationScope> / connection / <UnitLabel> / ctrl / getPassageState() : rst.domotic.state.PassageStateType.PassageState
        / <LocationScope> / connection / <UnitLabel> / ctrl / getWindowState() : rst.domotic.state.WindowStateType.WindowState

    SCENE : rst.domotic.unit.scene.SceneDataType.SceneData
        / <LocationScope> / scene / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / scene / <UnitLabel> / ctrl / getActivationState() : rst.domotic.state.ActivationStateType.ActivationState
        / <LocationScope> / scene / <UnitLabel> / ctrl / setActivationState(rst.domotic.state.ActivationStateType.ActivationState) : rst.domotic.action.ActionFutureType.ActionFuture

    AGENT : rst.domotic.unit.agent.AgentDataType.AgentData
        / <LocationScope> / agent / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / agent / <UnitLabel> / ctrl / getActivationState() : rst.domotic.state.ActivationStateType.ActivationState
        / <LocationScope> / agent / <UnitLabel> / ctrl / getEmphasisState() : rst.domotic.state.EmphasisStateType.EmphasisState
        / <LocationScope> / agent / <UnitLabel> / ctrl / setActivationState(rst.domotic.state.ActivationStateType.ActivationState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / agent / <UnitLabel> / ctrl / setEmphasisState(rst.domotic.state.EmphasisStateType.EmphasisState) : rst.domotic.action.ActionFutureType.ActionFuture

    APP : rst.domotic.unit.app.AppDataType.AppData
        / <LocationScope> / app / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / app / <UnitLabel> / ctrl / getActivationState() : rst.domotic.state.ActivationStateType.ActivationState
        / <LocationScope> / app / <UnitLabel> / ctrl / setActivationState(rst.domotic.state.ActivationStateType.ActivationState) : rst.domotic.action.ActionFutureType.ActionFuture

    DEVICE : rst.domotic.unit.device.DeviceDataType.DeviceData
        / <LocationScope> / device / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture

    USER : rst.domotic.unit.user.UserDataType.UserData
        / <LocationScope> / user / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / user / <UnitLabel> / ctrl / getUserActivityState() : rst.domotic.state.UserActivityStateType.UserActivityState
        / <LocationScope> / user / <UnitLabel> / ctrl / getUserPresenceState() : rst.domotic.state.UserPresenceStateType.UserPresenceState
        / <LocationScope> / user / <UnitLabel> / ctrl / setUserActivityState(rst.domotic.state.UserActivityStateType.UserActivityState) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / user / <UnitLabel> / ctrl / setUserPresenceState(rst.domotic.state.UserPresenceStateType.UserPresenceState) : rst.domotic.action.ActionFutureType.ActionFuture

    AUTHORIZATION_GROUP : rst.domotic.unit.authorizationgroup.AuthorizationGroupDataType.AuthorizationGroupData
        / <LocationScope> / authorization_group / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture

    UNIT_GROUP : rst.domotic.unit.unitgroup.UnitGroupDataType.UnitGroupData
        / <LocationScope> / unit_group / <UnitLabel> / ctrl / applyAction(rst.domotic.action.ActionDescriptionType.ActionDescription) : rst.domotic.action.ActionFutureType.ActionFuture
        / <LocationScope> / unit_group / <UnitLabel> / ctrl / recordSnapshot(rst.domotic.unit.UnitTemplateType.UnitTemplate.UnitType) : rst.domotic.action.SnapshotType.Snapshot

    RFID : ?
        Auto detection not possible.

1.5.6. Code Examples

Code examples can be found at https://basecubeone.org/developer/code-examples.html