From 154730c5dc8b1f7f763704df44f23d80f5d4f431 Mon Sep 17 00:00:00 2001
From: loosrob <79396812+loosrob@users.noreply.github.com>
Date: Mon, 12 Jul 2021 12:49:53 +0200
Subject: [PATCH 1/5] Philips Hue - add support for Friends of Hue switches
---
philipshue/README.md | 1 +
philipshue/integrationpluginphilipshue.cpp | 62 +-
philipshue/integrationpluginphilipshue.json | 64 ++
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts | 565 +++++++++---------
...e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts | 565 +++++++++---------
...5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts | 565 +++++++++---------
12 files changed, 2817 insertions(+), 2395 deletions(-)
diff --git a/philipshue/README.md b/philipshue/README.md
index 8a7a0f1f..bdfdde79 100644
--- a/philipshue/README.md
+++ b/philipshue/README.md
@@ -10,6 +10,7 @@ This plugin allows to interact with the Hue bridge. Each light bulb, sensor and
* No internet or cloud connection required
* Hue Dimmer switch V1 and V2
* Hue Tap Switch
+* Friends of Hue Switch (e.g. Niko, ...)
* Hue Smart Button
* Hue Motion Sensor
* Hue Outdoor Motion Sensor
diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp
index b6590d4c..1d688439 100644
--- a/philipshue/integrationpluginphilipshue.cpp
+++ b/philipshue/integrationpluginphilipshue.cpp
@@ -516,6 +516,21 @@ void IntegrationPluginPhilipsHue::setupThing(ThingSetupInfo *info)
return info->finish(Thing::ThingErrorNoError);
}
+ // Friends of Hue switch
+ if (thing->thingClassId() == fohThingClassId) {
+ HueRemote *hueFoh = new HueRemote(bridge, this);
+ hueFoh->setName(thing->name());
+ hueFoh->setId(thing->paramValue(fohThingSensorIdParamTypeId).toInt());
+ hueFoh->setModelId(thing->paramValue(fohThingModelIdParamTypeId).toString());
+ hueFoh->setUuid(thing->paramValue(fohThingUuidParamTypeId).toString());
+
+ connect(hueFoh, &HueRemote::stateChanged, this, &IntegrationPluginPhilipsHue::remoteStateChanged);
+ connect(hueFoh, &HueRemote::buttonPressed, this, &IntegrationPluginPhilipsHue::onRemoteButtonEvent);
+
+ m_remotes.insert(hueFoh, thing);
+ return info->finish(Thing::ThingErrorNoError);
+ }
+
// Hue smart button
if (thing->thingClassId() == smartButtonThingClassId) {
HueRemote *smartButton = new HueRemote(bridge, this);
@@ -644,7 +659,7 @@ void IntegrationPluginPhilipsHue::thingRemoved(Thing *thing)
light->deleteLater();
}
- if (thing->thingClassId() == remoteThingClassId || thing->thingClassId() == dimmerSwitch2ThingClassId|| thing->thingClassId() == tapThingClassId || thing->thingClassId() == smartButtonThingClassId) {
+ if (thing->thingClassId() == remoteThingClassId || thing->thingClassId() == dimmerSwitch2ThingClassId|| thing->thingClassId() == tapThingClassId || thing->thingClassId() == fohThingClassId || thing->thingClassId() == smartButtonThingClassId) {
HueRemote *remote = m_remotes.key(thing);
m_remotes.remove(remote);
remote->deleteLater();
@@ -1160,6 +1175,8 @@ void IntegrationPluginPhilipsHue::remoteStateChanged()
thing->setStateValue(dimmerSwitch2BatteryCriticalStateTypeId, remote->battery() < 5);
} else if (thing->thingClassId() == tapThingClassId) {
thing->setStateValue(tapConnectedStateTypeId, remote->reachable());
+ } else if (thing->thingClassId() == fohThingClassId) {
+ thing->setStateValue(fohConnectedStateTypeId, remote->reachable());
} else if (thing->thingClassId() == smartButtonThingClassId) {
thing->setStateValue(smartButtonConnectedStateTypeId, remote->reachable());
thing->setStateValue(smartButtonBatteryLevelStateTypeId, remote->battery());
@@ -1282,6 +1299,28 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
qCDebug(dcPhilipsHue()) << "Received unhandled button code from Hue Tap:" << buttonCode;
return;
}
+ } else if (thing->thingClassId() == fohThingClassId) {
+ switch (buttonCode) {
+ case 20:
+ param = Param(fohPressedEventButtonNameParamTypeId, "UPPER LEFT");
+ id = fohPressedEventTypeId;
+ break;
+ case 21:
+ param = Param(fohPressedEventButtonNameParamTypeId, "LOWER LEFT");
+ id = fohPressedEventTypeId;
+ break;
+ case 23:
+ param = Param(fohPressedEventButtonNameParamTypeId, "UPPER RIGHT");
+ id = fohPressedEventTypeId;
+ break;
+ case 22:
+ param = Param(fohPressedEventButtonNameParamTypeId, "LOWER RIGHT");
+ id = fohPressedEventTypeId;
+ break;
+ default:
+ qCDebug(dcPhilipsHue()) << "Received unhandled button code from Friends of Hue switch:" << buttonCode;
+ return;
+ }
} else if (thing->thingClassId() == smartButtonThingClassId) {
switch (buttonCode) {
case 1002:
@@ -1648,6 +1687,18 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th
emit autoThingsAppeared({descriptor});
qCDebug(dcPhilipsHue) << "Found new smart button" << sensorMap.value("name").toString() << model;
+ // Friends of Hue switch
+ } else if (model == "FOHSWITCH") {
+ ThingDescriptor descriptor(fohThingClassId, sensorMap.value("name").toString(), "Friends of Hue Switch", thing->id());
+ ParamList params;
+ params.append(Param(fohThingModelIdParamTypeId, model));
+ params.append(Param(fohThingTypeParamTypeId, sensorMap.value("type").toString()));
+ params.append(Param(fohThingUuidParamTypeId, uuid));
+ params.append(Param(fohThingSensorIdParamTypeId, sensorId));
+ descriptor.setParams(params);
+ emit autoThingsAppeared({descriptor});
+ qCDebug(dcPhilipsHue) << "Found new friends of hue switch" << sensorMap.value("name").toString() << model;
+
// Hue Tap
} else if (sensorMap.value("type").toString() == "ZGPSwitch") {
ThingDescriptor descriptor(tapThingClassId, sensorMap.value("name").toString(), "Philips Hue Tap", thing->id());
@@ -2015,6 +2066,8 @@ void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, bool reac
m_remotes.value(remote)->setStateValue(dimmerSwitch2ConnectedStateTypeId, false);
} else if (m_remotes.value(remote)->thingClassId() == tapThingClassId) {
m_remotes.value(remote)->setStateValue(tapConnectedStateTypeId, false);
+ } else if (m_remotes.value(remote)->thingClassId() == fohThingClassId) {
+ m_remotes.value(remote)->setStateValue(fohConnectedStateTypeId, false);
} else if (m_remotes.value(remote)->thingClassId() == smartButtonThingClassId) {
m_remotes.value(remote)->setStateValue(smartButtonConnectedStateTypeId, false);
}
@@ -2097,6 +2150,13 @@ bool IntegrationPluginPhilipsHue::sensorAlreadyAdded(const QString &uuid)
}
}
+ // Friends of Hue
+ if (thing->thingClassId() == fohThingClassId) {
+ if (thing->paramValue(fohThingUuidParamTypeId).toString() == uuid) {
+ return true;
+ }
+ }
+
// Hue smart button
if (thing->thingClassId() == smartButtonThingClassId) {
if (thing->paramValue(smartButtonThingUuidParamTypeId).toString() == uuid) {
diff --git a/philipshue/integrationpluginphilipshue.json b/philipshue/integrationpluginphilipshue.json
index b32f22e0..61e53eb1 100644
--- a/philipshue/integrationpluginphilipshue.json
+++ b/philipshue/integrationpluginphilipshue.json
@@ -815,6 +815,70 @@
}
]
},
+ {
+ "id": "692bc4be-07b8-4b77-ab0b-a36185b17d76",
+ "name": "foh",
+ "displayName": "Friends of Hue Switch",
+ "interfaces": ["multibutton", "wirelessconnectable"],
+ "createMethods": ["auto"],
+ "paramTypes": [
+ {
+ "id": "664c7091-12eb-4402-8239-31da85f73d38",
+ "name": "modelId",
+ "displayName": "Model ID",
+ "type" : "QString",
+ "readOnly": true
+ },
+ {
+ "id": "16ca2ee1-d738-4f51-8f9a-53547d3d824e",
+ "name": "type",
+ "displayName": "Type",
+ "type" : "QString",
+ "readOnly": true
+ },
+ {
+ "id": "2ca66286-1caf-4e09-8e18-05bb7d7df314",
+ "name": "uuid",
+ "displayName": "UUID",
+ "type" : "QString",
+ "readOnly": true
+ },
+ {
+ "id": "7559d16c-b56b-42e2-8347-65582fa276c0",
+ "name": "sensorId",
+ "displayName": "Sensor ID",
+ "type" : "int",
+ "readOnly": true
+ }
+ ],
+ "stateTypes": [
+ {
+ "id": "840b220c-656b-4f56-bbaa-ce818cffad64",
+ "name": "connected",
+ "displayName": "Reachable",
+ "displayNameEvent": "Reachable changed",
+ "defaultValue": false,
+ "type": "bool",
+ "cached": false
+ }
+ ],
+ "eventTypes": [
+ {
+ "id": "2cc68bd3-ad73-4bf3-9905-639870d071bd",
+ "name": "pressed",
+ "displayName": "Button pressed",
+ "paramTypes": [
+ {
+ "id": "f1da229e-fce2-4329-8850-1c92b5bc5925",
+ "name": "buttonName",
+ "displayName": "Button name",
+ "type": "QString",
+ "allowedValues": ["UPPER LEFT", "LOWER LEFT", "UPPER RIGHT", "LOWER RIGHT"]
+ }
+ ]
+ }
+ ]
+ },
{
"id": "32dc6390-600f-4eb4-b349-cc2d6796a82a",
"name": "outdoorSensor",
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts
index 6037afbc..646f4cac 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts
@@ -14,43 +14,43 @@
-
+ Error connecting to hue bridge.
-
-
+
+ Received unexpected data from hue bridge.
-
+ An error happened pairing the hue bridge.
-
+ The hue bridge has rejected the connection request.
-
+ Error sending command to hue bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.
-
+ Philips Hue Motion sensor
-
+ Philips Hue Outdoor sensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Hue brána
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})adresa hostitele
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
dosažitelně změněn
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeapi verze změněna
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgestatus aktualizace změněn
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgehledat zařízení
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgekontrolovat aktualizace
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeUpgradovat můstek
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
id modelu
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
typ
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
uuid
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
id světla
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
výkon změněn
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
výkon
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
nastavit výkon
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
barevná teplota změněna
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
nastavit barevnou teplotu
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightbarva změněna
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
barva
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightNastavit barvu
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
jas změněn
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
jas
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Nastavit jas
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightefekt změněn
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
baterie kritický stav změněno
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Tlačítko stisknuto
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Název tlačítka
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteTlačítko dlouho stisknuto
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Hue Tap
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
dosažitelně
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
api verze
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
status aktualizace
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
barevná teplota
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
efekt
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightNastavit efekt
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
blikání
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
varování
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightNastavit jas
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Hue dálkové ovládání
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
id senzoru
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
baterie změněna
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
baterie
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts
index 3202fc1d..f879553a 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts
@@ -14,43 +14,43 @@
Ikke godkendt til bridge. Konfigurer venligst bridge.
-
+ Error connecting to hue bridge.Fejl ved forbindelse til hue bridge.
-
-
+
+ Received unexpected data from hue bridge.Modtog uventede data fra hue bridge.
-
+ An error happened pairing the hue bridge.Der opstod en fejl ved parring af hue bridge.
-
+ The hue bridge has rejected the connection request.Hue bridge har afvist forbindelsesanmodningen.
-
+ Error sending command to hue bridge.Fejl ved afsendelse af kommando til hue bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.Der opstod en uventet fejl, når du sendte kommandoen til hue bridge.
-
+ Philips Hue Motion sensorPhilips Hue Motion sensor
-
+ Philips Hue Outdoor sensorPhilips Hue Outdoor sensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Hue gateway
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})host-adresse
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
rådighed ændret
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeapi-version ændret
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgeopdateringsstatus ændret
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgesøg enheder
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})Serienummer (valgfrit)
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgetjek opdateringer
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeopgradér bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})Hue Motion Sensor
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})Hue Smart Button
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButtonLangt presset
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})Model ID
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})Sensor ID
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
Tidsperiode
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})Type
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})UUID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
model-id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
type
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
uuid
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
lys-id
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
strøm ændret
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
strøm
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Indstil strøm
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
farvetemperatur ændret
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Indstil farvetemperatur
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightfarve ændret
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
farve
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightIndstil farve
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
lysstyrke ændret
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
lysstyrke
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Indstil lysstyrke
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLighteffekt ændret
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})Hue farvetemperatur lys
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})Hue dæmpeligt lys
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
batteri kritisk ændret
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Knap trykket ned
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Navn på knap
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteKnap trykket ned længe
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Hue Tap
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})Hue udendørs sensor
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
Model id
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
Uuid
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
Temperaturføler id
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
Temperaturfølerens uuid
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
Tilstedeværelsessensor id
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
Tilstedeværelsessensor uuid
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
Lyssensor id
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
Lyssensor uuid
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButtonTilgængelighed ændret
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
Tilgængelig
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batteriladningen ændret
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batteri
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batterikritisk ændret
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batterikritisk
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatur ændret
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatur
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Omgivende lys ændret
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
omgivende lys
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Person til stede ændret
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Person til stede
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Sidst set ændret
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Sidst set
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
til rådighed
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
api-version
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
opdateringsstatus
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})Hue farve lys
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
farvetemperatur
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
effekt
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightIndstil effekt
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
blitz
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
advarsel
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightIndstil lysstyrke
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Hue Remote
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
sensor-id
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batteri ændret
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batteri
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts
index def7eb86..12d4ebc2 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts
@@ -14,43 +14,43 @@
Keine Berechtigung zum Steuern der Bridge. Bitte konfiguriere die Bridge neu.
-
+ Error connecting to hue bridge.Fehler beim Verbinden zur Hue Bridge.
-
-
+
+ Received unexpected data from hue bridge.Unerwartete Daten von Hue Brige empfangen.
-
+ An error happened pairing the hue bridge.Ein Fehler ist beim Pairen der Hue Bridge aufgetreten.
-
+ The hue bridge has rejected the connection request.Die Hue Bridge hat unsere Verbindungsanfrage abegelehnt.
-
+ Error sending command to hue bridge.Fehler beim Senden der Kommandso zur Hue Bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.Ein unerwarteter Fehler ist beim Senden von Befehlen zur Hue Bridge aufgetreten.
-
+ Philips Hue Motion sensorPhilips Hue Bewegungsmelder
-
+ Philips Hue Outdoor sensorPhilips Hue Aussensensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Hue Gateway
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})Adresse
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})ID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
Erreichbarkeit geändert
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeAPI Version geändert
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgeUpdate Status geändert
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgeSuche Geräte
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})Seriennummer (Optional)
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgeSuche Updates
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeBridge updaten
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
Akkustand
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButtonAkkustand geändert
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})Hue Bewegungsmelder
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})Hue Smart Button
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButtonLange gedrückt
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})Modell Nummer
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})Sensor Nummer
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
Softwareversion
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridgeSoftwareversion geändert
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
Zeitspanne
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})Typ
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})UUID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
Model ID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
Typ
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
UUID
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
Licht ID
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
Eingeschaltet geändert
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
Eingeschaltet
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Einschalten
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
Farbtemperatur geändert
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Setze Farbtemperatur
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightFarbe geändert
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
Farbe
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightSetze Farbe
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
Helligkeit geändert
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
Helligkeit
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Setze Helligkeit
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightLicht Effekt geändert
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})Hue Farbtemperatur-Licht
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})Hue dimmbares Licht
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
Batterie Ladestatus kritisch geändert
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Taste gedrückt
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Taste Name
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteTaste lange gedrückt
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Hue Tap
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})Hue Aussen-Sensor
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
Geräte ID
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
UUID
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
Temperaturesensor ID
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
Temperatursensor UUID
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
Anwesenheitssensor ID
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
Anwesenheitssensor UUID
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
Lichtsensor ID
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
Lichtsensor UUID
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButtonErreichbar geändert
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
Erreichbar
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batterieladung geändert
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batterie
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batterieladung kritisch geändert
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batterieladung kritisch
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatur geändert
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatur
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Ungebungslicht geändert
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Umgebungslicht
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Person anwesend geändert
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Person ist anwesend
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Zuletzt gesehen geändert
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Zuletzt gesehen
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
Erreichbar
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
API Version
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
Update Status
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})Hue Farblicht
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
Farbtemperatur
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
Effekt
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightSetze Licht Effekt
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
Aufleuchten
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
Alarm
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightSetze Helligkeit
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Hue Fernbedienung
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
Sensor ID
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
Batterie geändert
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
Batterie
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts
index 84ff55e9..d74f40aa 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts
@@ -14,43 +14,43 @@
-
+ Error connecting to hue bridge.
-
-
+
+ Received unexpected data from hue bridge.
-
+ An error happened pairing the hue bridge.
-
+ The hue bridge has rejected the connection request.
-
+ Error sending command to hue bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.
-
+ Philips Hue Motion sensor
-
+ Philips Hue Outdoor sensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts
index 62de895b..a176d919 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts
@@ -14,43 +14,43 @@
Niet geverifieerd om te overbruggen. Gelieve de brug te herconfigureren.
-
+ Error connecting to hue bridge.Fout bij het aansluiten op de kleurenbrug.
-
-
+
+ Received unexpected data from hue bridge.Onverwachte gegevens ontvangen van tintenbrug.
-
+ An error happened pairing the hue bridge.Er is een fout opgetreden bij het koppelen van de kleurschakeringsbrug.
-
+ The hue bridge has rejected the connection request.De kleurstofbrug heeft de aansluitingsaanvraag afgewezen.
-
+ Error sending command to hue bridge.Fout bij het sturen van het commando naar de Hue Bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.Er is een onverwachte fout opgetreden bij het sturen van het commando naar de kleurenbrug.
-
+ Philips Hue Motion sensorPhilips Hue Bewegingssensor
-
+ Philips Hue Outdoor sensorPhilips Hue Outdoor sensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Puerta hue
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})dirección del servidor
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})identificación
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
accesibilidad modificada
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeversión api modificada
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgeestado de actualización modificado
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgebuscar dispositivos
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})Serienummer (optioneel)
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgebuscar actualizaciones
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeActualización de bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})Hue Motion Sensor
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})Hue Smart Button
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButtonLong pressed
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})Model ID
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})Sensor ID
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
Tijdspanne
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})Type
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})UUID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
identificación de modelo
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
modelo
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
uuid
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
identificación de luz
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
alimentación modificada
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
alimentación
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Fijar alimentación
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
temperatura de color modificada
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Fijar color de temperatura
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightcolor modificado
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
color
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightFijar color
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
brillo modificado
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
brillo
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Fijar brillo
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightefecto modificado
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})Hue kleurtemperatuur licht
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})Hue dimmable light
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
batería en estado crítico modificada
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Botón pulsado
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Nombre del botón
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteBotón pulsado durante largo tiempo
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Llave hue
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})Farbton Außensensor
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
Modell-ID
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
Uuid
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
Temperature sensor id
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
Temperature sensor UUID
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
Presence sensor id
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
Presence sensor UUID
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
Light sensor id
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
Light sensor uuid
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButtonReachable cambió
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
Alcanzable
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batería cambiada
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batería
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batería crítica cambiada
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batería crítica
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
La temperatura cambió
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatura
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
La luz ambiental cambió
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Luz ambiental
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
La persona está presente cambiada
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
La persona está presente
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
La última vez que se vio el tiempo cambió
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
accesible
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
versión api
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
estado de actualización
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
temperatura de color
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
efecto
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightFijar efecto
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
flash
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
alerta
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightFijar brillo
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Hue Remote
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
identificación de sensor
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batería modificada
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batería
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts
index 48dd706c..8a673556 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts
@@ -14,43 +14,43 @@
Non authentifié pour le pont. Veuillez reconfigurer le pont.
-
+ Error connecting to hue bridge.Erreur de connexion au pont de teinte.
-
-
+
+ Received unexpected data from hue bridge.Réception de données inattendues de la part de hue bridge.
-
+ An error happened pairing the hue bridge.Une erreur s'est produite lors de l'appariement du pont de teinte.
-
+ The hue bridge has rejected the connection request.Le pont de teinte a rejeté la demande de connexion.
-
+ Error sending command to hue bridge.Erreur d'envoi de la commande à hue bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.Une erreur inattendue s'est produite lors de l'envoi de la commande au pont de teinte.
-
+ Philips Hue Motion sensorCapteur de mouvement Philips Hue
-
+ Philips Hue Outdoor sensorCapteur Philips Hue Outdoor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Passerelle Hue
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})Adresse de l’hôte
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})ID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
Accessibilité modifiée
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeVersion API modifiée
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgeStatut mise à jour modifié
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgeChercher des appareils
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})Numéro de série (facultatif)
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgeChercher des mises à jour
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeMise à jour de la Bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})Hue Motion Sensor
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})Hue Smart Button
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButtonLongtemps pressée
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})Model ID
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})Sensor ID
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
Période de temps
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})Type
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})UUID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
ID de modèle
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
Type
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
UUID
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
ID du luminaire
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
Alimentation modifiée
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
Alimentation
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Configurer l’alimentation
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
Température de couleur modifiée
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Définir la température de couleur
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightCouleur modifiée
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
Couleur
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightDéfinir la couleur
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
Luminosité modifiée
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
Luminosité
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Régler la luminosité
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightEffet de lumière modifié
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})Hue color temperature light
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})Hue dimmable light
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
Statut de batterie critique modifié
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Bouton appuyé
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Nom de bouton
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteBouton appuyé pendant longtemps
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Hue Tap
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})Hue Outdoor Sensor
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
Model id
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
Uuid
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
ID du capteur de température
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
Capteur de température uuid
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
Identification du capteur de présence
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
Capteur de présence uuid
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
Identification du capteur de lumière
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
Capteur de lumière uuid
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButtonAtteignable changé
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
Accessible à l'adresse suivante
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batterie changée
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batterie
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Changement de pile critique
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batterie critique
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
La température a changé
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperature
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
La lumière ambiante a changé
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Ambient light
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
La personne est présente changée
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
La personne est présente
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Dernière fois vu le temps a changé
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Dernière fois qu'on l'a vu
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
Accessible
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
Version API
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
Statut de mise à jour
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})Teinte, couleur, lumière
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
Température de couleur
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
Effet
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightRégler l’effet
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
Flash
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
Alarme
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightRégler la luminosité
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Télécommande Hue
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
ID de capteur
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
Batterie changée
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
Batterie
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts
index 050e1e2e..c39633a8 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts
@@ -14,43 +14,43 @@
Non autenticato a ponte. Si prega di riconfigurare il ponte.
-
+ Error connecting to hue bridge.Errore di collegamento al ponte di tinta.
-
-
+
+ Received unexpected data from hue bridge.Received unexpected data from hue bridge.
-
+ An error happened pairing the hue bridge.E' successo un errore nell'accoppiare il ponte di tinta.
-
+ The hue bridge has rejected the connection request.Il ponte tinta ha rifiutato la richiesta di collegamento.
-
+ Error sending command to hue bridge.Errore nell'invio del comando a hue bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.Beim Senden des Befehls an die Farbtonbrücke trat ein unerwarteter Fehler auf.
-
+ Philips Hue Motion sensorPhilips Hue Bewegungssensor
-
+ Philips Hue Outdoor sensorPhilips Farbton Außensensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Gateway Hue
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})indirizzo host
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
raggiungibile modificato
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeversione api modificata
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgestato aggiornamento modificato
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgericerca di dispositivi
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})Serienummer (optioneel)
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgeverifica aggiornamenti
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgePotenzia bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})Hue Motion Sensor
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})Hue Smart Button
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButtonPressato a lungo
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})Model ID
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})Sensor ID
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
Periodo di tempo
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})Type
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})UUID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
id modello
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
tipo
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
uuid
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
id illuminazione
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
potenza modificata
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
potenza
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Imposta potenza
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
temperatura del colore modificata
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Temperatura del colore
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightcolore modificato
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
colore
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightImposta colore
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
luminosità modificata
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
luminosità
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Imposta luminosità
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLighteffetto modificato
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})Tinta temperatura colore luce
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})Hue luce dimmerabile
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
batteria critica modificata
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Pulsante premuto
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Nome pulsante
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remotePulsante premuto a lungo
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Hue Tap
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})Hue Outdoor Sensor
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
Model id
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
Uuid
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
Temperature sensor id
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
Temperature sensor uuid
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
Presence sensor id
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
Presence sensor uuid
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
Light sensor id
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
Light sensor uuid
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButtonReachable changed
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
Raggiungibile
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Sostituzione della batteria
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batteria
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Sostituzione della batteria critica
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batteria critica
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Variazione di temperatura
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatura
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Luce ambiente cambiata
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Luce ambiente
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Persona presente cambiata
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
La persona è presente
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
L'ultima volta che è stato visto è cambiato
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Tempo visto l'ultima volta
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
raggiungibile
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
versione api
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
stato aggiornamento
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})Hue colore luce
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
temperatura colore
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
effetto
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightImposta effetto
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
flash
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
sveglia
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightImposta luminosità
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Telecomando Hue
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
id sensore
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batteria modificata
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batteria
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts
index 996194e4..68c3f7b8 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts
@@ -14,43 +14,43 @@
Niet geverifieerd om te overbruggen. Gelieve de brug te herconfigureren.
-
+ Error connecting to hue bridge.Fout bij het aansluiten op de kleurenbrug.
-
-
+
+ Received unexpected data from hue bridge.Onverwachte gegevens ontvangen van tintenbrug.
-
+ An error happened pairing the hue bridge.Er is een fout opgetreden bij het koppelen van de kleurschakeringsbrug.
-
+ The hue bridge has rejected the connection request.De kleurstofbrug heeft de aansluitingsaanvraag afgewezen.
-
+ Error sending command to hue bridge.Fout bij het sturen van het commando naar de Hue Bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.Er is een onverwachte fout opgetreden bij het sturen van het commando naar de Hue Bridge.
-
+ Philips Hue Motion sensorPhilips Hue Motion sensor
-
+ Philips Hue Outdoor sensorPhilips Hue Outdoor sensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Hue gateway
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})host-adres
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
bereikbaar gewijzigd
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeapi-versie gewijzigd
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgeupdatestatus gewijzigd
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgeapparaten zoeken
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})Serienummer (optioneel)
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgecontroleren op updates
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeUpgrade bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})Hue Motion Sensor
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})Hue Smart Button
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButtonLang ingedrukt
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})Model ID
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})Sensor ID
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
Tijdspanne
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})Type
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})UUID
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
model-id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
type
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
uuid
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
lamp-id
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
vermogen gewijzigd
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
vermogen
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Vermogen instellen
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
kleurtemperatuur gewijzigd
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Kleurtemperatuur instellen
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightKleur gewijzigd
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
kleur
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightKleur instellen
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
helderheid gewijzigd
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
helderheid
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Helderheid instellen
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLighteffect gewijzigd
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})Hue kleurtemperatuur licht
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})Hue dimbaar licht
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
batterij kritiek gewijzigd
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Knop ingedrukt
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Naam van de knop
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteKnop lang ingedrukt
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Hue Tap
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})Hue Outdoor Sensor
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
Model id
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
UUID
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
Temperatuursensor id
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
Temperatuursensor uuid
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
Aanwezigheidssensor id
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
Aanwezigheidssensor uuid
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
Lichtsensor id
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
Light sensor uuid
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButtonBereikbaar veranderd
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
Bereikbaar
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batterij vervangen
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
Batterij
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Kritieke batterij vervangen
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
Batterijkritisch
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatuur veranderd
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
Temperatuur
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Omgevingslicht veranderd
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
Omgevingslicht
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Persoon is aanwezig veranderd
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
Persoon is aanwezig
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Laatst gezien is de tijd veranderd
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
Laatste keer gezien
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
bereikbaar
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
api-versie
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
updatestatus
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})Hue color light
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
kleurtemperatuur
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
effect
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightEffect instellen
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
snel opkomen
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
waarschuwing
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightHelderheid instellen
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Hue afstandsbediening
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
sensor-id
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batterij vervangen
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
batterij
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts
index 41da8aef..f30aade5 100644
--- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts
+++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts
@@ -14,43 +14,43 @@
-
+ Error connecting to hue bridge.
-
-
+
+ Received unexpected data from hue bridge.
-
+ An error happened pairing the hue bridge.
-
+ The hue bridge has rejected the connection request.
-
+ Error sending command to hue bridge.
-
+ An unexpected error happened when sending the command to the hue bridge.
-
+ Philips Hue Motion sensor
-
+ Philips Hue Outdoor sensor
@@ -58,37 +58,37 @@
PhilipsHue
-
+ PhilipsThe name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f})Philips
-
+ Hue gatewayThe name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7})Gateway Hue
-
+ host addressThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c})endereço host
-
+ idThe name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d})id
-
-
-
-
-
-
-
+
+
+
+
+
+
+ reachable changedThe name of the EventType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2
----------
@@ -106,44 +106,44 @@ The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
acessível alterado
-
+ api version changedThe name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridgeversão api alterada
-
+ update status changedThe name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridgeestado de atualização alterado
-
+ search devicesThe name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridgedispositivos de pesquisa
-
+ Serial Number (optional)The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377})
-
+ check updatesThe name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridgeverificar atualizações
-
+ Upgrade bridgeThe name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridgeatualizar Bridge
-
-
+
+ Battery levelThe name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255})
----------
@@ -151,66 +151,75 @@ The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass
-
+ Battery level changedThe name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton
-
+ Button longpressThe name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2
-
+
+ Friends of Hue Switch
+ The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76})
+
+
+
+ Hue Dimmer Switch V2The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d})
-
+ Hue Motion SensorThe name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790})
-
+ Hue On/Off lightThe name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58})
-
+ Hue Smart ButtonThe name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e})
-
+ Hue Smart plugThe name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d})
-
+ Long pressedThe name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton
-
-
+
+
+ Model ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {62d92175-db3a-4da2-a72b-f58f34cb6911})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5fe1-4005-9f97-ccde33b1b2c4})
-
-
-
+
+
+ PoweredThe name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d})
----------
@@ -220,17 +229,20 @@ The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass
-
-
+
+
+ Sensor ID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {5eca2b24-8986-4487-bc12-50e91d023d97})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c052-4c16-a857-fbe0b791e538})
-
-
+
+ Software versionThe name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc})
----------
@@ -238,26 +250,26 @@ The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass
-
+ Software version changedThe name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge
-
+ SwitchThe name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
+ Switched on or offThe name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug
-
-
+
+ Time periodThe name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35})
----------
@@ -265,31 +277,37 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46
-
-
+
+
+ Type
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {eace85b9-5369-466f-89eb-46c4de718305})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1420-43f2-a05a-448a0f783713})
-
-
+
+
+ UUID
- The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
+ The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314})
+----------
+The name of the ParamType (ThingClass: tap, Type: thing, ID: {25cf4167-6c28-4497-9fa9-3d02faf4f3ed})
----------
The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b748-445b-94e2-4dd885a54f22})
-
-
-
-
-
-
-
+
+
+
+
+
+
+ model idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a})
----------
@@ -307,13 +325,13 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {095a463b-f5
id modelo
-
-
-
-
-
-
-
+
+
+
+
+
+
+ typeThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {87cf0d7a-9ac2-4694-9f5f-1c9c6692a6c5})
----------
@@ -331,12 +349,12 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {3f3467ef-44
tipo
-
-
-
-
-
-
+
+
+
+
+
+ uuidThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd})
----------
@@ -352,11 +370,11 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {1a5129ca-00
uuid
-
-
-
-
-
+
+
+
+
+ light idThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {90791861-bb27-4ade-8551-306af322b12d})
----------
@@ -370,10 +388,10 @@ The name of the ParamType (ThingClass: colorLight, Type: thing, ID: {491dc012-cc
id luz
-
-
-
-
+
+
+
+ power changedThe name of the EventType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -385,18 +403,18 @@ The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
potência alterada
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ powerThe name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e})
----------
@@ -424,10 +442,10 @@ The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass
potência
-
-
-
-
+
+
+
+ Set powerThe name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight
----------
@@ -439,8 +457,8 @@ The name of the ActionType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClas
Ajustar potência
-
-
+
+ color temperature changedThe name of the EventType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -448,8 +466,8 @@ The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
temperatura de cor alterada
-
-
+
+ Set color temperatureThe name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight
----------
@@ -457,15 +475,15 @@ The name of the ActionType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClas
Ajustar temperatura de cor
-
+ color changedThe name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightcor alterada
-
-
-
+
+
+ colorThe name of the ParamType (ThingClass: colorLight, ActionType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089})
----------
@@ -475,15 +493,15 @@ The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass
cor
-
+ Set colorThe name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLightAjustar cor
-
-
-
+
+
+ brightness changedThe name of the EventType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight
----------
@@ -493,15 +511,15 @@ The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
brilho alterado
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ brightnessThe name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348})
----------
@@ -523,8 +541,8 @@ The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass
brilho
-
-
+
+ Set brigtnessThe name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight
----------
@@ -532,26 +550,26 @@ The name of the ActionType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClas
Ajustar brilho
-
+ effect changedThe name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightefeito alterado
-
+ Hue color temperature lightThe name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3})
-
+ Hue dimmable lightThe name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed})
-
-
+
+ battery critical changedThe name of the EventType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2
----------
@@ -559,12 +577,15 @@ The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass
alterada bateria crítica
-
-
-
-
+
+
+
+
+ Button pressed
- The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
+ The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh
+----------
+The name of the EventType ({c45dd703-7cbd-48f7-88dc-31045cc3d39c}) of ThingClass tap
----------
The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton
----------
@@ -574,13 +595,16 @@ The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass
Botão pressionado
-
-
-
-
-
+
+
+
+
+
+ Button name
- The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
+ The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925})
+----------
+The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b8a-4709-8abf-717cf213f4a4})
----------
The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13})
----------
@@ -592,26 +616,26 @@ The name of the ParamType (ThingClass: remote, EventType: pressed, ID: {e4e3eb3a
Nome do botão
-
+ Button longpressedThe name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remoteBotão pressionado de modo longo
-
+ Hue TapThe name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e})Toque Hue
-
+ Hue Outdoor SensorThe name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a})
-
-
+
+ Model idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {9cb488b7-a76f-4389-a6b5-b36250246f2b})
----------
@@ -619,9 +643,9 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca8632d
-
-
-
+
+
+ UuidThe name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {5b8a02b9-3a2b-4178-914d-c62d03281d00})
----------
@@ -631,8 +655,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {4a15f861
-
-
+
+ Temperature sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {c9e81e29-f8d4-4370-ada2-f48b32def1fe})
----------
@@ -640,8 +664,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {c732fefd
-
-
+
+ Temperature sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {aa29b5f1-5589-4fa9-bbd4-8869723c037c})
----------
@@ -649,8 +673,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {2fdb34e8
-
-
+
+ Presence sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {337b2c6c-e3bf-495c-943c-b45fa08add37})
----------
@@ -658,8 +682,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {3ca82a24
-
-
+
+ Presence sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {3829bddb-e722-4724-be36-3a8402738581})
----------
@@ -667,8 +691,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {7d55ed97
-
-
+
+ Light sensor idThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {04fba73e-730e-437a-b6f2-10df21296af5})
----------
@@ -676,8 +700,8 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {22a164fc
-
-
+
+ Light sensor uuidThe name of the ParamType (ThingClass: motionSensor, Type: thing, ID: {171cc2e7-7a95-4116-986c-66d75e3e23eb})
----------
@@ -685,11 +709,12 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: thing, ID: {db678144
-
-
-
-
-
+
+
+
+
+
+ Reachable changedThe name of the EventType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug
----------
@@ -697,22 +722,26 @@ The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass
----------
The name of the EventType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the EventType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the EventType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
----------
The name of the EventType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ ReachableThe name of the ParamType (ThingClass: smartPlug, EventType: connected, ID: {6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c})
----------
@@ -726,6 +755,10 @@ The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID:
----------
The name of the StateType ({9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) of ThingClass outdoorSensor
----------
+The name of the ParamType (ThingClass: foh, EventType: connected, ID: {840b220c-656b-4f56-bbaa-ce818cffad64})
+----------
+The name of the StateType ({840b220c-656b-4f56-bbaa-ce818cffad64}) of ThingClass foh
+----------
The name of the ParamType (ThingClass: tap, EventType: connected, ID: {5e21b032-1230-4e93-8543-0c4773da17d3})
----------
The name of the StateType ({5e21b032-1230-4e93-8543-0c4773da17d3}) of ThingClass tap
@@ -736,8 +769,8 @@ The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass
-
-
+
+ Battery changedThe name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor
----------
@@ -745,10 +778,10 @@ The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
-
-
-
-
+
+
+
+ BatteryThe name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd})
----------
@@ -760,9 +793,9 @@ The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass
-
-
-
+
+
+ Battery critical changedThe name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor
----------
@@ -772,12 +805,12 @@ The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
-
-
-
-
-
-
+
+
+
+
+
+ Battery criticalThe name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd})
----------
@@ -793,8 +826,8 @@ The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass
-
-
+
+ Temperature changedThe name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor
----------
@@ -802,10 +835,10 @@ The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
-
-
-
-
+
+
+
+ TemperatureThe name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6})
----------
@@ -817,8 +850,8 @@ The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass
-
-
+
+ Ambient light changedThe name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor
----------
@@ -826,10 +859,10 @@ The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
-
-
-
-
+
+
+
+ Ambient lightThe name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f})
----------
@@ -841,8 +874,8 @@ The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass
-
-
+
+ Person is present changedThe name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor
----------
@@ -850,10 +883,10 @@ The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
-
-
-
-
+
+
+
+ Person is presentThe name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed})
----------
@@ -865,8 +898,8 @@ The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass
-
-
+
+ Last seen time changedThe name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor
----------
@@ -874,10 +907,10 @@ The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
-
-
-
+
+
+
+ Last seen timeThe name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a})
----------
@@ -889,26 +922,26 @@ The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass
-
+ Philips HueThe name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55})Philips Hue
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ reachableThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: connected, ID: {45f75511-7d72-410e-aed0-5720cc497bf8})
----------
@@ -940,8 +973,8 @@ The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass
recarregável
-
-
+
+ api versionThe name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603})
----------
@@ -949,8 +982,8 @@ The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass
versão api
-
-
+
+ update statusThe name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc})
----------
@@ -958,18 +991,18 @@ The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass
estado de atualização
-
+ Hue color lightThe name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e})
-
-
-
-
-
-
+
+
+
+
+
+ color temperatureThe name of the ParamType (ThingClass: colorTemperatureLight, ActionType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0})
----------
@@ -985,9 +1018,9 @@ The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass
temperatura de cor
-
-
-
+
+
+ effectThe name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc})
----------
@@ -997,15 +1030,15 @@ The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass
efeito
-
+ Set effectThe name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLightAjustar efeito
-
-
-
+
+
+ flashThe name of the ActionType ({ab30a83a-539e-4b3a-860a-434e87ca165f}) of ThingClass dimmableLight
----------
@@ -1015,9 +1048,9 @@ The name of the ActionType ({d25dcfbc-d28c-4905-80e3-300ffb1248f5}) of ThingClas
flash
-
-
-
+
+
+ alertThe name of the ParamType (ThingClass: dimmableLight, ActionType: alert, ID: {a546f129-e0e5-497b-9536-2f7a132434df})
----------
@@ -1027,20 +1060,20 @@ The name of the ParamType (ThingClass: colorLight, ActionType: alert, ID: {8ace6
alerta
-
+ Set brightnessThe name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLightAjustar brilho
-
+ Hue RemoteThe name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28})Hue Remoto
-
-
+
+ sensor idThe name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {b8121363-321a-4569-bb34-a02f846aa9c5})
----------
@@ -1048,8 +1081,8 @@ The name of the ParamType (ThingClass: remote, Type: thing, ID: {2ddb571b-149f-4
id sensor
-
-
+
+ battery changedThe name of the EventType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2
----------
@@ -1057,10 +1090,10 @@ The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
bateria substituída
-
-
-
-
+
+
+
+ batteryThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156})
----------
@@ -1072,10 +1105,10 @@ The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass
bateria
-
-
-
-
+
+
+
+ battery criticalThe name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7})
----------
From cc3771f0c87d3652577d3ab267d81e864ba1d01c Mon Sep 17 00:00:00 2001
From: loosrob <79396812+loosrob@users.noreply.github.com>
Date: Fri, 13 Aug 2021 16:57:47 +0200
Subject: [PATCH 2/5] Add support for Hue Wall Switch Module
button codes not yet correct
---
philipshue/integrationpluginphilipshue.cpp | 51 +++++++++++++-
philipshue/integrationpluginphilipshue.json | 74 +++++++++++++++++++++
2 files changed, 124 insertions(+), 1 deletion(-)
diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp
index 1d688439..1ef69452 100644
--- a/philipshue/integrationpluginphilipshue.cpp
+++ b/philipshue/integrationpluginphilipshue.cpp
@@ -546,6 +546,21 @@ void IntegrationPluginPhilipsHue::setupThing(ThingSetupInfo *info)
return info->finish(Thing::ThingErrorNoError);
}
+ // Hue Wall Switch module
+ if (thing->thingClassId() == wallSwitchThingClassId) {
+ HueRemote *wallSwitch = new HueRemote(bridge, this);
+ wallSwitch->setName(thing->name());
+ wallSwitch->setId(thing->paramValue(wallSwitchThingSensorIdParamTypeId).toInt());
+ wallSwitch->setModelId(thing->paramValue(wallSwitchThingModelIdParamTypeId).toString());
+ wallSwitch->setUuid(thing->paramValue(wallSwitchThingUuidParamTypeId).toString());
+
+ connect(wallSwitch, &HueRemote::stateChanged, this, &IntegrationPluginPhilipsHue::remoteStateChanged);
+ connect(wallSwitch, &HueRemote::buttonPressed, this, &IntegrationPluginPhilipsHue::onRemoteButtonEvent);
+
+ m_remotes.insert(smarwallSwitchtButton, thing);
+ return info->finish(Thing::ThingErrorNoError);
+ }
+
// Hue Motion sensor
if (thing->thingClassId() == motionSensorThingClassId) {
qCDebug(dcPhilipsHue) << "Setup Hue motion sensor" << thing->params();
@@ -659,7 +674,7 @@ void IntegrationPluginPhilipsHue::thingRemoved(Thing *thing)
light->deleteLater();
}
- if (thing->thingClassId() == remoteThingClassId || thing->thingClassId() == dimmerSwitch2ThingClassId|| thing->thingClassId() == tapThingClassId || thing->thingClassId() == fohThingClassId || thing->thingClassId() == smartButtonThingClassId) {
+ if (thing->thingClassId() == remoteThingClassId || thing->thingClassId() == dimmerSwitch2ThingClassId|| thing->thingClassId() == tapThingClassId || thing->thingClassId() == fohThingClassId || thing->thingClassId() == smartButtonThingClassId|| thing->thingClassId() == wallSwitchThingClassId) {
HueRemote *remote = m_remotes.key(thing);
m_remotes.remove(remote);
remote->deleteLater();
@@ -1181,6 +1196,10 @@ void IntegrationPluginPhilipsHue::remoteStateChanged()
thing->setStateValue(smartButtonConnectedStateTypeId, remote->reachable());
thing->setStateValue(smartButtonBatteryLevelStateTypeId, remote->battery());
thing->setStateValue(smartButtonBatteryCriticalStateTypeId, remote->battery() < 5);
+ } else if (thing->thingClassId() == wallSwitchThingClassId) {
+ thing->setStateValue(wallSwitchConnectedStateTypeId, remote->reachable());
+ thing->setStateValue(wallSwitchBatteryLevelStateTypeId, remote->battery());
+ thing->setStateValue(wallSwitchBatteryCriticalStateTypeId, remote->battery() < 5);
}
}
@@ -1333,6 +1352,15 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
qCDebug(dcPhilipsHue()) << "Received unhandled button code from Hue Smart Button:" << buttonCode;
return;
}
+ } else if (thing->thingClassId() == wallSwitchThingClassId) {
+ switch (buttonCode) {
+ case 999999: // temporary number, replace with code (codes for on and off?)
+ id = wallSwitchPressedEventTypeId;
+ break;
+ default:
+ qCDebug(dcPhilipsHue()) << "Received unhandled button code from Hue Wall Switch Module:" << buttonCode;
+ return;
+ }
}
emitEvent(Event(id, m_remotes.value(remote)->id(), ParamList() << param));
}
@@ -1687,6 +1715,18 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th
emit autoThingsAppeared({descriptor});
qCDebug(dcPhilipsHue) << "Found new smart button" << sensorMap.value("name").toString() << model;
+ // Wall Switch Module
+ } else if (model == "RDM001") {
+ ThingDescriptor descriptor(wallSwitchThingClassId, sensorMap.value("name").toString(), "Philips Hue Wall Switch Module", thing->id());
+ ParamList params;
+ params.append(Param(wallSwitchThingModelIdParamTypeId, model));
+ params.append(Param(wallSwitchThingTypeParamTypeId, sensorMap.value("type").toString()));
+ params.append(Param(wallSwitchThingUuidParamTypeId, uuid));
+ params.append(Param(wallSwitchThingSensorIdParamTypeId, sensorId));
+ descriptor.setParams(params);
+ emit autoThingsAppeared({descriptor});
+ qCDebug(dcPhilipsHue) << "Found new wall switch module" << sensorMap.value("name").toString() << model;
+
// Friends of Hue switch
} else if (model == "FOHSWITCH") {
ThingDescriptor descriptor(fohThingClassId, sensorMap.value("name").toString(), "Friends of Hue Switch", thing->id());
@@ -2070,6 +2110,8 @@ void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, bool reac
m_remotes.value(remote)->setStateValue(fohConnectedStateTypeId, false);
} else if (m_remotes.value(remote)->thingClassId() == smartButtonThingClassId) {
m_remotes.value(remote)->setStateValue(smartButtonConnectedStateTypeId, false);
+ } else if (m_remotes.value(remote)->thingClassId() == wallSwitchThingClassId) {
+ m_remotes.value(remote)->setStateValue(wallSwitchConnectedStateTypeId, false);
}
}
}
@@ -2164,6 +2206,13 @@ bool IntegrationPluginPhilipsHue::sensorAlreadyAdded(const QString &uuid)
}
}
+ // Hue wall switch module
+ if (thing->thingClassId() == wallSwitchThingClassId) {
+ if (thing->paramValue(wallSwitchThingUuidParamTypeId).toString() == uuid) {
+ return true;
+ }
+ }
+
// Outdoor sensor consits out of 3 sensors
if (thing->thingClassId() == outdoorSensorThingClassId) {
if (thing->paramValue(outdoorSensorThingSensorUuidLightParamTypeId).toString() == uuid) {
diff --git a/philipshue/integrationpluginphilipshue.json b/philipshue/integrationpluginphilipshue.json
index 61e53eb1..0d2a9abd 100644
--- a/philipshue/integrationpluginphilipshue.json
+++ b/philipshue/integrationpluginphilipshue.json
@@ -751,6 +751,80 @@
}
]
},
+ {
+ "id": "e967027f-f8fc-410c-8b48-6ac4c42e2777",
+ "name": "wallSwitch",
+ "displayName": "Hue Wall Switch Module",
+ "interfaces": ["button", "wirelessconnectable"],
+ "createMethods": ["auto"],
+ "paramTypes": [
+ {
+ "id": "71c2c485-6a09-4bcd-80e5-24cdc45d323f",
+ "name": "modelId",
+ "displayName": "Model ID",
+ "type": "QString",
+ "readOnly": true
+ },
+ {
+ "id": "08606780-2251-4c15-bb7d-7506535e14ed",
+ "name": "type",
+ "displayName": "Type",
+ "type" : "QString",
+ "readOnly": true
+ },
+ {
+ "id": "4cdab881-5d2d-4443-816a-231bbb331f22",
+ "name": "uuid",
+ "displayName": "UUID",
+ "type" : "QString",
+ "readOnly": true
+ },
+ {
+ "id": "62a9df8c-51b5-434f-9d5d-5fa97144076a",
+ "name": "sensorId",
+ "displayName": "Sensor ID",
+ "type" : "int",
+ "readOnly": true
+ }
+ ],
+ "stateTypes": [
+ {
+ "id": "b51071af-1290-41f1-b2eb-e84527342ade",
+ "name": "connected",
+ "displayName": "Reachable",
+ "displayNameEvent": "Reachable changed",
+ "defaultValue": false,
+ "type": "bool",
+ "cached": false
+ },
+ {
+ "id": "b025cab6-d128-43eb-ba63-b16861d6ab10",
+ "name": "batteryLevel",
+ "displayName": "Battery level",
+ "displayNameEvent": "Battery level changed",
+ "type": "int",
+ "unit": "Percentage",
+ "defaultValue": 0,
+ "minValue": 0,
+ "maxValue": 100
+ },
+ {
+ "id": "7fcf84e4-5638-46ce-9a7c-85b8bd466b38",
+ "name": "batteryCritical",
+ "displayName": "Battery critical",
+ "displayNameEvent": "Battery critical changed",
+ "type": "bool",
+ "defaultValue": false
+ }
+ ],
+ "eventTypes": [
+ {
+ "id": "4623b5ff-b999-4200-ba38-89435d78fcae",
+ "name": "pressed",
+ "displayName": "Button pressed"
+ }
+ ]
+ },
{
"id": "2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e",
"name": "tap",
From 10265ee69dd8f92b9cbe67e3ab92c132bee7c2e7 Mon Sep 17 00:00:00 2001
From: loosrob <79396812+loosrob@users.noreply.github.com>
Date: Fri, 13 Aug 2021 16:59:54 +0200
Subject: [PATCH 3/5] Update README.md
update readme with wall switch module support
---
philipshue/README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/philipshue/README.md b/philipshue/README.md
index bdfdde79..d8af6c6b 100644
--- a/philipshue/README.md
+++ b/philipshue/README.md
@@ -12,6 +12,7 @@ This plugin allows to interact with the Hue bridge. Each light bulb, sensor and
* Hue Tap Switch
* Friends of Hue Switch (e.g. Niko, ...)
* Hue Smart Button
+* Hue Wall Switch Module
* Hue Motion Sensor
* Hue Outdoor Motion Sensor
* Hue Ambient White Bulb
From 9e79b264dd5591640a672c96a0c5f51e51e84a96 Mon Sep 17 00:00:00 2001
From: loosrob <79396812+loosrob@users.noreply.github.com>
Date: Sat, 14 Aug 2021 17:59:02 +0200
Subject: [PATCH 4/5] Add Hue Wall Switch module button codes + correct Switch
V2 codes
Hue wall switch button codes added + harmonized use of button codes of Dimmer Switch V2 with other remote types
---
philipshue/integrationpluginphilipshue.cpp | 23 +++++++++++++--------
philipshue/integrationpluginphilipshue.json | 13 ++++++++++--
2 files changed, 25 insertions(+), 11 deletions(-)
diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp
index 1ef69452..2d9c3a6a 100644
--- a/philipshue/integrationpluginphilipshue.cpp
+++ b/philipshue/integrationpluginphilipshue.cpp
@@ -557,7 +557,7 @@ void IntegrationPluginPhilipsHue::setupThing(ThingSetupInfo *info)
connect(wallSwitch, &HueRemote::stateChanged, this, &IntegrationPluginPhilipsHue::remoteStateChanged);
connect(wallSwitch, &HueRemote::buttonPressed, this, &IntegrationPluginPhilipsHue::onRemoteButtonEvent);
- m_remotes.insert(smarwallSwitchtButton, thing);
+ m_remotes.insert(wallSwitch, thing);
return info->finish(Thing::ThingErrorNoError);
}
@@ -1259,7 +1259,7 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
param = Param(dimmerSwitch2PressedEventButtonNameParamTypeId, "POWER");
id = dimmerSwitch2PressedEventTypeId;
break;
- case 1000:
+ case 1001:
param = Param(dimmerSwitch2LongPressedEventButtonNameParamTypeId, "POWER");
id = dimmerSwitch2LongPressedEventTypeId;
break;
@@ -1267,7 +1267,7 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
param = Param(dimmerSwitch2PressedEventButtonNameParamTypeId, "DIM UP");
id = dimmerSwitch2PressedEventTypeId;
break;
- case 2000:
+ case 2001:
param = Param(dimmerSwitch2LongPressedEventButtonNameParamTypeId, "DIM UP");
id = dimmerSwitch2LongPressedEventTypeId;
break;
@@ -1275,7 +1275,7 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
param = Param(dimmerSwitch2PressedEventButtonNameParamTypeId, "DIM DOWN");
id = dimmerSwitch2PressedEventTypeId;
break;
- case 3000:
+ case 3001:
param = Param(dimmerSwitch2LongPressedEventButtonNameParamTypeId, "DIM DOWN");
id = dimmerSwitch2LongPressedEventTypeId;
break;
@@ -1283,7 +1283,7 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
param = Param(dimmerSwitch2PressedEventButtonNameParamTypeId, "HUE");
id = dimmerSwitch2PressedEventTypeId;
break;
- case 4000:
+ case 4001:
param = Param(dimmerSwitch2LongPressedEventButtonNameParamTypeId, "HUE");
id = dimmerSwitch2LongPressedEventTypeId;
break;
@@ -1292,10 +1292,10 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
return;
}
// codes ending in 2 (e.g. 1002) are short presses;
- // for long presses the Dimmer Switch V2 sends 3 codes:
+ // for long presses the Dimmer Switch V2 sends 3 codes (same behaviour as hue remote and smart button):
// * codes ending in 0 (e.g. 1000) indicate start of long press
- // * codes ending in 3 (e.g. 1003) indicate end of long press --> not yet supported by this plugin, but e.g. LongPressEnded action could be added
- // * codes ending in 1 (e.g. 1001) are sent during the long press --> probably for backwards compatibility with earlier version, and therefore not added to this plugin
+ // * codes ending in 3 (e.g. 1003) indicate end of long press
+ // * codes ending in 1 (e.g. 1001) are sent during the long press
} else if (thing->thingClassId() == tapThingClassId) {
switch (buttonCode) {
case 34:
@@ -1354,7 +1354,12 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode)
}
} else if (thing->thingClassId() == wallSwitchThingClassId) {
switch (buttonCode) {
- case 999999: // temporary number, replace with code (codes for on and off?)
+ case 1002: // temporary number, replace with code (codes for on and off?)
+ param = Param(wallSwitchPressedEventButtonNameParamTypeId, "ONE");
+ id = wallSwitchPressedEventTypeId;
+ break;
+ case 2002: // temporary number, replace with code (codes for on and off?)
+ param = Param(wallSwitchPressedEventButtonNameParamTypeId, "TWO");
id = wallSwitchPressedEventTypeId;
break;
default:
diff --git a/philipshue/integrationpluginphilipshue.json b/philipshue/integrationpluginphilipshue.json
index 0d2a9abd..6568c1d0 100644
--- a/philipshue/integrationpluginphilipshue.json
+++ b/philipshue/integrationpluginphilipshue.json
@@ -755,7 +755,7 @@
"id": "e967027f-f8fc-410c-8b48-6ac4c42e2777",
"name": "wallSwitch",
"displayName": "Hue Wall Switch Module",
- "interfaces": ["button", "wirelessconnectable"],
+ "interfaces": ["multibutton", "wirelessconnectable"],
"createMethods": ["auto"],
"paramTypes": [
{
@@ -821,7 +821,16 @@
{
"id": "4623b5ff-b999-4200-ba38-89435d78fcae",
"name": "pressed",
- "displayName": "Button pressed"
+ "displayName": "Button pressed",
+ "paramTypes": [
+ {
+ "id": "adb4ec5e-e48f-4697-a876-e56e8458987a",
+ "name": "buttonName",
+ "displayName": "Button name",
+ "type": "QString",
+ "allowedValues": ["ONE", "TWO"]
+ }
+ ]
}
]
},
From 5019acfff41215fe1f2c9948a5f6397834ac66b5 Mon Sep 17 00:00:00 2001
From: loosrob <79396812+loosrob@users.noreply.github.com>
Date: Tue, 17 Aug 2021 13:39:30 +0200
Subject: [PATCH 5/5] small fixes
remove end dot in README.md & add missing space in integrationpluginphilipshue.cpp
---
philipshue/README.md | 2 +-
philipshue/integrationpluginphilipshue.cpp | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/philipshue/README.md b/philipshue/README.md
index d8af6c6b..65fe0da9 100644
--- a/philipshue/README.md
+++ b/philipshue/README.md
@@ -19,7 +19,7 @@ This plugin allows to interact with the Hue bridge. Each light bulb, sensor and
* Hue Color Bulb
* Hue Smart plug
* Any other Bulb that can be connected and controlled by the Hue App
-* In-wall dimmers/switches that can be connected and controlled by the Hue App.
+* In-wall dimmers/switches that can be connected and controlled by the Hue App
## Requirements
diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp
index 2d9c3a6a..c8959131 100644
--- a/philipshue/integrationpluginphilipshue.cpp
+++ b/philipshue/integrationpluginphilipshue.cpp
@@ -674,7 +674,7 @@ void IntegrationPluginPhilipsHue::thingRemoved(Thing *thing)
light->deleteLater();
}
- if (thing->thingClassId() == remoteThingClassId || thing->thingClassId() == dimmerSwitch2ThingClassId|| thing->thingClassId() == tapThingClassId || thing->thingClassId() == fohThingClassId || thing->thingClassId() == smartButtonThingClassId|| thing->thingClassId() == wallSwitchThingClassId) {
+ if (thing->thingClassId() == remoteThingClassId || thing->thingClassId() == dimmerSwitch2ThingClassId|| thing->thingClassId() == tapThingClassId || thing->thingClassId() == fohThingClassId || thing->thingClassId() == smartButtonThingClassId || thing->thingClassId() == wallSwitchThingClassId) {
HueRemote *remote = m_remotes.key(thing);
m_remotes.remove(remote);
remote->deleteLater();