diff --git a/philipshue/README.md b/philipshue/README.md index 65fe0da9..5170a302 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 +* Hue Tap Dial Switch * Friends of Hue Switch (e.g. Niko, ...) * Hue Smart Button * Hue Wall Switch Module diff --git a/philipshue/hueremote.cpp b/philipshue/hueremote.cpp index 22aea704..0e9cec44 100644 --- a/philipshue/hueremote.cpp +++ b/philipshue/hueremote.cpp @@ -62,7 +62,7 @@ void HueRemote::updateStates(const QVariantMap &statesMap, const QVariantMap &co QString lastUpdate = statesMap.value("lastupdated").toString(); int buttonCode = statesMap.value("buttonevent").toInt(); - // If we never polled, just store lastUpdate/buttonCode and not emit a falsely button pressed event + // If we never polled, just store lastUpdate/buttonCode/rotationCode and not emit a falsely button pressed event if (m_lastUpdate.isEmpty() || m_lastButtonCode == -1) { m_lastUpdate = lastUpdate; m_lastButtonCode = buttonCode; diff --git a/philipshue/huetapdial.cpp b/philipshue/huetapdial.cpp new file mode 100644 index 00000000..f19184e1 --- /dev/null +++ b/philipshue/huetapdial.cpp @@ -0,0 +1,162 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +* +* Copyright 2013 - 2020, nymea GmbH +* Contact: contact@nymea.io +* +* This file is part of nymea. +* This project including source code and documentation is protected by +* copyright law, and remains the property of nymea GmbH. All rights, including +* reproduction, publication, editing and translation, are reserved. The use of +* this project is subject to the terms of a license agreement to be concluded +* with nymea GmbH in accordance with the terms of use of nymea GmbH, available +* under https://nymea.io/license +* +* GNU Lesser General Public License Usage +* Alternatively, this project may be redistributed and/or modified under the +* terms of the GNU Lesser General Public License as published by the Free +* Software Foundation; version 3. This project is distributed in the hope that +* it will be useful, but WITHOUT ANY WARRANTY; without even the implied +* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* Lesser General Public License for more details. +* +* You should have received a copy of the GNU Lesser General Public License +* along with this project. If not, see . +* +* For any further details and any questions please contact us under +* contact@nymea.io or see our FAQ/Licensing Information on +* https://nymea.io/license/faq +* +* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#include "huetapdial.h" +#include "extern-plugininfo.h" + +#include + +HueTapDial::HueTapDial(HueBridge *bridge, QObject *parent) : + HueDevice(bridge, parent) +{ +} + +int HueTapDial::rotaryId() const +{ + return m_rotaryId; +} + +void HueTapDial::setRotaryId(int sensorId) +{ + m_rotaryId = sensorId; +} + +QString HueTapDial::rotaryUuid() const +{ + return m_rotaryUuid; +} + +void HueTapDial::setRotaryUuid(const QString &rotaryUuid) +{ + m_rotaryUuid = rotaryUuid; +} + +int HueTapDial::switchId() const +{ + return m_switchId; +} + +void HueTapDial::setSwitchId(int sensorId) +{ + m_switchId = sensorId; +} + +QString HueTapDial::switchUuid() const +{ + return m_switchUuid; +} + +void HueTapDial::setSwitchUuid(const QString &switchUuid) +{ + m_switchUuid = switchUuid; +} + +int HueTapDial::level() const +{ + return m_level; +} + +int HueTapDial::batteryLevel() const +{ + return m_batteryLevel; +} + +void HueTapDial::updateStates(const QVariantMap &sensorMap) +{ + qCDebug(dcPhilipsHue()) << "Hue Tap Dial data:" << qUtf8Printable(QJsonDocument::fromVariant(sensorMap).toJson(QJsonDocument::Indented)); + + // Config + QVariantMap configMap = sensorMap.value("config").toMap(); + if (configMap.contains("reachable")) { + setReachable(configMap.value("reachable", false).toBool()); + } + + if (configMap.contains("battery")) { + int batteryLevel = configMap.value("battery", 0).toInt(); + if (m_batteryLevel != batteryLevel) { + m_batteryLevel = batteryLevel; + emit batteryLevelChanged(m_batteryLevel); + } + } + + // States + QVariantMap stateMap = sensorMap.value("state").toMap(); + + // If rotated + if (sensorMap.value("uniqueid").toString() == m_rotaryUuid) { + QString lastUpdateRotation = stateMap.value("lastupdated").toString(); + int rotationCode = stateMap.value("expectedrotation").toInt(); + + // If we never polled, just store lastUpdate/rotationCode and not emit a false rotated event + if (m_lastUpdateRotation.isEmpty() || m_lastRotationCode == 0) { + m_lastUpdateRotation = lastUpdateRotation; + m_lastRotationCode = rotationCode; + } + if (m_lastUpdateRotation != lastUpdateRotation || m_lastRotationCode != rotationCode) { + m_lastUpdateRotation = lastUpdateRotation; + m_lastRotationCode = rotationCode; + qCDebug(dcPhilipsHue) << "rotated" << rotationCode; + emit rotated(rotationCode); + } + } + + // If button press + if (sensorMap.value("uniqueid").toString() == m_switchUuid) { + QString lastUpdateButton = stateMap.value("lastupdated").toString(); + int buttonCode = stateMap.value("buttonevent").toInt(); + + // If we never polled, just store lastUpdate/buttonCode and not emit a false button pressed event + if (m_lastUpdateButton.isEmpty() || m_lastButtonCode == -1) { + m_lastUpdateButton = lastUpdateButton; + m_lastButtonCode = buttonCode; + } + if (m_lastUpdateButton != lastUpdateButton || m_lastButtonCode != buttonCode) { + m_lastUpdateButton = lastUpdateButton; + m_lastButtonCode = buttonCode; + qCDebug(dcPhilipsHue) << "button pressed" << buttonCode; + emit buttonPressed(buttonCode); + } + } +} + +bool HueTapDial::isValid() +{ + return !m_rotaryUuid.isEmpty() && !m_switchUuid.isEmpty(); +} + +bool HueTapDial::hasSensor(int sensorId) +{ + return m_rotaryId == sensorId || m_switchId == sensorId; +} + +bool HueTapDial::hasSensor(const QString &sensorUuid) +{ + return m_rotaryUuid == sensorUuid || m_switchUuid == sensorUuid; +} diff --git a/philipshue/huetapdial.h b/philipshue/huetapdial.h new file mode 100644 index 00000000..c8fdbd4c --- /dev/null +++ b/philipshue/huetapdial.h @@ -0,0 +1,92 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * +* +* Copyright 2013 - 2020, nymea GmbH +* Contact: contact@nymea.io +* +* This file is part of nymea. +* This project including source code and documentation is protected by +* copyright law, and remains the property of nymea GmbH. All rights, including +* reproduction, publication, editing and translation, are reserved. The use of +* this project is subject to the terms of a license agreement to be concluded +* with nymea GmbH in accordance with the terms of use of nymea GmbH, available +* under https://nymea.io/license +* +* GNU Lesser General Public License Usage +* Alternatively, this project may be redistributed and/or modified under the +* terms of the GNU Lesser General Public License as published by the Free +* Software Foundation; version 3. This project is distributed in the hope that +* it will be useful, but WITHOUT ANY WARRANTY; without even the implied +* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* Lesser General Public License for more details. +* +* You should have received a copy of the GNU Lesser General Public License +* along with this project. If not, see . +* +* For any further details and any questions please contact us under +* contact@nymea.io or see our FAQ/Licensing Information on +* https://nymea.io/license/faq +* +* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ + +#ifndef HUETAPDIAL_H +#define HUETAPDIAL_H + +#include +#include + +#include "extern-plugininfo.h" +#include "huedevice.h" + +class HueTapDial : public HueDevice +{ + Q_OBJECT +public: + explicit HueTapDial(HueBridge *bridge, QObject *parent = nullptr); + //virtual ~HueTapDial() = default; + + int rotaryId() const; + void setRotaryId(int sensorId); + + QString rotaryUuid() const; + void setRotaryUuid(const QString &rotaryUuid); + + int switchId() const; + void setSwitchId(int sensorId); + + QString switchUuid() const; + void setSwitchUuid(const QString &switchUuid); + + int level() const; + int batteryLevel() const; + + void updateStates(const QVariantMap &sensorMap); + + bool isValid(); + bool hasSensor(int sensorId); + bool hasSensor(const QString &sensorUuid); + +private: + // Params + int m_rotaryId; + QString m_rotaryUuid; + + int m_switchId; + QString m_switchUuid; + + // States + QString m_lastUpdateButton; + QString m_lastUpdateRotation; + double m_level = 0; + int m_batteryLevel = 0; + int m_lastButtonCode = -1; + int m_lastRotationCode = 0; + +signals: + void levelChanged(double level); + void batteryLevelChanged(int batteryLevel); + void buttonPressed(int buttonCode); + void rotated(int rotationCode); + +}; + +#endif // HUETAPDIAL_H diff --git a/philipshue/integrationpluginphilipshue.cpp b/philipshue/integrationpluginphilipshue.cpp index 4646e6fd..48eb2692 100644 --- a/philipshue/integrationpluginphilipshue.cpp +++ b/philipshue/integrationpluginphilipshue.cpp @@ -515,6 +515,28 @@ void IntegrationPluginPhilipsHue::setupThing(ThingSetupInfo *info) return info->finish(Thing::ThingErrorNoError); } + // Hue Tap Dial + if (thing->thingClassId() == tapDialThingClassId) { + qCDebug(dcPhilipsHue) << "Setup Hue Tap Dial" << thing->params() << thing->thingClassId(); + + HueTapDial *hueTapDial = new HueTapDial(bridge, this); + + hueTapDial->setModelId(thing->paramValue(tapDialThingModelIdParamTypeId).toString()); + hueTapDial->setUuid(thing->paramValue(tapDialThingUuidParamTypeId).toString()); + hueTapDial->setRotaryId(thing->paramValue(tapDialThingIdRotaryParamTypeId).toInt()); + hueTapDial->setRotaryUuid(thing->paramValue(tapDialThingUuidRotaryParamTypeId).toString()); + hueTapDial->setSwitchId(thing->paramValue(tapDialThingIdSwitchParamTypeId).toInt()); + hueTapDial->setSwitchUuid(thing->paramValue(tapDialThingUuidSwitchParamTypeId).toString()); + + connect(hueTapDial, &HueTapDial::reachableChanged, this, &IntegrationPluginPhilipsHue::onTapDialReachableChanged); + connect(hueTapDial, &HueTapDial::batteryLevelChanged, this, &IntegrationPluginPhilipsHue::onTapDialBatteryLevelChanged); + connect(hueTapDial, &HueTapDial::buttonPressed, this, &IntegrationPluginPhilipsHue::onTapDialButtonEvent); + connect(hueTapDial, &HueTapDial::rotated, this, &IntegrationPluginPhilipsHue::onTapDialRotaryEvent); + + m_tapDials.insert(hueTapDial, thing); + return info->finish(Thing::ThingErrorNoError); + } + // Hue tap if (thing->thingClassId() == tapThingClassId) { HueRemote *hueTap = new HueRemote(bridge, this); @@ -688,12 +710,18 @@ 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(); } + if (thing->thingClassId() == tapDialThingClassId) { + HueTapDial *tapDial = m_tapDials.key(thing); + m_tapDials.remove(tapDial); + tapDial->deleteLater(); + } + if (thing->thingClassId() == outdoorSensorThingClassId || thing->thingClassId() == motionSensorThingClassId) { HueMotionSensor *motionSensor = m_motionSensors.key(thing); m_motionSensors.remove(motionSensor); @@ -1209,6 +1237,10 @@ void IntegrationPluginPhilipsHue::remoteStateChanged() thing->setStateValue(dimmerSwitch2ConnectedStateTypeId, remote->reachable()); thing->setStateValue(dimmerSwitch2BatteryLevelStateTypeId, remote->battery()); thing->setStateValue(dimmerSwitch2BatteryCriticalStateTypeId, remote->battery() < 5); + } else if (thing->thingClassId() == tapDialThingClassId) { + thing->setStateValue(tapDialConnectedStateTypeId, remote->reachable()); + thing->setStateValue(tapDialBatteryLevelStateTypeId, remote->battery()); + thing->setStateValue(tapDialBatteryCriticalStateTypeId, remote->battery() < 5); } else if (thing->thingClassId() == tapThingClassId) { thing->setStateValue(tapConnectedStateTypeId, remote->reachable()); } else if (thing->thingClassId() == fohThingClassId) { @@ -1391,6 +1423,113 @@ void IntegrationPluginPhilipsHue::onRemoteButtonEvent(int buttonCode) emitEvent(Event(id, m_remotes.value(remote)->id(), ParamList() << param)); } +void IntegrationPluginPhilipsHue::onTapDialButtonEvent(int buttonCode) +{ + HueTapDial *tapDial = static_cast(sender()); + Thing *thing = m_tapDials.value(tapDial); + if (!thing) { + qCWarning(dcPhilipsHue()) << "Received a button press event for a thing we don't know!"; + return; + } + + EventTypeId id; + Param param; + + if (thing->thingClassId() == tapDialThingClassId) { + switch (buttonCode) { + case 1002: + param = Param(tapDialPressedEventButtonNameParamTypeId, "•"); + id = tapDialPressedEventTypeId; + break; + case 1001: + param = Param(tapDialLongPressedEventButtonNameParamTypeId, "•"); + id = tapDialLongPressedEventTypeId; + break; + case 2002: + param = Param(tapDialPressedEventButtonNameParamTypeId, "••"); + id = tapDialPressedEventTypeId; + break; + case 2001: + param = Param(tapDialLongPressedEventButtonNameParamTypeId, "••"); + id = tapDialLongPressedEventTypeId; + break; + case 3002: + param = Param(tapDialPressedEventButtonNameParamTypeId, "•••"); + id = tapDialPressedEventTypeId; + break; + case 3001: + param = Param(tapDialLongPressedEventButtonNameParamTypeId, "•••"); + id = tapDialLongPressedEventTypeId; + break; + case 4002: + param = Param(tapDialPressedEventButtonNameParamTypeId, "••••"); + id = tapDialPressedEventTypeId; + break; + case 4001: + param = Param(tapDialLongPressedEventButtonNameParamTypeId, "••••"); + id = tapDialLongPressedEventTypeId; + break; + default: + qCDebug(dcPhilipsHue()) << "Unhandled button code received from Hue Tap Dial:" << buttonCode << "Thing name:" << thing->name(); + return; + } + } + emitEvent(Event(id, m_tapDials.value(tapDial)->id(), ParamList() << param)); +} + + +void IntegrationPluginPhilipsHue::onTapDialRotaryEvent(int rotationCode) +{ + HueTapDial *tapDial = static_cast(sender()); + Thing *thing = m_tapDials.value(tapDial); + if (!thing) { + qCWarning(dcPhilipsHue()) << "Received a rotary event for a thing we don't know!"; + return; + } + + EventTypeId id; + Param param; + int currentLevel = thing->stateValue(tapDialLevelStateTypeId).toUInt(); + int stepSize = thing->setting(tapDialSettingsStepSizeParamTypeId).toUInt(); + int largeStepSize = thing->setting(tapDialSettingsLargeStepSizeParamTypeId).toUInt(); + + if (thing->thingClassId() == tapDialThingClassId) { + qCDebug(dcPhilipsHue()) << "Rotation code received from Hue Tap Dial:" << rotationCode << "Thing name:" << thing->name(); + if (rotationCode == 15) { + id = tapDialIncreaseEventTypeId; + thing->setStateValue(tapDialLevelStateTypeId, qMin(100, currentLevel + stepSize)); + } else if (rotationCode == -15) { + id = tapDialDecreaseEventTypeId; + thing->setStateValue(tapDialLevelStateTypeId, qMax(0, currentLevel - stepSize)); + } else if (rotationCode > 15) { + id = tapDialLargeIncreaseEventTypeId; + thing->setStateValue(tapDialLevelStateTypeId, qMin(100, currentLevel + largeStepSize)); + } else if (rotationCode < -15) { + id = tapDialLargeDecreaseEventTypeId; + thing->setStateValue(tapDialLevelStateTypeId, qMax(0, currentLevel - largeStepSize)); + } else { + qCDebug(dcPhilipsHue()) << "Unhandled rotation code received from Hue Tap Dial:" << rotationCode << "Thing name:" << thing->name(); + return; + } + } + emitEvent(Event(id, m_tapDials.value(tapDial)->id())); +} + +void IntegrationPluginPhilipsHue::onTapDialReachableChanged(bool reachable) +{ + HueTapDial *tapDial = static_cast(sender()); + Thing *tapDialDevice = m_tapDials.value(tapDial); + tapDialDevice->setStateValue(tapDialConnectedStateTypeId, reachable); +} + +void IntegrationPluginPhilipsHue::onTapDialBatteryLevelChanged(int batteryLevel) +{ + HueTapDial *tapDial = static_cast(sender()); + Thing *tapDialDevice = m_tapDials.value(tapDial); + tapDialDevice->setStateValue(tapDialBatteryLevelStateTypeId, batteryLevel); + tapDialDevice->setStateValue(tapDialBatteryCriticalStateTypeId, (batteryLevel < 5)); +} + void IntegrationPluginPhilipsHue::onMotionSensorReachableChanged(bool reachable) { HueMotionSensor *sensor = static_cast(sender()); @@ -1557,7 +1696,7 @@ void IntegrationPluginPhilipsHue::processBridgeLightDiscoveryResponse(Thing *thi return; } - qCDebug(dcPhilipsHue()) << "Lights on bridge:" << qUtf8Printable(jsonDoc.toJson()); + // qCDebug(dcPhilipsHue()) << "Lights on bridge:" << qUtf8Printable(jsonDoc.toJson()); // Create Lights if not already added ThingDescriptors descriptors; @@ -1676,11 +1815,15 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th return; } + // qCDebug(dcPhilipsHue()) << "Sensors on bridge:" << qUtf8Printable(jsonDoc.toJson()); + // Create sensors if not already added QVariantMap sensorsMap = jsonDoc.toVariant().toMap(); QHash motionSensors; + QHash tapDials; QList remotesToRemove = m_remotes.keys(); QList sensorsToRemove = m_motionSensors.keys(); + QList tapDialsToRemove = m_tapDials.keys(); foreach (const QString &sensorId, sensorsMap.keys()) { QVariantMap sensorMap = sensorsMap.value(sensorId).toMap(); @@ -1695,6 +1838,12 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th break; } } + foreach (HueTapDial* tapDial, tapDialsToRemove) { + if (tapDial->uuid() == uuid.split("-").first()) { + tapDialsToRemove.removeAll(tapDial); + break; + } + } foreach (HueMotionSensor* sensor, sensorsToRemove) { if (sensor->uuid() == uuid.split("-").first()) { sensorsToRemove.removeAll(sensor); @@ -1729,6 +1878,53 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th emit autoThingsAppeared({descriptor}); qCDebug(dcPhilipsHue) << "Found new dimmer switch v2" << sensorMap.value("name").toString() << model; + // Tap Dial + } else if (model == "RDM002") { + // Get the base uuid from this sensor + QString baseUuid = HueDevice::getBaseUuid(uuid); + qCDebug(dcPhilipsHue) << "Base uuid:" << baseUuid; + + // Rotary dial + if (sensorMap.value("type").toString() == "ZLLRelativeRotary") { + qCDebug(dcPhilipsHue()) << "Found rotary dial from tap dial:" << baseUuid << sensorMap; + // Check if we have tap dial for this rotary dial + if (tapDials.contains(baseUuid)) { + HueTapDial *tapDial = tapDials.value(baseUuid); + tapDial->setRotaryUuid(uuid); + tapDial->setRotaryId(sensorId.toInt()); + } else { + // Create a tap dial + HueTapDial *tapDial = nullptr; + tapDial = new HueTapDial(bridge, this); + + tapDial->setModelId(model); + tapDial->setUuid(baseUuid); + tapDial->setRotaryUuid(uuid); + tapDial->setRotaryId(sensorId.toInt()); + tapDials.insert(baseUuid, tapDial); + } + } + // Buttons + if (sensorMap.value("type").toString() == "ZLLSwitch") { + qCDebug(dcPhilipsHue()) << "Found switch from tap dial:" << baseUuid << sensorMap; + // Check if we have tap dial for this switch + if (tapDials.contains(baseUuid)) { + HueTapDial *tapDial = tapDials.value(baseUuid); + tapDial->setSwitchUuid(uuid); + tapDial->setSwitchId(sensorId.toInt()); + } else { + // Create a tap dial + HueTapDial *tapDial = nullptr; + tapDial = new HueTapDial(bridge, this); + + tapDial->setModelId(model); + tapDial->setUuid(baseUuid); + tapDial->setSwitchUuid(uuid); + tapDial->setSwitchId(sensorId.toInt()); + tapDials.insert(baseUuid, tapDial); + } + } + // Smart Button } else if (model == "ROM001") { ThingDescriptor descriptor(smartButtonThingClassId, sensorMap.value("name").toString(), "Philips Hue Smart Button", thing->id()); @@ -1894,6 +2090,28 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th motionSensor->deleteLater(); } + // Create tap dials if there are any new devices found + foreach (HueTapDial *tapDial, tapDials.values()) { + QString baseUuid = tapDials.key(tapDial); + if (tapDial->isValid()) { + ThingDescriptor descriptor(tapDialThingClassId, tr("Philips Hue Tap Dial"), baseUuid, thing->id()); + ParamList params; + params.append(Param(tapDialThingModelIdParamTypeId, tapDial->modelId())); + params.append(Param(tapDialThingUuidParamTypeId, tapDial->uuid())); + params.append(Param(tapDialThingIdRotaryParamTypeId, tapDial->rotaryId())); + params.append(Param(tapDialThingUuidRotaryParamTypeId, tapDial->rotaryUuid())); + params.append(Param(tapDialThingIdSwitchParamTypeId, tapDial->switchId())); + params.append(Param(tapDialThingUuidSwitchParamTypeId, tapDial->switchUuid())); + descriptor.setParams(params); + qCDebug(dcPhilipsHue()) << "Found new tap dial" << baseUuid << tapDialThingClassId; + emit autoThingsAppeared({descriptor}); + } + + // Clean up + tapDials.remove(baseUuid); + tapDial->deleteLater(); + } + foreach (HueRemote* remote, remotesToRemove) { Thing *remoteThing = m_remotes.value(remote); if (remoteThing->parentId() == thing->id()) { @@ -1902,6 +2120,14 @@ void IntegrationPluginPhilipsHue::processBridgeSensorDiscoveryResponse(Thing *th } } + foreach (HueTapDial* tapDial, tapDialsToRemove) { + Thing *tapDialThing = m_tapDials.value(tapDial); + if (tapDialThing->parentId() == thing->id()) { + qCDebug(dcPhilipsHue()) << "Hue tap dial disappeared from bridge"; + emit autoThingDisappeared(tapDialThing->id()); + } + } + foreach (HueMotionSensor* sensor, sensorsToRemove) { Thing *sensorThing = m_motionSensors.value(sensor); if (sensorThing->parentId() == thing->id()) { @@ -2062,6 +2288,13 @@ void IntegrationPluginPhilipsHue::processSensorsRefreshResponse(Thing *thing, co } } + // Tap dials + foreach (HueTapDial *tapDial, m_tapDials.keys()) { + if (tapDial->hasSensor(sensorId.toInt()) && m_tapDials.value(tapDial)->parentId() == thing->id()) { + tapDial->updateStates(sensorMap); + } + } + // Motion sensors foreach (HueMotionSensor *motionSensor, m_motionSensors.keys()) { if (motionSensor->hasSensor(sensorId.toInt()) && m_motionSensors.value(motionSensor)->parentId() == thing->id()) { @@ -2130,6 +2363,8 @@ void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, bool reac m_remotes.value(remote)->setStateValue(remoteConnectedStateTypeId, false); } else if (m_remotes.value(remote)->thingClassId() == dimmerSwitch2ThingClassId) { m_remotes.value(remote)->setStateValue(dimmerSwitch2ConnectedStateTypeId, false); + } else if (m_remotes.value(remote)->thingClassId() == tapDialThingClassId) { + m_remotes.value(remote)->setStateValue(tapDialConnectedStateTypeId, false); } else if (m_remotes.value(remote)->thingClassId() == tapThingClassId) { m_remotes.value(remote)->setStateValue(tapConnectedStateTypeId, false); } else if (m_remotes.value(remote)->thingClassId() == fohThingClassId) { @@ -2142,6 +2377,13 @@ void IntegrationPluginPhilipsHue::bridgeReachableChanged(Thing *thing, bool reac } } + foreach (HueTapDial *tapDial, m_tapDials.keys()) { + if (m_tapDials.value(tapDial)->parentId() == thing->id()) { + tapDial->setReachable(false); + m_tapDials.value(tapDial)->setStateValue(tapDialConnectedStateTypeId, false); + } + } + foreach (HueMotionSensor *motionSensor, m_motionSensors.keys()) { if (m_motionSensors.value(motionSensor)->parentId() == thing->id()) { motionSensor->setReachable(false); @@ -2211,6 +2453,13 @@ bool IntegrationPluginPhilipsHue::sensorAlreadyAdded(const QString &uuid) } } + // Hue tap dial + if (thing->thingClassId() == tapDialThingClassId) { + if (thing->paramValue(tapDialThingUuidParamTypeId).toString() == uuid) { + return true; + } + } + // Hue tap if (thing->thingClassId() == tapThingClassId) { if (thing->paramValue(tapThingUuidParamTypeId).toString() == uuid) { @@ -2239,6 +2488,15 @@ bool IntegrationPluginPhilipsHue::sensorAlreadyAdded(const QString &uuid) } } + // Tap Dial consists out of 2 devices + if (thing->thingClassId() == tapDialThingClassId) { + if (thing->paramValue(tapDialThingUuidRotaryParamTypeId).toString() == uuid) { + return true; + } else if (thing->paramValue(tapDialThingUuidSwitchParamTypeId).toString() == uuid) { + return true; + } + } + // Outdoor sensor consits out of 3 sensors if (thing->thingClassId() == outdoorSensorThingClassId) { if (thing->paramValue(outdoorSensorThingSensorUuidLightParamTypeId).toString() == uuid) { @@ -2281,4 +2539,4 @@ void IntegrationPluginPhilipsHue::abortRequests(QHash reply->abort(); } } -} +} \ No newline at end of file diff --git a/philipshue/integrationpluginphilipshue.h b/philipshue/integrationpluginphilipshue.h index 431aff5c..f67d57a3 100644 --- a/philipshue/integrationpluginphilipshue.h +++ b/philipshue/integrationpluginphilipshue.h @@ -36,6 +36,7 @@ #include "huelight.h" #include "hueremote.h" #include "huemotionsensor.h" +#include "huetapdial.h" #include "plugintimer.h" #include "network/networkaccessmanager.h" @@ -74,6 +75,13 @@ private slots: void remoteStateChanged(); void onRemoteButtonEvent(int buttonCode); + // Tap Dial + void onTapDialReachableChanged(bool reachable); + void onTapDialBatteryLevelChanged(int batteryLevel); + void onTapDialRotaryEvent(int rotationCode); + void onTapDialButtonEvent(int buttonCode); + + // Motion sensor void onMotionSensorReachableChanged(bool reachable); void onMotionSensorBatteryLevelChanged(int batteryLevel); @@ -121,6 +129,7 @@ private: QHash m_bridges; QHash m_lights; QHash m_remotes; + QHash m_tapDials; QHash m_motionSensors; void refreshLight(Thing *thing); @@ -155,4 +164,4 @@ private: void abortRequests(QHash requestList, Thing* thing); }; -#endif // INTEGRATIONPLUGINPHILIPSHUE_H +#endif // INTEGRATIONPLUGINPHILIPSHUE_H \ No newline at end of file diff --git a/philipshue/integrationpluginphilipshue.json b/philipshue/integrationpluginphilipshue.json index fc1c80a2..134de668 100644 --- a/philipshue/integrationpluginphilipshue.json +++ b/philipshue/integrationpluginphilipshue.json @@ -673,6 +673,168 @@ } ] }, + { + "id": "58e579b4-f917-478c-9006-f1f8d4df2ded", + "name": "tapDial", + "displayName": "Hue Tap Dial", + "interfaces": ["longpressmultibutton", "battery", "wirelessconnectable"], + "createMethods": ["auto"], + "paramTypes": [ + { + "id": "de566aaa-2a5f-4e31-bce1-5924014fbd6a", + "name": "modelId", + "displayName": "model id", + "type" : "QString", + "readOnly": true + }, + { + "id": "e2365a3c-cdf3-4b1e-b908-e7642e467f20", + "name": "uuid", + "displayName": "uuid", + "type" : "QString", + "readOnly": true + }, + { + "id": "dead7cf0-3ecc-4332-8fc6-42d4e71f508c", + "name": "idRotary", + "displayName": "Rotary dial id", + "type" : "int", + "readOnly": true + }, + { + "id": "267bcb24-b5c1-421d-bc6a-9b8fc7b43696", + "name": "uuidRotary", + "displayName": "Rotary dial uuid", + "type" : "QString", + "readOnly": true + }, + { + "id": "5269c70c-49e6-4090-aa57-3c89ee328b1e", + "name": "idSwitch", + "displayName": "Switch id", + "type" : "int", + "readOnly": true + }, + { + "id": "ae7ce90a-9bfb-45e4-90e4-8e491b374249", + "name": "uuidSwitch", + "displayName": "Switch uuid", + "type" : "QString", + "readOnly": true + } + ], + "settingsTypes": [ + { + "id": "045f8a6a-e8de-4780-a4d3-60a986130977", + "name": "stepSize", + "displayName": "Step size", + "type": "uint", + "defaultValue": 5, + "minValue": 1, + "maxValue": 50 + }, + { + "id": "30342d23-b2c1-4969-85f1-1b0f58eeb8ce", + "name": "largeStepSize", + "displayName": "Large Step size", + "type": "uint", + "defaultValue": 10, + "minValue": 1, + "maxValue": 50 + } + ], + "stateTypes": [ + { + "id": "7c81af92-3643-4211-9d62-407cbc596619", + "name": "connected", + "displayName": "reachable", + "displayNameEvent": "reachable changed", + "defaultValue": false, + "type": "bool", + "cached": false + }, + { + "id": "9d0d190f-2898-4c9a-a423-ec7187bfcb5e", + "name": "batteryLevel", + "displayName": "battery", + "displayNameEvent": "battery changed", + "type": "int", + "unit": "Percentage", + "defaultValue": 0, + "minValue": 0, + "maxValue": 100 + }, + { + "id": "79efe477-2757-4457-bdfb-a3fbeb198e7a", + "name": "batteryCritical", + "displayName": "battery critical", + "displayNameEvent": "battery critical changed", + "type": "bool", + "defaultValue": false + }, + { + "id": "23528402-b98f-49b8-90cf-7b68f251ad59", + "name": "level", + "displayName": "Level", + "displayNameEvent": "Level changed", + "unit": "Percentage", + "type": "uint", + "defaultValue": 0, + "minValue": 0, + "maxValue": 100 + } + ], + "eventTypes": [ + { + "id": "9ff8853f-b1fe-44ac-bcfe-193303397012", + "name": "pressed", + "displayName": "Button pressed", + "paramTypes": [ + { + "id": "73863657-b7fa-4c83-827c-6dec46278671", + "name": "buttonName", + "displayName": "Button name", + "type": "QString", + "allowedValues": ["•", "••", "•••", "••••"] + } + ] + }, + { + "id": "4c1bac9f-291e-4bd2-aa2e-c8ecc182c300", + "name": "longPressed", + "displayName": "Button longpress", + "paramTypes": [ + { + "id": "ce015b27-2ffb-4d8b-bb66-63013c4e2f52", + "name": "buttonName", + "displayName": "Button name", + "type": "QString", + "allowedValues": ["•", "••", "•••", "••••"] + } + ] + }, + { + "id": "11edf456-4484-45f3-8638-01162fb47609", + "name": "increase", + "displayName": "Increase" + }, + { + "id": "1b951b52-240d-437c-ae8d-c40298993acb", + "name": "decrease", + "displayName": "Decrease" + }, + { + "id": "8d8aa384-e408-4365-8381-ac763168788b", + "name": "largeIncrease", + "displayName": "Large Increase" + }, + { + "id": "d1415f84-c4cc-478d-89a4-bd7a5c9761e5", + "name": "largeDecrease", + "displayName": "Large Decrease" + } + ] + }, { "id": "1e34a056-9f37-4741-b249-a5eca7a4ab4e", "name": "smartButton", @@ -1310,4 +1472,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/philipshue/philipshue.pro b/philipshue/philipshue.pro index ac404637..7f433f9e 100644 --- a/philipshue/philipshue.pro +++ b/philipshue/philipshue.pro @@ -12,7 +12,8 @@ SOURCES += \ huelight.cpp \ huemotionsensor.cpp \ hueremote.cpp \ - huedevice.cpp + huedevice.cpp \ + huetapdial.cpp HEADERS += \ integrationpluginphilipshue.h \ @@ -23,7 +24,8 @@ HEADERS += \ huelight.h \ huemotionsensor.h \ hueremote.h \ - huedevice.h + huedevice.h \ + huetapdial.h diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts index 9bb9d8e3..d18778a9 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-cs.ts @@ -9,225 +9,224 @@ - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - výkon změněn - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight výkon - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - barevná teplota změněna - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - jas změněn - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight jas - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - baterie kritický stav změněno - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Tlačítko stisknuto - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - - - - - - - + + Last seen time - The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - + 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge dosažitelně - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api verze - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight barevná teplota - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - baterie změněna - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote baterie - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote baterie kritický stav diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts index 4bb222fa..a41a4265 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-da.ts @@ -9,225 +9,224 @@ Ikke godkendt til bridge. Konfigurer venligst bridge. - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. Modtog uventede data fra hue bridge. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + 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: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tidsperiode - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - strøm ændret - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight strøm - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - farvetemperatur ændret - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - lysstyrke ændret - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight lysstyrke - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - batteri kritisk ændret - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Knap trykket ned - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Tilgængelig - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - Batteriladningen ændret - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor Batteri - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - Batterikritisk ændret - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterikritisk - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - Temperatur ændret - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor Temperatur - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - Omgivende lys ændret - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor omgivende lys - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - Person til stede ændret - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor Person til stede - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - Sidst set ændret - - - - - - + + Last seen time - The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge til rådighed - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api-version - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight farvetemperatur - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - batteri ændret - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batteri - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batteri kritisk diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts index 01374e38..6225fa00 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-de.ts @@ -9,225 +9,224 @@ Keine Berechtigung zum Steuern der Bridge. Bitte konfiguriere die Bridge neu. - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - Die Verbindung zur Hue Bridge ist gescheitert. Der Knopf wurde nicht gedrückt. Bitte befolge die Anweisungen erneut. - - - + Received unexpected data from hue bridge. Unerwartete Daten von Hue Brige empfangen. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - Die Verbindung zur Hue Bridge ist gescheitert. Bitte stelle sicher, dass die Hue Bridge funktioniert und mit dem selben Netzwerk verbunden ist. - Please press the button on the Hue Bridge within 30 seconds before you continue. - Bitte drücke die Taste auf der Hue Bridge innerhalb 30 Sekunden bevor Du fortfährst. + - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - Verbindung zur Hue Bridge gescheitert. Bitte stelle sicher, dass die Hue Bridge funktioniert. + - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - Die Verbindung zur Hue Bridge ist gescheitert. Bitte stelle sicher, dass die Hue Bridge funktioniert und befolge die Anweisungen erneut. + - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - + + + Button longpress + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +The name of the EventType ({d5052592-044d-42e8-b98a-d3fe9f2f53ae}) of ThingClass dimmerSwitch2 + + + + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial + + + + + Hue Dimmer Switch V2 + The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) + + + + 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) + The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ---------- The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton Akkustand - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 - Taste lange gedrückt - - - + Friends of Hue Switch The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) - Friends of Hue Taster + - - Hue Dimmer Switch V2 - The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - Hue Dimmer Switch v2 - - - + 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 Leuchte + - + 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}) - Hue Smart Plug + - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - Hue Wall Switch Modul + - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + 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: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Modell Nummer - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - Philips Hue Bridge + - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - Eingeschaltet + - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor Nummer - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge Softwareversion - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - Softwareversion geändert + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) + - + Switch The name of the ActionType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - Schalten + - - Switched on or off - The name of the EventType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - Ein- oder ausgeschaltet + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) + - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Zeitspanne - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Typ - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - Eingeschaltet geändert - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight Eingeschaltet - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - Farbtemperatur geändert - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - Helligkeit geändert - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight Helligkeit - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - Batterie Ladestatus kritisch geändert - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Taste gedrückt - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Erreichbar - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - Batterieladung geändert - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor Batterie - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - Batterieladung kritisch geändert - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterieladung kritisch - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - Temperatur geändert - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor Temperatur - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - Ungebungslicht geändert - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor Umgebungslicht - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - Person anwesend geändert - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor Person ist anwesend - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - Zuletzt gesehen geändert - - - - - - + + Last seen time - The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge Erreichbar - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge API Version - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight Farbtemperatur - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - Batterie geändert - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote Batterie - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote Batterie Ladestatus kritisch 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 0e2bd9f2..f76d816c 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-en_US.ts @@ -9,225 +9,224 @@ - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - - - - - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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}) + + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight - + 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - - - - - - - + + Last seen time - The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - + 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge - + 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight - + 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts index 68099707..5828bd07 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-es.ts @@ -9,225 +9,224 @@ Niet geverifieerd om te overbruggen. Gelieve de brug te herconfigureren. - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. Onverwachte gegevens ontvangen van tintenbrug. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + 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: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tijdspanne - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - alimentación modificada - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight alimentación - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - temperatura de color modificada - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - brillo modificado - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight brillo - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - batería en estado crítico modificada - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Botón pulsado - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Alcanzable - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - Batería cambiada - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor Batería - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - Batería crítica cambiada - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batería crítica - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - La temperatura cambió - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor Temperatura - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - La luz ambiental cambió - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor Luz ambiental - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - La persona está presente cambiada - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor La persona está presente - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - 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}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - + 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge accesible - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versión api - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight temperatura de color - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - batería modificada - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batería - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batería en estado crítico diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts index f03e876e..b97dafaf 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-fr.ts @@ -9,225 +9,224 @@ Non authentifié pour le pont. Veuillez reconfigurer le pont. - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. Réception de données inattendues de la part de hue bridge. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + 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: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Période de temps - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - Alimentation modifiée - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight Alimentation - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - Température de couleur modifiée - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - Luminosité modifiée - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight Luminosité - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - Statut de batterie critique modifié - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Bouton appuyé - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Accessible à l'adresse suivante - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - Batterie changée - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor Batterie - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - Changement de pile critique - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterie critique - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - La température a changé - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor Temperature - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - La lumière ambiante a changé - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor Ambient light - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - 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}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor La personne est présente - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - 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}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge Accessible - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge Version API - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight Température de couleur - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - Batterie changée - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote Batterie - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote Batterie critique diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts index 8dde5895..b99c466f 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-it.ts @@ -9,225 +9,224 @@ Non autenticato a ponte. Si prega di riconfigurare il ponte. - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. Received unexpected data from hue bridge. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + 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: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Periodo di tempo - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - potenza modificata - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight potenza - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - temperatura del colore modificata - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - luminosità modificata - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight luminosità - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - batteria critica modificata - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Pulsante premuto - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Raggiungibile - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - Sostituzione della batteria - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor Batteria - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - Sostituzione della batteria critica - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batteria critica - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - Variazione di temperatura - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor Temperatura - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - Luce ambiente cambiata - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor Luce ambiente - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - Persona presente cambiata - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor La persona è presente - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - 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}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge raggiungibile - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versione api - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight temperatura colore - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - batteria modificata - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batteria - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batteria critica diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts index 7ae4e39f..6891133a 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-nl.ts @@ -9,225 +9,224 @@ Niet geverifieerd om te overbruggen. Gelieve de brug te herconfigureren. - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. Onverwachte gegevens ontvangen van tintenbrug. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + 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: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 Model ID - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c Sensor ID - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 Tijdspanne - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 Type - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b UUID - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - vermogen gewijzigd - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight vermogen - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - kleurtemperatuur gewijzigd - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - helderheid gewijzigd - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight helderheid - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - batterij kritiek gewijzigd - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Knop ingedrukt - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton Bereikbaar - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - Batterij vervangen - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor Batterij - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - Kritieke batterij vervangen - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton Batterijkritisch - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - Temperatuur veranderd - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor Temperatuur - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - Omgevingslicht veranderd - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor Omgevingslicht - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - Persoon is aanwezig veranderd - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor Persoon is aanwezig - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - Laatst gezien is de tijd veranderd - - - - - - + + Last seen time - The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge bereikbaar - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge api-versie - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight kleurtemperatuur - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - batterij vervangen - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote batterij - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote batterij kritiek diff --git a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts index 1a61a3b7..21b7e6ae 100644 --- a/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts +++ b/philipshue/translations/5f2e634b-b7f3-48ee-976a-b5ae22aa5c55-pt.ts @@ -9,225 +9,224 @@ - - The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. - - - - + Received unexpected data from hue bridge. - - - Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. - - Please press the button on the Hue Bridge within 30 seconds before you continue. - - + + Connecting to the Hue Bridge failed. Please make sure that your Hue Bridge is working and connected to the same network. + + + + + The pairing process failed. Please make sure that your Hue Bridge is working. - + + The pairing process failed. The link button has not been pressed. Please follow the on-screen instructions again. + + + + Please make sure that your Hue bridge is working and follow the on-screen instructions again. - + 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 + + + Philips Hue Tap Dial + + PhilipsHue - + Philips The name of the vendor ({0ae1e001-2aa6-47ed-b8c0-334c3728a68f}) Philips - - 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 ----------- -The name of the EventType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ----------- -The name of the EventType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ----------- -The name of the EventType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ----------- -The name of the EventType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ----------- -The name of the EventType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge - 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: wallSwitch, EventType: batteryLevel, ID: {b025cab6-d128-43eb-ba63-b16861d6ab10}) ----------- -The name of the StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryLevel, ID: {a0a1b480-6822-49bc-b1b1-50c39764d255}) ----------- -The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton - - - - - - Battery level changed - The name of the EventType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch ----------- -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 + The name of the EventType ({4c1bac9f-291e-4bd2-aa2e-c8ecc182c300}) of ThingClass tapDial +---------- +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}) + + Decrease + The name of the EventType ({1b951b52-240d-437c-ae8d-c40298993acb}) of ThingClass tapDial - + Hue Dimmer Switch V2 The name of the ThingClass ({2b40aea0-e0f3-4cde-b034-3ae8a69a5d9d}) - + + 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 + + + + 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 StateType ({b025cab6-d128-43eb-ba63-b16861d6ab10}) of ThingClass wallSwitch +---------- +The name of the StateType ({a0a1b480-6822-49bc-b1b1-50c39764d255}) of ThingClass smartButton + + + + + Friends of Hue Switch + The name of the ThingClass ({692bc4be-07b8-4b77-ab0b-a36185b17d76}) + + + + 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}) - + + Hue Tap Dial + The name of the ThingClass ({58e579b4-f917-478c-9006-f1f8d4df2ded}) + + + + Hue Wall Switch Module The name of the ThingClass ({e967027f-f8fc-410c-8b48-6ac4c42e2777}) - + + Increase + The name of the EventType ({11edf456-4484-45f3-8638-01162fb47609}) of ThingClass tapDial + + + + + Large Decrease + The name of the EventType ({d1415f84-c4cc-478d-89a4-bd7a5c9761e5}) of ThingClass tapDial + + + + + Large Increase + The name of the EventType ({8d8aa384-e408-4365-8381-ac763168788b}) of ThingClass tapDial + + + + + Large Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {30342d23-b2c1-4969-85f1-1b0f58eeb8ce}) + + + + + Level + The name of the StateType ({23528402-b98f-49b8-90cf-7b68f251ad59}) of ThingClass tapDial + + + + Long pressed The name of the EventType ({25803922-37f1-47c8-ac00-2d3acb9eb634}) of ThingClass smartButton - - - - + + + + Model ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {664c7091-12eb-4402-8239-31da85f73d38}) ---------- @@ -239,28 +238,37 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {9271179f-5 - + Philips Hue Bridge The name of the ThingClass ({642aa4c7-19aa-45ed-ba06-aa1ae6c9edf7}) - - - + + Powered The name of the ParamType (ThingClass: smartPlug, ActionType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ---------- -The name of the ParamType (ThingClass: smartPlug, EventType: power, ID: {77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) ----------- The name of the StateType ({77198588-cfd0-44ea-beb5-3a7ce06d4c1d}) of ThingClass smartPlug - - - - + + Rotary dial id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {dead7cf0-3ecc-4332-8fc6-42d4e71f508c}) + + + + + Rotary dial uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {267bcb24-b5c1-421d-bc6a-9b8fc7b43696}) + + + + + + + Sensor ID The name of the ParamType (ThingClass: foh, Type: thing, ID: {7559d16c-b56b-42e2-8347-65582fa276c0}) ---------- @@ -272,35 +280,38 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {54744fcc-c - - + Software version - The name of the ParamType (ThingClass: bridge, EventType: currentVersion, ID: {4c707b18-6604-4e6d-b6bc-4e27769c2adc}) ----------- -The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + The name of the StateType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge - - Software version changed - The name of the EventType ({4c707b18-6604-4e6d-b6bc-4e27769c2adc}) of ThingClass bridge + + Step size + The name of the ParamType (ThingClass: tapDial, Type: settings, ID: {045f8a6a-e8de-4780-a4d3-60a986130977}) - + 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 + + Switch id + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {5269c70c-49e6-4090-aa57-3c89ee328b1e}) - - + + Switch uuid + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {ae7ce90a-9bfb-45e4-90e4-8e491b374249}) + + + + + Time period The name of the ParamType (ThingClass: motionSensor, Type: settings, ID: {beedc4af-c107-4c53-be25-fd01a349fd35}) ---------- @@ -308,10 +319,10 @@ The name of the ParamType (ThingClass: outdoorSensor, Type: settings, ID: {21d46 - - - - + + + + Type The name of the ParamType (ThingClass: foh, Type: thing, ID: {16ca2ee1-d738-4f51-8f9a-53547d3d824e}) ---------- @@ -323,10 +334,10 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {7221aacc-1 - - - - + + + + UUID The name of the ParamType (ThingClass: foh, Type: thing, ID: {2ca66286-1caf-4e09-8e18-05bb7d7df314}) ---------- @@ -338,16 +349,19 @@ The name of the ParamType (ThingClass: smartButton, Type: thing, ID: {2378a06d-b - - - - - - - + + + + + + + + model id The name of the ParamType (ThingClass: smartPlug, Type: thing, ID: {a5441712-5a4a-43a7-b797-3806cba86e1a}) ---------- +The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {de566aaa-2a5f-4e31-bce1-5924014fbd6a}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {985fdf8a-e4a5-4a6e-bf2c-47559b32f395}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {5910da25-c1ad-417c-9130-8f04e8ef1e6e}) @@ -362,13 +376,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}) ---------- @@ -386,14 +400,17 @@ 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}) + The name of the ParamType (ThingClass: tapDial, Type: thing, ID: {e2365a3c-cdf3-4b1e-b908-e7642e467f20}) +---------- +The name of the ParamType (ThingClass: dimmerSwitch2, Type: thing, ID: {200b5daa-1023-49cb-a933-bdd1ac7df4bd}) ---------- The name of the ParamType (ThingClass: remote, Type: thing, ID: {3cdf9de1-ae23-47dc-a8bd-056a6707060c}) ---------- @@ -407,11 +424,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}) ---------- @@ -425,64 +442,37 @@ 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 ----------- -The name of the EventType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ----------- -The name of the EventType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight - potência alterada - - - - - - - - - - - - - - + + + + + + + + power The name of the ParamType (ThingClass: onOffLight, ActionType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: power, ID: {5dc5e71b-789e-4c68-abb6-1534c8af019e}) ----------- The name of the StateType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- The name of the ParamType (ThingClass: dimmableLight, ActionType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: power, ID: {5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) ----------- The name of the StateType ({5995ecb7-b5e5-4f6a-b4d6-33c93497e5fb}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: power, ID: {4e579f6a-e4b3-4876-804a-9fcc066f90f9}) ----------- The name of the StateType ({4e579f6a-e4b3-4876-804a-9fcc066f90f9}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: power, ID: {90aaffe5-6a76-47d2-a14a-550f60390245}) ----------- The name of the StateType ({90aaffe5-6a76-47d2-a14a-550f60390245}) of ThingClass colorLight potência - - - - + + + + Set power The name of the ActionType ({5dc5e71b-789e-4c68-abb6-1534c8af019e}) of ThingClass onOffLight ---------- @@ -494,17 +484,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 ----------- -The name of the EventType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight - temperatura de cor alterada - - - - + + Set color temperature The name of the ActionType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- @@ -512,74 +493,44 @@ 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}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: color, ID: {d25423e7-b924-4b20-80b6-77eecc65d089}) ----------- The name of the StateType ({d25423e7-b924-4b20-80b6-77eecc65d089}) of ThingClass colorLight 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 ----------- -The name of the EventType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ----------- -The name of the EventType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight - brilho alterado - - - - - - - - - - - + + + + + + brightness The name of the ParamType (ThingClass: dimmableLight, ActionType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: brightness, ID: {2f062912-1159-423b-8143-48a8e69b9348}) ----------- The name of the StateType ({2f062912-1159-423b-8143-48a8e69b9348}) of ThingClass dimmableLight ---------- The name of the ParamType (ThingClass: colorTemperatureLight, ActionType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: brightness, ID: {bdf6f831-b448-4ff6-9f85-12e26b4e5534}) ----------- The name of the StateType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: brightness, ID: {90e91f64-a208-468c-a5a2-7f47e08859e2}) ----------- The name of the StateType ({90e91f64-a208-468c-a5a2-7f47e08859e2}) of ThingClass colorLight brilho - - + + Set brigtness The name of the ActionType ({bdf6f831-b448-4ff6-9f85-12e26b4e5534}) of ThingClass colorTemperatureLight ---------- @@ -587,39 +538,25 @@ 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 ----------- -The name of the EventType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote - alterada bateria crítica - - - - - - - - + + + + + + + Button pressed The name of the EventType ({2cc68bd3-ad73-4bf3-9905-639870d071bd}) of ThingClass foh ---------- @@ -629,19 +566,23 @@ The name of the EventType ({4623b5ff-b999-4200-ba38-89435d78fcae}) of ThingClass ---------- The name of the EventType ({c809179e-effa-4717-9172-11df7e80d109}) of ThingClass smartButton ---------- +The name of the EventType ({9ff8853f-b1fe-44ac-bcfe-193303397012}) of ThingClass tapDial +---------- The name of the EventType ({b7a5b3df-2c60-4b97-bf99-b97e6012a194}) of ThingClass dimmerSwitch2 ---------- The name of the EventType ({8da28cf1-2457-451e-953e-2685f8daeda8}) of ThingClass remote Botão pressionado - - - - - - - + + + + + + + + + Button name The name of the ParamType (ThingClass: foh, EventType: pressed, ID: {f1da229e-fce2-4329-8850-1c92b5bc5925}) ---------- @@ -649,6 +590,10 @@ The name of the ParamType (ThingClass: tap, EventType: pressed, ID: {8ed643c0-1b ---------- The name of the ParamType (ThingClass: wallSwitch, EventType: pressed, ID: {adb4ec5e-e48f-4697-a876-e56e8458987a}) ---------- +The name of the ParamType (ThingClass: tapDial, EventType: longPressed, ID: {ce015b27-2ffb-4d8b-bb66-63013c4e2f52}) +---------- +The name of the ParamType (ThingClass: tapDial, EventType: pressed, ID: {73863657-b7fa-4c83-827c-6dec46278671}) +---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: longPressed, ID: {c03bb1ad-f8c9-4993-9d25-557ade2d2c13}) ---------- The name of the ParamType (ThingClass: dimmerSwitch2, EventType: pressed, ID: {562f2d4d-351e-4c2c-98bf-187b948587e4}) @@ -659,26 +604,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}) ---------- @@ -686,9 +631,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}) ---------- @@ -698,8 +643,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}) ---------- @@ -707,8 +652,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}) ---------- @@ -716,8 +661,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}) ---------- @@ -725,8 +670,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}) ---------- @@ -734,8 +679,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}) ---------- @@ -743,8 +688,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}) ---------- @@ -752,354 +697,174 @@ 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 ----------- -The name of the EventType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ----------- -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 ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ----------- -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}) ----------- -The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ----------- -The name of the ParamType (ThingClass: motionSensor, EventType: connected, ID: {19c28b69-a9c2-4908-8255-7681f72c2d92}) + The name of the StateType ({6fdf4b26-6b93-4db9-9ff4-e755f5da0a3c}) of ThingClass smartPlug ---------- The name of the StateType ({19c28b69-a9c2-4908-8255-7681f72c2d92}) of ThingClass motionSensor ---------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: connected, ID: {9fe43e6b-3c29-43a9-bb96-3b80eacc10db}) ----------- 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 ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: connected, ID: {b51071af-1290-41f1-b2eb-e84527342ade}) ----------- The name of the StateType ({b51071af-1290-41f1-b2eb-e84527342ade}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: connected, ID: {b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) ----------- The name of the StateType ({b449cca5-19a0-483f-b4bd-b9b43b4f8ed4}) of ThingClass smartButton - - - Battery changed - The name of the EventType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the EventType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - - - - - - - + + Battery - The name of the ParamType (ThingClass: motionSensor, EventType: batteryLevel, ID: {ac463b30-24af-4352-84da-19a3ffc906bd}) ----------- -The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryLevel, ID: {19b18531-61e5-4998-89d1-765d740e24eb}) + The name of the StateType ({ac463b30-24af-4352-84da-19a3ffc906bd}) of ThingClass motionSensor ---------- The name of the StateType ({19b18531-61e5-4998-89d1-765d740e24eb}) of ThingClass outdoorSensor - - - - - Battery critical changed - The name of the EventType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the EventType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ----------- -The name of the EventType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ----------- -The name of the EventType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - - - - - - - - - + + + + Battery critical - The name of the ParamType (ThingClass: motionSensor, EventType: batteryCritical, ID: {d7c4e143-6f03-411e-a12e-dd22806270fd}) ----------- -The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: batteryCritical, ID: {617aa352-789c-46e7-bf55-7455b1e5018e}) + The name of the StateType ({d7c4e143-6f03-411e-a12e-dd22806270fd}) of ThingClass motionSensor ---------- The name of the StateType ({617aa352-789c-46e7-bf55-7455b1e5018e}) of ThingClass outdoorSensor ---------- -The name of the ParamType (ThingClass: wallSwitch, EventType: batteryCritical, ID: {7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) ----------- The name of the StateType ({7fcf84e4-5638-46ce-9a7c-85b8bd466b38}) of ThingClass wallSwitch ---------- -The name of the ParamType (ThingClass: smartButton, EventType: batteryCritical, ID: {7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) ----------- The name of the StateType ({7c1fd7c1-f322-4be7-9c22-7d14d0ec38ea}) of ThingClass smartButton - - - Temperature changed - The name of the EventType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the EventType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - - - - - - - + + Temperature - The name of the ParamType (ThingClass: motionSensor, EventType: temperature, ID: {63ee79f7-702b-48c1-86cf-8ddebb78bae6}) ----------- -The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: temperature, ID: {88f5b708-65bb-41a7-885f-01be46074713}) + The name of the StateType ({63ee79f7-702b-48c1-86cf-8ddebb78bae6}) of ThingClass motionSensor ---------- The name of the StateType ({88f5b708-65bb-41a7-885f-01be46074713}) of ThingClass outdoorSensor - - - Ambient light changed - The name of the EventType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the EventType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - - - - - - - + + Ambient light - The name of the ParamType (ThingClass: motionSensor, EventType: lightIntensity, ID: {064f48c1-f86d-4a0a-bdae-3420123dff3f}) ----------- -The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lightIntensity, ID: {4fb12c06-981c-4c42-b55c-46bdfe68681a}) + The name of the StateType ({064f48c1-f86d-4a0a-bdae-3420123dff3f}) of ThingClass motionSensor ---------- The name of the StateType ({4fb12c06-981c-4c42-b55c-46bdfe68681a}) of ThingClass outdoorSensor - - - Person is present changed - The name of the EventType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the EventType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - - - - - - - + + Person is present - The name of the ParamType (ThingClass: motionSensor, EventType: isPresent, ID: {e38ee39c-c77f-40b5-b122-4efc411da0ed}) ----------- -The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: isPresent, ID: {680f79cf-c17c-4ffd-96fa-a5b286e2c117}) + The name of the StateType ({e38ee39c-c77f-40b5-b122-4efc411da0ed}) of ThingClass motionSensor ---------- The name of the StateType ({680f79cf-c17c-4ffd-96fa-a5b286e2c117}) of ThingClass outdoorSensor - - - Last seen time changed - The name of the EventType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the EventType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - - - - - - - + + Last seen time - The name of the ParamType (ThingClass: motionSensor, EventType: lastSeenTime, ID: {ef2e564e-2443-448f-bcd9-f85a1126ee6a}) ----------- -The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ----------- -The name of the ParamType (ThingClass: outdoorSensor, EventType: lastSeenTime, ID: {6fa16fb2-053c-4c3c-a39b-9548c1b15089}) + The name of the StateType ({ef2e564e-2443-448f-bcd9-f85a1126ee6a}) of ThingClass motionSensor ---------- The name of the StateType ({6fa16fb2-053c-4c3c-a39b-9548c1b15089}) of ThingClass outdoorSensor - + 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}) + The name of the StateType ({7c81af92-3643-4211-9d62-407cbc596619}) of ThingClass tapDial ---------- The name of the StateType ({45f75511-7d72-410e-aed0-5720cc497bf8}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: connected, ID: {9f9fac89-2dcd-4db6-b214-0065662af62a}) ----------- The name of the StateType ({9f9fac89-2dcd-4db6-b214-0065662af62a}) of ThingClass remote ---------- -The name of the ParamType (ThingClass: onOffLight, EventType: connected, ID: {111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) ----------- The name of the StateType ({111a5a4a-63d4-4d1d-ac72-b5b5a29fd0aa}) of ThingClass onOffLight ---------- -The name of the ParamType (ThingClass: dimmableLight, EventType: connected, ID: {57f80677-745e-4cb1-b894-87d8542a7e8c}) ----------- The name of the StateType ({57f80677-745e-4cb1-b894-87d8542a7e8c}) of ThingClass dimmableLight ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: connected, ID: {38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) ----------- The name of the StateType ({38f3ddea-ceb0-47ae-bbd8-e70b5a89b1bf}) of ThingClass colorTemperatureLight ---------- -The name of the ParamType (ThingClass: colorLight, EventType: connected, ID: {19bb8d10-1b28-4ba3-99b7-a634138dcfde}) ----------- The name of the StateType ({19bb8d10-1b28-4ba3-99b7-a634138dcfde}) of ThingClass colorLight ---------- -The name of the ParamType (ThingClass: bridge, EventType: connected, ID: {15794d26-fde8-4a61-8f83-d7830534975f}) ----------- The name of the StateType ({15794d26-fde8-4a61-8f83-d7830534975f}) of ThingClass bridge recarregável - - + api version - The name of the ParamType (ThingClass: bridge, EventType: apiVersion, ID: {7a230e89-c4ce-4276-90e0-6a9ddb890603}) ----------- -The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge + The name of the StateType ({7a230e89-c4ce-4276-90e0-6a9ddb890603}) of ThingClass bridge versão api - - + update status - The name of the ParamType (ThingClass: bridge, EventType: updateStatus, ID: {16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) ----------- -The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge + The name of the StateType ({16a126f3-0cef-4931-bb2b-9e1b49bec7fc}) of ThingClass bridge 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}) ---------- -The name of the ParamType (ThingClass: colorTemperatureLight, EventType: colorTemperature, ID: {fee57738-45c7-48fe-a06b-1397376361f0}) ----------- The name of the StateType ({fee57738-45c7-48fe-a06b-1397376361f0}) of ThingClass colorTemperatureLight ---------- The name of the ParamType (ThingClass: colorLight, ActionType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: colorTemperature, ID: {c0f4206f-f219-4f06-93c4-4ca515a56f79}) ----------- The name of the StateType ({c0f4206f-f219-4f06-93c4-4ca515a56f79}) of ThingClass colorLight temperatura de cor - - - + + effect The name of the ParamType (ThingClass: colorLight, ActionType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ---------- -The name of the ParamType (ThingClass: colorLight, EventType: effect, ID: {0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) ----------- The name of the StateType ({0b7cdd8d-4db8-4183-abe2-f3c01d1c9afc}) of ThingClass colorLight 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 ---------- @@ -1109,9 +874,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}) ---------- @@ -1121,20 +886,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}) ---------- @@ -1142,41 +907,26 @@ 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 ----------- -The name of the EventType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote - bateria substituída - - - - - - + + + battery - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryLevel, ID: {cb6e045c-e305-4950-9cd4-fb3989912156}) + The name of the StateType ({9d0d190f-2898-4c9a-a423-ec7187bfcb5e}) of ThingClass tapDial ---------- The name of the StateType ({cb6e045c-e305-4950-9cd4-fb3989912156}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryLevel, ID: {683e493a-9796-4d5e-b0e3-61cb178d5819}) ----------- The name of the StateType ({683e493a-9796-4d5e-b0e3-61cb178d5819}) of ThingClass remote bateria - - - - + + + battery critical - The name of the ParamType (ThingClass: dimmerSwitch2, EventType: batteryCritical, ID: {88cc3794-3e83-47d4-8889-0b3246336bf7}) + The name of the StateType ({79efe477-2757-4457-bdfb-a3fbeb198e7a}) of ThingClass tapDial ---------- The name of the StateType ({88cc3794-3e83-47d4-8889-0b3246336bf7}) of ThingClass dimmerSwitch2 ---------- -The name of the ParamType (ThingClass: remote, EventType: batteryCritical, ID: {f8516899-6312-4110-bb97-70ffa81dc530}) ----------- The name of the StateType ({f8516899-6312-4110-bb97-70ffa81dc530}) of ThingClass remote bateria crítica