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 - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Hue brána - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) adresa hostitele - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api verze změněna - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge status aktualizace změněn - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge hledat zařízení - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge kontrolovat aktualizace - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Upgradovat můstek - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The 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}) - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight barva změněna - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Nastavit barvu - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight efekt změněn - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Tlačítko dlouho stisknuto - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Nastavit efekt - - - + + + flash The 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í - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Nastavit jas - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue dálkové ovládání - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 sensor Philips Hue Motion sensor - + Philips Hue Outdoor sensor Philips Hue Outdoor sensor @@ -58,37 +58,37 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Hue gateway - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) host-adresse - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api-version ændret - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge opdateringsstatus ændret - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge søg enheder - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (valgfrit) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge tjek opdateringer - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge opgradér bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Langt 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 - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight farve ændret - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Indstil farve - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight effekt ændret - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue farvetemperatur lys - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dæmpeligt lys - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Knap trykket ned længe - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue udendørs sensor - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 Tilgængelighed ændret - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue farve lys - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Indstil effekt - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Indstil lysstyrke - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Remote - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 sensor Philips Hue Bewegungsmelder - + Philips Hue Outdoor sensor Philips Hue Aussensensor @@ -58,37 +58,37 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Hue Gateway - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) Adresse - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) ID - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge API Version geändert - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge Update Status geändert - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge Suche Geräte - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Seriennummer (Optional) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge Suche Updates - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Bridge updaten - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton Akkustand geändert - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Bewegungsmelder - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Lange 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 - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge Softwareversion geändert - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Farbe geändert - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Setze Farbe - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Licht Effekt geändert - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue Farbtemperatur-Licht - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimmbares Licht - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Taste lange gedrückt - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Aussen-Sensor - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 Erreichbar geändert - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue Farblicht - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Setze Licht Effekt - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Setze Helligkeit - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Fernbedienung - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge - + search devices The 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 updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The 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}) - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 sensor Philips Hue Bewegingssensor - + Philips Hue Outdoor sensor Philips Hue Outdoor sensor @@ -58,37 +58,37 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Puerta hue - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) dirección del servidor - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) identificación - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versión api modificada - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge estado de actualización modificado - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge buscar dispositivos - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (optioneel) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge buscar actualizaciones - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Actualización de bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Long 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 - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight color modificado - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Fijar color - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight efecto modificado - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue kleurtemperatuur licht - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimmable light - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Botón pulsado durante largo tiempo - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Llave hue - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Farbton Außensensor - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 Reachable cambió - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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ó - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Fijar efecto - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Fijar brillo - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Remote - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 sensor Capteur de mouvement Philips Hue - + Philips Hue Outdoor sensor Capteur Philips Hue Outdoor @@ -58,37 +58,37 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Passerelle Hue - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) Adresse de l’hôte - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) ID - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge Version API modifiée - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge Statut mise à jour modifié - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge Chercher 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 updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge Chercher des mises à jour - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Mise à jour de la Bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Longtemps 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 - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Couleur modifiée - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Définir la couleur - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Effet de lumière modifié - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue color temperature light - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimmable light - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Bouton appuyé pendant longtemps - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Outdoor Sensor - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 Atteignable changé - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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é - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Teinte, couleur, lumière - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Régler l’effet - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Régler la luminosité - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Télécommande Hue - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 sensor Philips Hue Bewegungssensor - + Philips Hue Outdoor sensor Philips Farbton Außensensor @@ -58,37 +58,37 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Gateway Hue - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) indirizzo host - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versione api modificata - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge stato aggiornamento modificato - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge ricerca di dispositivi - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (optioneel) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge verifica aggiornamenti - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Potenzia bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Pressato 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 - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight colore modificato - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Imposta colore - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight effetto modificato - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Tinta temperatura colore luce - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue luce dimmerabile - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Pulsante premuto a lungo - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Outdoor Sensor - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 Reachable changed - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue colore luce - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Imposta effetto - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Imposta luminosità - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Telecomando Hue - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 sensor Philips Hue Motion sensor - + Philips Hue Outdoor sensor Philips Hue Outdoor sensor @@ -58,37 +58,37 @@ PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Hue gateway - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) host-adres - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api-versie gewijzigd - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge updatestatus gewijzigd - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge apparaten zoeken - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) Serienummer (optioneel) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge controleren op updates - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge Upgrade bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) Hue Motion Sensor - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) Hue Smart Button - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton Lang 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 - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Kleur gewijzigd - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Kleur instellen - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight effect gewijzigd - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) Hue kleurtemperatuur licht - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) Hue dimbaar licht - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Knop lang ingedrukt - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Hue Tap - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) Hue Outdoor Sensor - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 Bereikbaar veranderd - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) Hue color light - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Effect instellen - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Helderheid instellen - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue afstandsbediening - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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 - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + Hue gateway The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) Gateway Hue - + host address The name of the ParamType (ThingClass: bridge, Type: thing, ID: {1845975b-1184-4440-bc0d-73d53a9f683c}) endereço host - + id The name of the ParamType (ThingClass: bridge, Type: thing, ID: {a496feb0-3b7b-46cb-a63a-e063447d6b1d}) id - - - - - - - + + + + + + + reachable changed The 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 changed The name of the EventType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versão api alterada - + update status changed The name of the EventType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge estado de atualização alterado - + search devices The name of the ActionType ({cca3f171-6318-44e7-a2ac-d841857c1c24}) of ThingClass bridge dispositivos de pesquisa - + Serial Number (optional) The name of the ParamType (ThingClass: bridge, ActionType: searchNewDevices, ID: {1924bdb5-f8f1-4dcd-bc09-21ad7c5ce377}) - + check updates The name of the ActionType ({07a85e91-d064-4bce-b017-13fd0c320c0b}) of ThingClass bridge verificar atualizações - + Upgrade bridge The name of the ActionType ({6dfbc7c0-7372-42f6-82ba-e777cb32dc4c}) of ThingClass bridge atualizar Bridge - - + + Battery level The 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 changed The name of the EventType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - + Button longpress The 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 V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + Hue Motion Sensor The name of the ThingClass ({25b79fff-4b88-4af8-b06c-2fe246238790}) - + Hue On/Off light The name of the ThingClass ({f720f31d-9523-4a74-9f10-19cbc9edeb58}) - + Hue Smart Button The name of the ThingClass ({1e34a056-9f37-4741-b249-a5eca7a4ab4e}) - + Hue Smart plug The name of the ThingClass ({01438844-0048-4276-91f8-c93ac0a5171d}) - + Long pressed The 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}) - - - + + + Powered The 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 version The 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 changed The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - + Switched on or off The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - + + Time period The 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 id The 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 - - - - - - - + + + + + + + type The 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 - - - - - - + + + + + + uuid The 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 id The 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 changed The 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 - - - - - - - - - - - - + + + + + + + + + + + + power The 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 power The 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 changed The 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 temperature The 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 changed The name of the EventType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight cor alterada - - - + + + color The 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 color The name of the ActionType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight Ajustar cor - - - + + + brightness changed The 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 - - - - - - - - - + + + + + + + + + brightness The 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 brigtness The 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 changed The name of the EventType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight efeito alterado - + Hue color temperature light The name of the ThingClass ({35f749f7-b60a-4922-bd25-1bdd2eddcbe3}) - + Hue dimmable light The name of the ThingClass ({4fa568ef-7a3a-422b-b0c0-206d37cb4eed}) - - + + battery critical changed The 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 longpressed The name of the EventType ({2c64561b-2381-4769-8e21-0e206c84bbcc}) of ThingClass remote Botão pressionado de modo longo - + Hue Tap The name of the ThingClass ({2b8c1fb8-67ee-42e9-947b-16e0a09f0d4e}) Toque Hue - + Hue Outdoor Sensor The name of the ThingClass ({32dc6390-600f-4eb4-b349-cc2d6796a82a}) - - + + Model id The 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 - - - + + + Uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 id The 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 uuid The 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 changed The 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 - - - - - - - - - - + + + + + + + + + + + + Reachable The 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 changed The 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 - - - - + + + + Battery The 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 changed The 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 critical The 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 changed The 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 - - - - + + + + Temperature The 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 changed The 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 light The 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 changed The 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 present The 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 changed The 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 time The 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 Hue The name of the plugin PhilipsHue ({5f2e634b-b7f3-48ee-976a-b5ae22aa5c55}) Philips Hue - - - - - - - - - - - - - - + + + + + + + + + + + + + + reachable The 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 version The 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 status The 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 light The name of the ThingClass ({0edba26c-96ab-44fb-a6a2-c0574d19630e}) - - - - - - + + + + + + color temperature The 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 - - - + + + effect The 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 effect The name of the ActionType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight Ajustar efeito - - - + + + flash The 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 - - - + + + alert The 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 brightness The name of the ActionType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight Ajustar brilho - + Hue Remote The name of the ThingClass ({bb482d39-67ef-46dc-88e9-7b181d642b28}) Hue Remoto - - + + sensor id The 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 changed The 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 - - - - + + + + battery The 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 critical The 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();