From fd5307772ca8932b7215e9ff3cb28d28b2122540 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sat, 30 Jul 2022 21:02:00 +0200 Subject: [PATCH] Shelly: Add support for the Shelly TRV --- shelly/README.md | 1 + shelly/integrationpluginshelly.cpp | 112 +- shelly/integrationpluginshelly.json | 203 ++ ...6162773b-0435-408c-a4f8-7860d38031a9-de.ts | 2361 ++++------------- ...2773b-0435-408c-a4f8-7860d38031a9-en_US.ts | 2259 ++++------------ 5 files changed, 1401 insertions(+), 3535 deletions(-) diff --git a/shelly/README.md b/shelly/README.md index d10ac304..25685add 100644 --- a/shelly/README.md +++ b/shelly/README.md @@ -19,6 +19,7 @@ The currently supported devices are: * Shelly i3 * Shelly Motion * Shelly Vintage +* Shelly TRV ## Requirements The Shelly device needs to be connected to the same WiFi as nymea is in. New Shelly devices will open a WiFi named with diff --git a/shelly/integrationpluginshelly.cpp b/shelly/integrationpluginshelly.cpp index c3228e5d..86136d2f 100644 --- a/shelly/integrationpluginshelly.cpp +++ b/shelly/integrationpluginshelly.cpp @@ -75,6 +75,7 @@ static QHash idParamTypeMap = { {shellyHTThingClassId, shellyHTThingIdParamTypeId}, {shellyI3ThingClassId, shellyI3ThingIdParamTypeId}, {shellyMotionThingClassId, shellyMotionThingIdParamTypeId}, + {shellyTrvThingClassId, shellyTrvThingIdParamTypeId}, }; static QHash usernameParamTypeMap = { @@ -91,7 +92,8 @@ static QHash usernameParamTypeMap = { {shellyEm3ThingClassId, shellyEm3ThingUsernameParamTypeId}, {shellyHTThingClassId, shellyHTThingUsernameParamTypeId}, {shellyI3ThingClassId, shellyI3ThingUsernameParamTypeId}, - {shellyMotionThingClassId, shellyMotionThingUsernameParamTypeId} + {shellyMotionThingClassId, shellyMotionThingUsernameParamTypeId}, + {shellyTrvThingClassId, shellyTrvThingUsernameParamTypeId}, }; static QHash passwordParamTypeMap = { @@ -108,7 +110,8 @@ static QHash passwordParamTypeMap = { {shellyEm3ThingClassId, shellyEm3ThingPasswordParamTypeId}, {shellyHTThingClassId, shellyHTThingPasswordParamTypeId}, {shellyI3ThingClassId, shellyI3ThingPasswordParamTypeId}, - {shellyMotionThingClassId, shellyMotionThingPasswordParamTypeId} + {shellyMotionThingClassId, shellyMotionThingPasswordParamTypeId}, + {shellyTrvThingClassId, shellyTrvThingPasswordParamTypeId} }; static QHash rollerModeParamTypeMap = { @@ -138,6 +141,7 @@ static QHash rebootActionTypeMap = { {shelly2RebootActionTypeId, shelly2ThingClassId}, {shelly25RebootActionTypeId, shelly25ThingClassId}, {shellyI3RebootActionTypeId, shellyI3ThingClassId}, + {shellyTrvRebootActionTypeId, shellyTrvThingClassId}, }; static QHash powerActionTypesMap = { @@ -228,7 +232,8 @@ static QHash updateActionTypesMap = { {shellyEm3PerformUpdateActionTypeId, shellyEm3ThingClassId}, {shellyHTPerformUpdateActionTypeId, shellyHTThingClassId}, {shellyI3PerformUpdateActionTypeId, shellyI3ThingClassId}, - {shellyMotionPerformUpdateActionTypeId, shellyMotionThingClassId} + {shellyMotionPerformUpdateActionTypeId, shellyMotionThingClassId}, + {shellyTrvPerformUpdateActionTypeId, shellyTrvThingClassId} }; // Settings @@ -294,6 +299,8 @@ void IntegrationPluginShelly::discoverThings(ThingDiscoveryInfo *info) namePattern = QRegExp("shellyix3-[0-9A-Z]+$"); } else if (info->thingClassId() == shellyMotionThingClassId) { namePattern = QRegExp("shellymotionsensor-[0-9A-Z]+$"); + } else if (info->thingClassId() == shellyTrvThingClassId) { + namePattern = QRegExp("shellytrv-[0-9A-Z]+$"); } if (!entry.name().contains(namePattern)) { continue; @@ -384,8 +391,10 @@ void IntegrationPluginShelly::executeAction(ThingActionInfo *info) QUrl url; url.setScheme("http"); url.setHost(getIP(info->thing()).toString()); - url.setUserName(thing->paramValue(usernameParamTypeMap.value(thing->thingClassId())).toString()); - url.setPassword(thing->paramValue(passwordParamTypeMap.value(thing->thingClassId())).toString()); + if (!thing->paramValue(usernameParamTypeMap.value(thing->thingClassId())).toString().isEmpty()) { + url.setUserName(thing->paramValue(usernameParamTypeMap.value(thing->thingClassId())).toString()); + url.setPassword(thing->paramValue(passwordParamTypeMap.value(thing->thingClassId())).toString()); + } if (rebootActionTypeMap.contains(action.actionTypeId())) { if (shellyId.contains("Plus")) { @@ -574,6 +583,61 @@ void IntegrationPluginShelly::executeAction(ThingActionInfo *info) return; } + if (action.actionTypeId() == shellyTrvTargetTemperatureActionTypeId) { + double targetValue = action.paramValue(shellyTrvTargetTemperatureActionTargetTemperatureParamTypeId).toDouble(); + url.setPath(QString("/thermostats/0")); + QUrlQuery query; + query.addQueryItem("target_t", QString::number(targetValue)); + query.addQueryItem("target_t_enabled", "true"); + url.setQuery(query); + qCDebug(dcShelly()) << "Requesting:" << url; + QNetworkReply *reply = hardwareManager()->networkManager()->get(QNetworkRequest(url)); + connect(reply, &QNetworkReply::finished, &QNetworkReply::deleteLater); + connect(reply, &QNetworkReply::finished, info, [info, reply, targetValue](){ + // The Shelly TRV seems to reply with OK, but then takes ages to actually set the value + // If we send another value within that time frame, it will again reply with OK but just ognore it... + // As a workaround we'll make nymea wait for a second until allowing to send the next action. + info->thing()->setStateValue(shellyTrvTargetTemperatureStateTypeId, targetValue); + Thing::ThingError status = reply->error() == QNetworkReply::NoError ? Thing::ThingErrorNoError : Thing::ThingErrorHardwareFailure; + QTimer::singleShot(1000, info, [info, status](){ + info->finish(status); + }); + }); + return; + } + if (action.actionTypeId() == shellyTrvValvePositionActionTypeId) { + int targetValue = action.paramValue(shellyTrvValvePositionActionValvePositionParamTypeId).toInt(); + url.setPath(QString("/thermostats/0")); + QUrlQuery query; + query.addQueryItem("pos", QString::number(targetValue)); + url.setQuery(query); + QNetworkReply *reply = hardwareManager()->networkManager()->get(QNetworkRequest(url)); + connect(reply, &QNetworkReply::finished, &QNetworkReply::deleteLater); + connect(reply, &QNetworkReply::finished, info, [info, reply, targetValue](){ + // The Shelly TRV seems to reply with OK, but then takes ages to actually set the value + // If we send another value within that time frame, it will again reply with OK but just ognore it... + // As a workaround we'll make nymea wait for a second until allowing to send the next action. + info->thing()->setStateValue(shellyTrvValvePositionStateTypeId, targetValue); + Thing::ThingError status = reply->error() == QNetworkReply::NoError ? Thing::ThingErrorNoError : Thing::ThingErrorHardwareFailure; + QTimer::singleShot(1000, info, [info, status](){ + info->finish(status); + }); + }); + return; + } + if (action.actionTypeId() == shellyTrvBoostActionTypeId) { + url.setPath(QString("/thermostats/0")); + QUrlQuery query; + query.addQueryItem("boost_minutes", thing->setting(shellyTrvSettingsBoostDurationParamTypeId).toString()); + url.setQuery(query); + QNetworkReply *reply = hardwareManager()->networkManager()->get(QNetworkRequest(url)); + connect(reply, &QNetworkReply::finished, &QNetworkReply::deleteLater); + connect(reply, &QNetworkReply::finished, info, [info, reply](){ + info->finish(reply->error() == QNetworkReply::NoError ? Thing::ThingErrorNoError : Thing::ThingErrorHardwareFailure); + }); + return; + } + if (action.actionTypeId() == shellyRollerOpenActionTypeId) { url.setPath(QString("/roller/%1").arg(info->thing()->paramValue(shellyRollerThingChannelParamTypeId).toInt() - 1)); QUrlQuery query; @@ -790,8 +854,12 @@ void IntegrationPluginShelly::onMulticastMessageReceived(const QHostAddress &sou case 3101: thing->setStateValue("temperature", value.toDouble()); break; - case 3103: - thing->setStateValue("humidity", value.toDouble()); + case 3103: // This is target tempererature for the TRV, but humidity for other sensors + if (thing->thingClassId() == shellyTrvThingClassId) { + thing->setStateValue("targetTemperature", value.toDouble()); + } else { + thing->setStateValue("humidity", value.toDouble()); + } break; case 3106: thing->setStateValue("lightIntensity", value.toInt()); @@ -804,6 +872,13 @@ void IntegrationPluginShelly::onMulticastMessageReceived(const QHostAddress &sou } thing->setStateValue("batteryCritical", thing->stateValue("batteryLevel").toUInt() < 10); break; + case 3121: + thing->setStateValue("valvePosition", value.toUInt()); + thing->setStateValue("heatingOn", value.toUInt() > 0); + break; + case 3122: + thing->setStateValue("boost", value.toUInt() > 0); + break; case 4101: // power meter for channel 1 if (thing->hasState("currentPower")) { thing->setStateValue("currentPower", value); @@ -1132,8 +1207,10 @@ void IntegrationPluginShelly::setupGen1(ThingSetupInfo *info) url.setHost(address.toString()); url.setPort(80); url.setPath("/settings"); - url.setUserName(info->thing()->paramValue(usernameParamTypeMap.value(info->thing()->thingClassId())).toString()); - url.setPassword(info->thing()->paramValue(passwordParamTypeMap.value(info->thing()->thingClassId())).toString()); + if (!thing->paramValue(usernameParamTypeMap.value(thing->thingClassId())).toString().isEmpty()) { + url.setUserName(info->thing()->paramValue(usernameParamTypeMap.value(info->thing()->thingClassId())).toString()); + url.setPassword(info->thing()->paramValue(passwordParamTypeMap.value(info->thing()->thingClassId())).toString()); + } QUrlQuery query; query.addQueryItem("coiot_enable", "true"); @@ -1181,6 +1258,10 @@ void IntegrationPluginShelly::setupGen1(ThingSetupInfo *info) info->thing()->setSettingValue(shellyI3SettingsLongpushMinDurationParamTypeId, settingsMap.value("longpush_duration_ms").toMap().value("min").toUInt()); info->thing()->setSettingValue(shellyI3SettingsLongpushMaxDurationParamTypeId, settingsMap.value("longpush_duration_ms").toMap().value("max").toUInt()); info->thing()->setSettingValue(shellyI3SettingsMultipushTimeBetweenPushesParamTypeId, settingsMap.value("multipush_time_between_pushes_ms").toMap().value("max").toUInt()); + } else if (info->thing()->thingClassId() == shellyTrvThingClassId) { + info->thing()->setSettingValue(shellyTrvSettingsChildLockParamTypeId, settingsMap.value("child_lock").toBool()); + info->thing()->setSettingValue(shellyTrvSettingsDisplayFlippedParamTypeId, settingsMap.value("display").toMap().value("flipped").toBool()); + info->thing()->setSettingValue(shellyTrvSettingsDisplayBrightnessParamTypeId, settingsMap.value("display").toMap().value("brightness").toUInt()); } ThingDescriptors autoChilds; @@ -1235,6 +1316,7 @@ void IntegrationPluginShelly::setupGen1(ThingSetupInfo *info) } info->finish(Thing::ThingErrorNoError); + info->thing()->setStateValue("connected", true); emit autoThingsAppeared(autoChilds); @@ -1281,7 +1363,8 @@ void IntegrationPluginShelly::setupGen1(ThingSetupInfo *info) // Handle thing settings of gateway devices if (info->thing()->thingClassId() == shellyPlugThingClassId || info->thing()->thingClassId() == shellyButton1ThingClassId || - info->thing()->thingClassId() == shellyI3ThingClassId) { + info->thing()->thingClassId() == shellyI3ThingClassId || + info->thing()->thingClassId() == shellyTrvThingClassId) { connect(info->thing(), &Thing::settingChanged, this, [this, thing, shellyId](const ParamTypeId &settingTypeId, const QVariant &value) { pluginStorage()->beginGroup(thing->id().toString()); @@ -1316,6 +1399,15 @@ void IntegrationPluginShelly::setupGen1(ThingSetupInfo *info) || settingTypeId == shellyI3SettingsMultipushTimeBetweenPushesParamTypeId) { url.setPath("/settings"); query.addQueryItem("multipush_time_between_pushes_ms_max", value.toString()); + } else if (settingTypeId == shellyTrvSettingsChildLockParamTypeId) { + url.setPath("/settings"); + query.addQueryItem("child_lock", value.toString()); + } else if (settingTypeId == shellyTrvSettingsDisplayBrightnessParamTypeId) { + url.setPath("/settings"); + query.addQueryItem("display_brightness", value.toString()); + } else if (settingTypeId == shellyTrvSettingsDisplayFlippedParamTypeId) { + url.setPath("/settings"); + query.addQueryItem("display_flipped", value.toString()); } url.setQuery(query); diff --git a/shelly/integrationpluginshelly.json b/shelly/integrationpluginshelly.json index 72dbb0af..23a26ce0 100644 --- a/shelly/integrationpluginshelly.json +++ b/shelly/integrationpluginshelly.json @@ -1458,6 +1458,209 @@ } ] }, + { + "id": "52932a47-38cd-4dce-b338-88122ce4ab8a", + "name": "shellyTrv", + "displayName": "Shelly TRV", + "createMethods": ["discovery"], + "interfaces": ["thermostat", "temperaturesensor", "wirelessconnectable", "battery", "update"], + "paramTypes": [ + { + "id": "20e21853-cfc1-4f78-9ba3-12682f81e021", + "name":"id", + "displayName": "Shelly ID", + "type": "QString", + "readOnly": true + }, + { + "id": "ee942141-3102-4b6a-87dc-0fc6481924e5", + "name": "username", + "displayName": "Username (optional)", + "type": "QString" + }, + { + "id": "bf4fead2-7a1a-44e7-bd32-ea2064944098", + "name": "password", + "displayName": "Password (optional)", + "type": "QString" + } + ], + "settingsTypes": [ + { + "id": "3a1dbc59-5b61-4650-a0fa-e127d337169e", + "name": "boostDuration", + "displayName": "Boost duration (minutes)", + "type": "uint", + "minValue": 0, + "maxValue": 120, + "defaultValue": 10 + }, + { + "id": "38a98b85-9c6e-4dc8-8d73-5248532d2ed8", + "name": "childLock", + "displayName": "Child lock", + "type": "bool", + "defaultValue": false + }, + { + "id": "83cfbdb7-a807-4a81-9eb0-5e0d62efdbaf", + "name": "displayFlipped", + "displayName": "Display flipped", + "type": "bool", + "defaultValue": false + }, + { + "id": "e0f7aae7-d576-4897-9626-2cc7e452b30a", + "name": "displayBrightness", + "displayName": "Display brightness", + "type": "uint", + "minValue": 1, + "maxValue": 7, + "defaultValue": 7 + } + ], + "stateTypes": [ + { + "id": "d9a26a08-5735-403a-ab02-7638bd0a471f", + "name": "temperature", + "displayName": "Temperature", + "displayNameEvent": "Temperature changed", + "type": "double", + "unit": "DegreeCelsius", + "defaultValue": 0 + }, + { + "id": "9800babf-a6cc-4eda-b42e-8f5481b61aea", + "name": "targetTemperature", + "displayName": "Target temperature", + "displayNameEvent": "Target temperature changed", + "displayNameAction": "Set target temperature", + "type": "double", + "unit": "DegreeCelsius", + "defaultValue": 0, + "minValue": 4, + "maxValue": 31, + "writable": true + }, + { + "id": "e442ca7a-ee17-482b-aae4-579915029abf", + "name": "valvePosition", + "displayName": "Valve position", + "displayNameEvent": "Valve position changed", + "displayNameAction": "Set valve position", + "type": "uint", + "unit": "Percentage", + "defaultValue": 0, + "minValue": 0, + "maxValue": 100, + "writable": true + }, + { + "id": "1935b7fa-72a5-4aee-877e-d656cd79d688", + "name": "heatingOn", + "displayName": "Heating", + "displayNameEvent": "Heating changed", + "type": "bool", + "defaultValue": false + }, + { + "id": "ef74da4d-70f4-49cd-9697-a8e2bf25dee1", + "name": "boost", + "displayName": "Boost", + "displayNameEvent": "Boost enabled/disabled", + "displayNameAction": "Enable/disable boost", + "type": "bool", + "defaultValue": false, + "writable": true + }, + { + "id": "a5944856-6b0f-4b45-9d9f-fe0f3c2de8aa", + "name": "windowOpen", + "displayName": "Window open", + "displayNameEvent": "Window opened/closed", + "type": "bool", + "defaultValue": false + }, + { + "id": "92fa20b0-2b66-4d68-8819-6eeb43f1c0fb", + "name": "connected", + "displayName": "Connected", + "displayNameEvent": "Connected or disconnected", + "type": "bool", + "defaultValue": false, + "cached": false + }, + { + "id": "42e080f3-c00c-49d2-b046-7bd26331b8f0", + "name": "signalStrength", + "displayName": "Signal strength", + "displayNameEvent": "Signal strength changed", + "type": "uint", + "unit": "Percentage", + "minValue": 0, + "maxValue": 100, + "defaultValue": 0, + "cached": false + }, + { + "id": "f45dff98-41ac-43bb-a005-24294973611b", + "name": "batteryLevel", + "displayName": "Battery level", + "displayNameEvent": "Battery level changed", + "type": "int", + "minValue": 0, + "maxValue": 100, + "unit": "Percentage", + "defaultValue": 0 + }, + { + "id": "48c3a619-331e-44eb-b080-877fdcfd03f6", + "name": "batteryCritical", + "displayName": "Battery level critical", + "displayNameEvent": "Battery critical changed", + "type": "bool", + "defaultValue": false + }, + { + "id": "113625e0-e171-48e6-a9ca-6a13b75b9234", + "name": "updateStatus", + "displayName": "Update status", + "displayNameEvent": "Update status changed", + "type": "QString", + "possibleValues": ["idle", "available", "updating"], + "defaultValue": "idle" + }, + { + "id": "ad5cdb22-42ce-4592-ad72-61a854981f69", + "name": "currentVersion", + "displayName": "Current firmware version", + "displayNameEvent": "Current firmware version changed", + "type": "QString", + "defaultValue": "" + }, + { + "id": "f3e00825-cd05-45e6-bc99-457bf74255c5", + "name": "availableVersion", + "displayName": "Available firmware version", + "displayNameEvent": "Available firmware version changed", + "type": "QString", + "defaultValue": "" + } + ], + "actionTypes": [ + { + "id": "27e4c7f5-1828-443c-a18d-6d79382e001d", + "name": "performUpdate", + "displayName": "Start firmware update" + }, + { + "id": "4cef8e3a-853b-4313-8f70-d22122e7bb04", + "name": "reboot", + "displayName": "Reboot device" + } + ] + + }, { "id": "6de35a17-0f54-4397-894d-4321b64c53d1", "name": "shellySwitch", diff --git a/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts b/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts index 20c429bc..8ac7176b 100644 --- a/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts +++ b/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts @@ -4,38 +4,23 @@ IntegrationPluginShelly - + + Unable to find the thing in the network. Das Gerät konnte nicht im Netzwerk gefunden werden. - - Roller shutter mode can't be mixed with relay mode. Please configure both connected devices to control a shutter or relays. - Rollos-Modus kann nicht gleichzeitig mit Relais Modus betrieben werden. Bitte wähle für beide Kanäle entweder ein Relais oder ein Rollo aus. - - - - - For using a roller shutter, one channel must be set to up, the other to down. - Um den Rollos Modus zu verwenden muss ein Kanal für öffnen, der andere für schließen konfiguriert werden. - - - - Error creating MQTT channel. Please check MQTT server settings. - Fehler beim erstellen des MQTT Kanals. Bitte überprüfe die MQTT Servereinstellungen. - - - + Username and password not set correctly. Benutzername und Passwort sind nicht richtig. - + Error connecting to Shelly device. - Fehler beim Verbinden mit dem Shelly Gerät. + Fehler beim Verbinden mit dem Shelly Gerät. - + Unexpected data received from Shelly device. Unerwartete Daten vom Shelly Gerät empfangen. @@ -43,1112 +28,483 @@ shelly - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + Available firmware version - The name of the ParamType (ThingClass: shellyMotion, EventType: availableVersion, ID: {0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) ----------- -The name of the StateType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyEm, EventType: availableVersion, ID: {97ab36bb-355b-4559-838a-fe49a9cbd13e}) + The name of the StateType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ---------- The name of the StateType ({97ab36bb-355b-4559-838a-fe49a9cbd13e}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: availableVersion, ID: {27f1e394-642f-4a90-88bf-1ef9ba88b10b}) ----------- The name of the StateType ({27f1e394-642f-4a90-88bf-1ef9ba88b10b}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: availableVersion, ID: {770b6b3a-3815-4ba3-8a2d-3fb949c914de}) +The name of the StateType ({f3e00825-cd05-45e6-bc99-457bf74255c5}) of ThingClass shellyTrv ---------- The name of the StateType ({770b6b3a-3815-4ba3-8a2d-3fb949c914de}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: availableVersion, ID: {c3ff6d31-7301-412f-9aff-72ac36ba83c9}) ----------- The name of the StateType ({c3ff6d31-7301-412f-9aff-72ac36ba83c9}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: availableVersion, ID: {46f33cf8-82bf-4798-9100-69f54aabd9e0}) ----------- The name of the StateType ({46f33cf8-82bf-4798-9100-69f54aabd9e0}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: availableVersion, ID: {e6418140-db00-4f9b-a7fc-bf4a56a3a8a7}) ----------- The name of the StateType ({e6418140-db00-4f9b-a7fc-bf4a56a3a8a7}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: availableVersion, ID: {e0d58e73-8a36-4f36-901b-f6be6a84942d}) ----------- The name of the StateType ({e0d58e73-8a36-4f36-901b-f6be6a84942d}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: availableVersion, ID: {ccf9d5e9-e89d-4dda-ae99-2f3e9c4e7948}) ----------- The name of the StateType ({ccf9d5e9-e89d-4dda-ae99-2f3e9c4e7948}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: availableVersion, ID: {eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) ----------- The name of the StateType ({eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: availableVersion, ID: {6f081a46-df7d-43df-acb0-a7f226c0fd71}) ----------- The name of the StateType ({6f081a46-df7d-43df-acb0-a7f226c0fd71}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: availableVersion, ID: {5f357a69-6096-4f31-9b5b-b2d5478739da}) ----------- The name of the StateType ({5f357a69-6096-4f31-9b5b-b2d5478739da}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: availableVersion, ID: {bd77d5f6-4958-4a8a-98f5-25931333a5d3}) ----------- The name of the StateType ({bd77d5f6-4958-4a8a-98f5-25931333a5d3}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: availableVersion, ID: {6e794011-d184-4ab2-9c3a-3b2205880cbc}) ----------- The name of the StateType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass shelly1 Verfügbare Firmwareversion - - - - - - - - - - - - - - - Available firmware version changed - The name of the EventType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ----------- -The name of the EventType ({97ab36bb-355b-4559-838a-fe49a9cbd13e}) of ThingClass shellyEm ----------- -The name of the EventType ({27f1e394-642f-4a90-88bf-1ef9ba88b10b}) of ThingClass shellyEm3 ----------- -The name of the EventType ({770b6b3a-3815-4ba3-8a2d-3fb949c914de}) of ThingClass shellyHT ----------- -The name of the EventType ({c3ff6d31-7301-412f-9aff-72ac36ba83c9}) of ThingClass shellyI3 ----------- -The name of the EventType ({46f33cf8-82bf-4798-9100-69f54aabd9e0}) of ThingClass shellyButton1 ----------- -The name of the EventType ({e6418140-db00-4f9b-a7fc-bf4a56a3a8a7}) of ThingClass shellyDimmer ----------- -The name of the EventType ({e0d58e73-8a36-4f36-901b-f6be6a84942d}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({ccf9d5e9-e89d-4dda-ae99-2f3e9c4e7948}) of ThingClass shellyPlug ----------- -The name of the EventType ({eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) of ThingClass shelly25 ----------- -The name of the EventType ({6f081a46-df7d-43df-acb0-a7f226c0fd71}) of ThingClass shelly2 ----------- -The name of the EventType ({5f357a69-6096-4f31-9b5b-b2d5478739da}) of ThingClass shelly1l ----------- -The name of the EventType ({bd77d5f6-4958-4a8a-98f5-25931333a5d3}) of ThingClass shelly1pm ----------- -The name of the EventType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass shelly1 - Verfügbare Firmwareversion geändert - - - - - Battery critical changed - The name of the EventType ({56053726-92dc-4a80-b05e-a9a857c02bc1}) of ThingClass shellyHT ----------- -The name of the EventType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass shellyButton1 - Battierladung kritisch geändert - - - - Battery entered critical state - The name of the EventType ({1d03941e-9c41-446b-b698-f8dff335bf11}) of ThingClass shellyMotion - Batterieladung erreicht kritischen Zustand - - - - - - - - + + + + Battery level - The name of the ParamType (ThingClass: shellyMotion, EventType: batteryLevel, ID: {f6d89aa6-7dba-4bb0-89cf-36d85208933f}) + The name of the StateType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ---------- -The name of the StateType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyHT, EventType: batteryLevel, ID: {15914ad5-816b-471c-996b-00160100f2bc}) +The name of the StateType ({f45dff98-41ac-43bb-a005-24294973611b}) of ThingClass shellyTrv ---------- The name of the StateType ({15914ad5-816b-471c-996b-00160100f2bc}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: batteryLevel, ID: {338355e5-9506-48b1-be86-757d69b34755}) ----------- The name of the StateType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass shellyButton1 Batterieladung - - - - Battery level changed - The name of the EventType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ----------- -The name of the EventType ({15914ad5-816b-471c-996b-00160100f2bc}) of ThingClass shellyHT ----------- -The name of the EventType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass shellyButton1 - Batterieladung geändert - - - - - - - - + + + + Battery level critical - The name of the ParamType (ThingClass: shellyMotion, EventType: batteryCritical, ID: {1d03941e-9c41-446b-b698-f8dff335bf11}) + The name of the StateType ({1d03941e-9c41-446b-b698-f8dff335bf11}) of ThingClass shellyMotion ---------- -The name of the StateType ({1d03941e-9c41-446b-b698-f8dff335bf11}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyHT, EventType: batteryCritical, ID: {56053726-92dc-4a80-b05e-a9a857c02bc1}) +The name of the StateType ({48c3a619-331e-44eb-b080-877fdcfd03f6}) of ThingClass shellyTrv ---------- The name of the StateType ({56053726-92dc-4a80-b05e-a9a857c02bc1}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: batteryCritical, ID: {18edddee-1b30-48e4-b233-1e3b68bd6ff1}) ----------- The name of the StateType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass shellyButton1 Batterieladung kritisch - - - - - - + + + Boost + The name of the ParamType (ThingClass: shellyTrv, ActionType: boost, ID: {ef74da4d-70f4-49cd-9697-a8e2bf25dee1}) +---------- +The name of the StateType ({ef74da4d-70f4-49cd-9697-a8e2bf25dee1}) of ThingClass shellyTrv + Boost + + + + Boost duration (minutes) + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {3a1dbc59-5b61-4650-a0fa-e127d337169e}) + Boost-Dauer (Minuten) + + + + + + Brightness The name of the ParamType (ThingClass: shellyDimmer, ActionType: brightness, ID: {f41c93ac-6911-45fc-9221-7dd26bf65fd0}) ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: brightness, ID: {f41c93ac-6911-45fc-9221-7dd26bf65fd0}) ----------- The name of the StateType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ---------- The name of the ParamType (ThingClass: shellyRgbw2, ActionType: brightness, ID: {3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: brightness, ID: {3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) ----------- The name of the StateType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass shellyRgbw2 Helligkeit - - - Brightness changed - The name of the EventType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ----------- -The name of the EventType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass shellyRgbw2 - Helligkeit geändert - - - - + + Button name The name of the ParamType (ThingClass: shellyI3, EventType: longPressed, ID: {99683cf9-930e-4f10-94f2-73bb32092639}) ---------- The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {146313a1-cfb6-4732-a1be-86ec575bcbdb}) - + Tastenname - + Button type The name of the ParamType (ThingClass: shellySwitch, Type: settings, ID: {ce9f1650-5e12-40f4-97de-27af86afa40b}) Tastentyp - + Calibrate The name of the ActionType ({4e2d8a7b-821e-4ee8-9f9b-f774d631845f}) of ThingClass shellyRoller Kalibrieren - - - - - - - - - + + + + Channel The name of the ParamType (ThingClass: shellyRoller, Type: thing, ID: {281385a5-5084-4ded-80a4-66c0dc1096a8}) ---------- -The name of the ParamType (ThingClass: shellySocketPM, Type: thing, ID: {17c19689-8c88-454e-8b18-15436cad293d}) ----------- -The name of the ParamType (ThingClass: shellySocket, Type: thing, ID: {d48edbdf-8ed5-4721-a42a-fd2c340c1a6e}) ----------- -The name of the ParamType (ThingClass: shellyLightPM, Type: thing, ID: {9066e9e9-56e0-4e6b-8667-503b68613640}) ----------- -The name of the ParamType (ThingClass: shellyLight, Type: thing, ID: {9c8b88c0-2825-4235-9b68-2ba378eeb53f}) ----------- -The name of the ParamType (ThingClass: shellyGenericPM, Type: thing, ID: {5e7c6ed5-fe9c-4e27-ad1e-e96886f3c09b}) ----------- -The name of the ParamType (ThingClass: shellyGeneric, Type: thing, ID: {c08b1272-6eb2-4fed-80ad-06566a521b95}) ----------- The name of the ParamType (ThingClass: shellyEmChannel, Type: thing, ID: {e8865f9d-2601-4e02-9ff1-780332f1f18f}) ---------- +The name of the ParamType (ThingClass: shellyPowerMeterChannel, Type: thing, ID: {a6a14cfe-3560-4311-875c-5f04a83f48c5}) +---------- The name of the ParamType (ThingClass: shellySwitch, Type: thing, ID: {be6bdd43-cbf0-4d16-b789-ccad16e23788}) Kanal - - Channel 1 turned on or off - The name of the EventType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 - Kanal 1 an- oder ausgeschaltet - - - - Channel 2 turned on or off - The name of the EventType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 - Kanal 2 an- oder ausgeschaltet - - - + Close The name of the ActionType ({87eb0290-615e-4c98-9ec8-a21104fcf05d}) of ThingClass shellyRoller Schließen - - - + + Color The name of the ParamType (ThingClass: shellyRgbw2, ActionType: color, ID: {6ef7c686-350d-4069-9c41-9b90b3906748}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: color, ID: {6ef7c686-350d-4069-9c41-9b90b3906748}) ----------- The name of the StateType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass shellyRgbw2 Farbe - - Color changed - The name of the EventType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass shellyRgbw2 - Farbe geändert - - - - - + + Color temperature The name of the ParamType (ThingClass: shellyRgbw2, ActionType: colorTemperature, ID: {a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: colorTemperature, ID: {a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) ----------- The name of the StateType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 Farbtemperatur - - Color temperature changed - The name of the EventType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 - Farbtemperatur geändert - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + Connected - The name of the ParamType (ThingClass: shellyRoller, EventType: connected, ID: {d446719d-628e-477d-882c-a84210c85869}) ----------- -The name of the StateType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: connected, ID: {6e5dbb06-ef4b-42eb-bf6d-e3c83d78de67}) ----------- -The name of the StateType ({6e5dbb06-ef4b-42eb-bf6d-e3c83d78de67}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellySocket, EventType: connected, ID: {b71fa926-9fd2-4008-9fe5-83bbf821963c}) ----------- -The name of the StateType ({b71fa926-9fd2-4008-9fe5-83bbf821963c}) of ThingClass shellySocket ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: connected, ID: {df6f8a11-1295-4ceb-b277-dbe83b9d039c}) ----------- -The name of the StateType ({df6f8a11-1295-4ceb-b277-dbe83b9d039c}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyLight, EventType: connected, ID: {61b7d8ac-d229-4268-8143-6edb2eca978d}) ----------- -The name of the StateType ({61b7d8ac-d229-4268-8143-6edb2eca978d}) of ThingClass shellyLight ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: connected, ID: {5ec936f8-694d-43f4-b3a2-fdc77d38feab}) ----------- -The name of the StateType ({5ec936f8-694d-43f4-b3a2-fdc77d38feab}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyGeneric, EventType: connected, ID: {4a141674-faa6-4953-8272-5b4a4da84d31}) ----------- -The name of the StateType ({4a141674-faa6-4953-8272-5b4a4da84d31}) of ThingClass shellyGeneric ----------- -The name of the ParamType (ThingClass: shellyMotion, EventType: connected, ID: {9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) + The name of the StateType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ---------- The name of the StateType ({9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) of ThingClass shellyMotion ---------- -The name of the ParamType (ThingClass: shellyEmChannel, EventType: connected, ID: {d96d7505-f270-49ad-abb2-4f29ac11fb84}) ----------- The name of the StateType ({d96d7505-f270-49ad-abb2-4f29ac11fb84}) of ThingClass shellyEmChannel ---------- -The name of the ParamType (ThingClass: shellyEm, EventType: connected, ID: {75f1a571-b21c-43c2-b4a3-ab8e9d7ef08c}) +The name of the StateType ({1524dc63-7df8-47fc-a466-69ca896db361}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({75f1a571-b21c-43c2-b4a3-ab8e9d7ef08c}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: connected, ID: {08bd7743-af98-4328-bbca-64280afc5a87}) ----------- The name of the StateType ({08bd7743-af98-4328-bbca-64280afc5a87}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellySwitch, EventType: connected, ID: {0c233312-7b8f-4ca3-880d-523cab9b3ccb}) ----------- The name of the StateType ({0c233312-7b8f-4ca3-880d-523cab9b3ccb}) of ThingClass shellySwitch ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: connected, ID: {b35ace90-8afb-49f1-924d-899bf1c03c3a}) +The name of the StateType ({92fa20b0-2b66-4d68-8819-6eeb43f1c0fb}) of ThingClass shellyTrv ---------- The name of the StateType ({b35ace90-8afb-49f1-924d-899bf1c03c3a}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: connected, ID: {9b17b10d-07ee-4a3d-813f-ef37e79e7241}) ----------- The name of the StateType ({9b17b10d-07ee-4a3d-813f-ef37e79e7241}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: connected, ID: {d23e25a1-f723-4de1-806a-83fb073f01f4}) ----------- The name of the StateType ({d23e25a1-f723-4de1-806a-83fb073f01f4}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: connected, ID: {49ff0891-1798-459f-a97c-f1cc4e643a46}) ----------- The name of the StateType ({49ff0891-1798-459f-a97c-f1cc4e643a46}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: connected, ID: {98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) ----------- The name of the StateType ({98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: connected, ID: {584b3558-5fb5-40a9-81ad-dc71ba68fd45}) ----------- The name of the StateType ({584b3558-5fb5-40a9-81ad-dc71ba68fd45}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: connected, ID: {36a50e24-707e-4d5d-8eba-d2a73f626e2b}) ----------- The name of the StateType ({36a50e24-707e-4d5d-8eba-d2a73f626e2b}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: connected, ID: {966ddc70-aa75-4c86-a75e-c1a010698d93}) ----------- The name of the StateType ({966ddc70-aa75-4c86-a75e-c1a010698d93}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: connected, ID: {2a333f45-2bba-4643-b973-1bb47d56306a}) ----------- The name of the StateType ({2a333f45-2bba-4643-b973-1bb47d56306a}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: connected, ID: {df23a5ea-5f54-42ac-ab6b-aea8f71224f0}) ----------- The name of the StateType ({df23a5ea-5f54-42ac-ab6b-aea8f71224f0}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: connected, ID: {e5d41e05-2296-457e-97d8-98a5ac0de615}) ----------- The name of the StateType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass shelly1 Verbunden - - - - - - - - Connected changed - The name of the EventType ({9b17b10d-07ee-4a3d-813f-ef37e79e7241}) of ThingClass shellyI3 ----------- -The name of the EventType ({584b3558-5fb5-40a9-81ad-dc71ba68fd45}) of ThingClass shellyPlug ----------- -The name of the EventType ({36a50e24-707e-4d5d-8eba-d2a73f626e2b}) of ThingClass shelly25 ----------- -The name of the EventType ({966ddc70-aa75-4c86-a75e-c1a010698d93}) of ThingClass shelly2 ----------- -The name of the EventType ({2a333f45-2bba-4643-b973-1bb47d56306a}) of ThingClass shelly1l ----------- -The name of the EventType ({df23a5ea-5f54-42ac-ab6b-aea8f71224f0}) of ThingClass shelly1pm ----------- -The name of the EventType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass shelly1 - Verbindung geändert - - - - - Connected device 1 - The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {dc8a02fb-baa4-40bf-9e00-684b17794287}) ----------- -The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {84e60831-0a2c-466a-bdfe-36ae6bd114e2}) - Verbundenes Gerät 1 - - - - - Connected device 2 - The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {1e6925f8-1613-4fe4-8234-e4a4e973ef83}) ----------- -The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {0becaa77-b927-489a-ad5f-9b22513f8673}) - Verbundenes Gerät 2 - - - - - - - - - - - - - - - - Connected or disconnected - The name of the EventType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ----------- -The name of the EventType ({6e5dbb06-ef4b-42eb-bf6d-e3c83d78de67}) of ThingClass shellySocketPM ----------- -The name of the EventType ({b71fa926-9fd2-4008-9fe5-83bbf821963c}) of ThingClass shellySocket ----------- -The name of the EventType ({df6f8a11-1295-4ceb-b277-dbe83b9d039c}) of ThingClass shellyLightPM ----------- -The name of the EventType ({61b7d8ac-d229-4268-8143-6edb2eca978d}) of ThingClass shellyLight ----------- -The name of the EventType ({5ec936f8-694d-43f4-b3a2-fdc77d38feab}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({4a141674-faa6-4953-8272-5b4a4da84d31}) of ThingClass shellyGeneric ----------- -The name of the EventType ({9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) of ThingClass shellyMotion ----------- -The name of the EventType ({d96d7505-f270-49ad-abb2-4f29ac11fb84}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({75f1a571-b21c-43c2-b4a3-ab8e9d7ef08c}) of ThingClass shellyEm ----------- -The name of the EventType ({08bd7743-af98-4328-bbca-64280afc5a87}) of ThingClass shellyEm3 ----------- -The name of the EventType ({0c233312-7b8f-4ca3-880d-523cab9b3ccb}) of ThingClass shellySwitch ----------- -The name of the EventType ({b35ace90-8afb-49f1-924d-899bf1c03c3a}) of ThingClass shellyHT - Verbunden oder getrennt - - - - - - Connected/disconnected - The name of the EventType ({d23e25a1-f723-4de1-806a-83fb073f01f4}) of ThingClass shellyButton1 ----------- -The name of the EventType ({49ff0891-1798-459f-a97c-f1cc4e643a46}) of ThingClass shellyDimmer ----------- -The name of the EventType ({98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) of ThingClass shellyRgbw2 - - - - - Consumed energy changed - The name of the EventType ({962fec29-6be0-452e-87c5-5ff71435c40f}) of ThingClass shellyPlug - - - - - + + Count The name of the ParamType (ThingClass: shellyButton1, EventType: longPressed, ID: {f8b5f587-d266-4fd3-9f01-941d0dcedc1f}) ---------- The name of the ParamType (ThingClass: shellyButton1, EventType: pressed, ID: {a384450d-12b5-4269-9469-2e986423bde0}) - + Anzahl - - + Current - The name of the ParamType (ThingClass: shellyEmChannel, EventType: currentPhaseA, ID: {1d457f50-0951-4ba5-8d8e-b79ea5a75535}) ----------- -The name of the StateType ({1d457f50-0951-4ba5-8d8e-b79ea5a75535}) of ThingClass shellyEmChannel - + The name of the StateType ({1d457f50-0951-4ba5-8d8e-b79ea5a75535}) of ThingClass shellyEmChannel + Stromstärke - - + Current (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPhaseA, ID: {5fa79319-756b-4b2c-87b1-59ff996b8435}) ----------- -The name of the StateType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass shellyEm3 - + The name of the StateType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass shellyEm3 + Stromstärke (Phase A) - - Current (Phase A) changed - The name of the EventType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass shellyEm3 - - - - - + Current (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPhaseB, ID: {a4151601-fe77-418a-a2c1-6376e32da3bd}) ----------- -The name of the StateType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass shellyEm3 - + The name of the StateType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass shellyEm3 + Stromstärke (Phase B) - - Current (Phase B) changed - The name of the EventType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass shellyEm3 - - - - - + Current (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPhaseC, ID: {ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) ----------- -The name of the StateType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 - + The name of the StateType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 + Stromstärke (Phase C) - - Current (Phase C) changed - The name of the EventType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 - - - - - Current changed - The name of the EventType ({1d457f50-0951-4ba5-8d8e-b79ea5a75535}) of ThingClass shellyEmChannel - - - - - - - - - - - - - + + + + + + Current firmware version - The name of the ParamType (ThingClass: shellyMotion, EventType: currentVersion, ID: {e2d98172-5833-454b-9b4b-04693c6b9232}) ----------- -The name of the StateType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyEm, EventType: currentVersion, ID: {f5f03ab2-fec6-4502-8a47-100211878a8a}) + The name of the StateType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ---------- The name of the StateType ({f5f03ab2-fec6-4502-8a47-100211878a8a}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: currentVersion, ID: {f9ddb9f1-1251-484e-bdce-531d584d8f6a}) ----------- The name of the StateType ({f9ddb9f1-1251-484e-bdce-531d584d8f6a}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: currentVersion, ID: {5655b88c-f852-4efe-955f-cf5f88e8ba6b}) +The name of the StateType ({ad5cdb22-42ce-4592-ad72-61a854981f69}) of ThingClass shellyTrv ---------- The name of the StateType ({5655b88c-f852-4efe-955f-cf5f88e8ba6b}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: currentVersion, ID: {b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) ----------- The name of the StateType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass shellyButton1 - + Aktuelle Firmware-Version - - - - - - Current firmware version changed - The name of the EventType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ----------- -The name of the EventType ({f5f03ab2-fec6-4502-8a47-100211878a8a}) of ThingClass shellyEm ----------- -The name of the EventType ({f9ddb9f1-1251-484e-bdce-531d584d8f6a}) of ThingClass shellyEm3 ----------- -The name of the EventType ({5655b88c-f852-4efe-955f-cf5f88e8ba6b}) of ThingClass shellyHT ----------- -The name of the EventType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass shellyButton1 - - - - - - - + + + Current power - The name of the ParamType (ThingClass: shellyEmChannel, EventType: currentPower, ID: {a85041e8-a19e-4695-8404-3e3a06b1e92a}) + The name of the StateType ({a85041e8-a19e-4695-8404-3e3a06b1e92a}) of ThingClass shellyEmChannel ---------- -The name of the StateType ({a85041e8-a19e-4695-8404-3e3a06b1e92a}) of ThingClass shellyEmChannel ----------- -The name of the ParamType (ThingClass: shellyEm3, EventType: currentPower, ID: {3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) +The name of the StateType ({9d6a6965-3024-424d-b71b-cf1358a2ece1}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) of ThingClass shellyEm3 - + Energieverbrauch - - - Current power changed - The name of the EventType ({a85041e8-a19e-4695-8404-3e3a06b1e92a}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) of ThingClass shellyEm3 - - - - - - - - - - - - - - - - - - - + + + + + Current power consumption - The name of the ParamType (ThingClass: shellyRoller, EventType: currentPower, ID: {0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) ----------- -The name of the StateType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: currentPower, ID: {e95b97d4-b88f-4656-8819-3f681fbe8510}) ----------- -The name of the StateType ({e95b97d4-b88f-4656-8819-3f681fbe8510}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: currentPower, ID: {0de42461-1077-4b74-9212-5446914fd25f}) ----------- -The name of the StateType ({0de42461-1077-4b74-9212-5446914fd25f}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: currentPower, ID: {41338dbd-6d58-4093-a56c-0adaec5398d5}) ----------- -The name of the StateType ({41338dbd-6d58-4093-a56c-0adaec5398d5}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: currentPower, ID: {b3336ca6-1577-4230-8708-98875148606e}) + The name of the StateType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ---------- The name of the StateType ({b3336ca6-1577-4230-8708-98875148606e}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: currentPower, ID: {82ce0c4f-cb81-43c7-bc07-003f8a3cfbc8}) ----------- The name of the StateType ({82ce0c4f-cb81-43c7-bc07-003f8a3cfbc8}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: currentPower, ID: {194f4f1b-86a7-4c04-abf0-2459ae7e2821}) ----------- The name of the StateType ({194f4f1b-86a7-4c04-abf0-2459ae7e2821}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: currentPower, ID: {3ec03053-7cf5-44fb-ad92-041eed9edd9a}) ----------- The name of the StateType ({3ec03053-7cf5-44fb-ad92-041eed9edd9a}) of ThingClass shelly1pm - + Energieverbrauch - - - - - Current power consumption changed - The name of the EventType ({b3336ca6-1577-4230-8708-98875148606e}) of ThingClass shellyDimmer ----------- -The name of the EventType ({82ce0c4f-cb81-43c7-bc07-003f8a3cfbc8}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({194f4f1b-86a7-4c04-abf0-2459ae7e2821}) of ThingClass shelly1l ----------- -The name of the EventType ({3ec03053-7cf5-44fb-ad92-041eed9edd9a}) of ThingClass shelly1pm - - - - - - - - - - + Default state - The name of the ParamType (ThingClass: shellySocketPM, Type: settings, ID: {9880a51b-57da-4b65-a0ec-23eb0fdcb8ac}) ----------- -The name of the ParamType (ThingClass: shellySocket, Type: settings, ID: {9f365d87-ddb9-4764-9bfb-0e64020646b4}) ----------- -The name of the ParamType (ThingClass: shellyLightPM, Type: settings, ID: {01cc242a-268d-4dd9-96ce-5502dd1bd430}) ----------- -The name of the ParamType (ThingClass: shellyLight, Type: settings, ID: {4fe9ae31-3657-41bf-bd40-a219d58465d3}) ----------- -The name of the ParamType (ThingClass: shellyGenericPM, Type: settings, ID: {8c60a23c-5e5b-42ba-abae-aeeb3d379d79}) ----------- -The name of the ParamType (ThingClass: shellyGeneric, Type: settings, ID: {7d35aea3-1444-48c8-9732-a41bfc3b9d75}) ----------- -The name of the ParamType (ThingClass: shellyPlug, Type: settings, ID: {40f251db-919a-410f-939a-a11bbc4f7f95}) - + The name of the ParamType (ThingClass: shellyPlug, Type: settings, ID: {40f251db-919a-410f-939a-a11bbc4f7f95}) + Ausgangszustand - - + Firmware update status - The name of the ParamType (ThingClass: shellyDimmer, EventType: updateStatus, ID: {8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) ----------- -The name of the StateType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass shellyDimmer - + The name of the StateType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass shellyDimmer + Firmware-Update-Status - - Firmware update status changed - The name of the EventType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass shellyDimmer - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + Firmware version - The name of the ParamType (ThingClass: shellyI3, EventType: currentVersion, ID: {33e7d186-7c6b-4c4e-89c3-80362ef76615}) ----------- -The name of the StateType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ----------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: currentVersion, ID: {2fac7af0-1aa0-4e8d-b3fb-584b49647887}) + The name of the StateType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ---------- The name of the StateType ({2fac7af0-1aa0-4e8d-b3fb-584b49647887}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: currentVersion, ID: {8f2fd109-553a-48df-9b08-6a7fdcba46c1}) ----------- The name of the StateType ({8f2fd109-553a-48df-9b08-6a7fdcba46c1}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: currentVersion, ID: {5b286e92-ec05-4a70-8813-646b63995213}) ----------- The name of the StateType ({5b286e92-ec05-4a70-8813-646b63995213}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: currentVersion, ID: {69f6cb77-1775-4d94-8592-798fdc26a9fc}) ----------- The name of the StateType ({69f6cb77-1775-4d94-8592-798fdc26a9fc}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: currentVersion, ID: {b38b19da-4403-40a2-8aa3-81518d092505}) ----------- The name of the StateType ({b38b19da-4403-40a2-8aa3-81518d092505}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: currentVersion, ID: {2303ffb7-8de4-4993-b3ac-95e4c035b790}) ----------- The name of the StateType ({2303ffb7-8de4-4993-b3ac-95e4c035b790}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: currentVersion, ID: {681f3a7e-d981-4cb2-a7dc-b889a9393276}) ----------- The name of the StateType ({681f3a7e-d981-4cb2-a7dc-b889a9393276}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: currentVersion, ID: {e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) ----------- The name of the StateType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass shelly1 - + Firmware version - - - - - - - - - - Firmware version changed - The name of the EventType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ----------- -The name of the EventType ({2fac7af0-1aa0-4e8d-b3fb-584b49647887}) of ThingClass shellyDimmer ----------- -The name of the EventType ({8f2fd109-553a-48df-9b08-6a7fdcba46c1}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({5b286e92-ec05-4a70-8813-646b63995213}) of ThingClass shellyPlug ----------- -The name of the EventType ({69f6cb77-1775-4d94-8592-798fdc26a9fc}) of ThingClass shelly25 ----------- -The name of the EventType ({b38b19da-4403-40a2-8aa3-81518d092505}) of ThingClass shelly2 ----------- -The name of the EventType ({2303ffb7-8de4-4993-b3ac-95e4c035b790}) of ThingClass shelly1l ----------- -The name of the EventType ({681f3a7e-d981-4cb2-a7dc-b889a9393276}) of ThingClass shelly1pm ----------- -The name of the EventType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass shelly1 - - - - - + Humidity - The name of the ParamType (ThingClass: shellyHT, EventType: humidity, ID: {18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) ----------- -The name of the StateType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT - + The name of the StateType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT + Luftfeuchtigkeit - - Humidity changed - The name of the EventType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT - - - - - + Input 1 - The name of the ParamType (ThingClass: shellyI3, EventType: input1, ID: {61e98cc9-4449-4fb2-818e-692303244ce2}) ----------- -The name of the StateType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass shellyI3 - + The name of the StateType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass shellyI3 + Eingang 1 - - Input 1 changed - The name of the EventType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass shellyI3 - - - - - + Input 2 - The name of the ParamType (ThingClass: shellyI3, EventType: input2, ID: {04497ff2-a231-4d3d-adeb-66275a3b128b}) ----------- -The name of the StateType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass shellyI3 - + The name of the StateType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass shellyI3 + Eingang 2 - - Input 2 changed - The name of the EventType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass shellyI3 - - - - - + Input 3 - The name of the ParamType (ThingClass: shellyI3, EventType: input3, ID: {5895fc2d-19a4-40c2-8522-7c4462e55a3e}) ----------- -The name of the StateType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass shellyI3 - + The name of the StateType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass shellyI3 + Eingang 3 - - Input 3 changed - The name of the EventType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass shellyI3 - - - - + Invert button The name of the ParamType (ThingClass: shellySwitch, Type: settings, ID: {f31eb52b-9aaf-409d-8bba-badda7c1a249}) - + Taster invertieren - - + Light intensity - The name of the ParamType (ThingClass: shellyMotion, EventType: lightIntensity, ID: {a1e12487-ebab-4993-a075-78275aac7b0d}) ----------- -The name of the StateType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass shellyMotion - + The name of the StateType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass shellyMotion + Lichtintensität - - Light intensity changed - The name of the EventType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass shellyMotion - - - - + Long Pressed The name of the EventType ({bb966833-a7a6-4ad7-b5f5-057b38ebb036}) of ThingClass shellyI3 - + Lange gedrückt - + Longpress duration The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {b98423a8-c758-4dae-b979-e22446d06b22}) - + Dauert langer Tastendruck - + Longpressed The name of the EventType ({47cab6b6-eed3-4628-b3ad-2ceda26d6f84}) of ThingClass shellyButton1 - + Lange gedrückt - - + + Max time between multiple presses The name of the ParamType (ThingClass: shellyI3, Type: settings, ID: {52699a1b-3526-4f60-83ec-f35faa863597}) ---------- The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {b1f5a911-76ec-42e5-ac64-17f85d82b875}) - + Maximale Zeit zwischen Tastendruck - + Maximum longpress duration The name of the ParamType (ThingClass: shellyI3, Type: settings, ID: {6485685e-0097-48db-958b-43126c6fb5a6}) - + Maximale Zeit langer Tastendruck - + Minimum longpress duration The name of the ParamType (ThingClass: shellyI3, Type: settings, ID: {a04fda4b-f187-477c-b7a8-b56613bf9264}) - + Minimale Zeit langer Tastendruck - - + Moving - The name of the ParamType (ThingClass: shellyRoller, EventType: moving, ID: {2729d4e0-c38c-47b8-a0e8-26959090fe74}) ----------- -The name of the StateType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass shellyRoller - + The name of the StateType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass shellyRoller + Bewegt - - Moving changed - The name of the EventType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass shellyRoller - - - - - - - - - + + + + On The name of the ParamType (ThingClass: shellyDimmer, ActionType: power, ID: {e4a6ac87-31fb-4516-9cf3-f135621e902c}) ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: power, ID: {e4a6ac87-31fb-4516-9cf3-f135621e902c}) ----------- The name of the StateType ({e4a6ac87-31fb-4516-9cf3-f135621e902c}) of ThingClass shellyDimmer ---------- The name of the ParamType (ThingClass: shellyRgbw2, ActionType: power, ID: {14abcd30-9db2-4065-ae81-501a55fbb145}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: power, ID: {14abcd30-9db2-4065-ae81-501a55fbb145}) ----------- The name of the StateType ({14abcd30-9db2-4065-ae81-501a55fbb145}) of ThingClass shellyRgbw2 - + Ein - - + On/Off - The name of the ParamType (ThingClass: shellySwitch, EventType: power, ID: {20f74d88-0683-4d3a-9513-6b29b5112b7b}) ----------- -The name of the StateType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass shellySwitch - + The name of the StateType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass shellySwitch + Ein/Aus - - On/Off toggled - The name of the EventType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass shellySwitch - - - - + Open The name of the ActionType ({b96a8f85-c39e-499b-abbd-40b18788e907}) of ThingClass shellyRoller - + Offen - - - - - - - - - - - - - - + + + + + + + + + + + + + + + Password (optional) The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {b6a48fc4-5016-47d9-8454-c64686120ee1}) ---------- @@ -1156,6 +512,8 @@ The name of the ParamType (ThingClass: shellyEm, Type: thing, ID: {66c1cd5d-c1c4 ---------- The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {29aee8f6-ed40-41c5-83c9-32c8aa89c7ea}) ---------- +The name of the ParamType (ThingClass: shellyTrv, Type: thing, ID: {bf4fead2-7a1a-44e7-bd32-ea2064944098}) +---------- The name of the ParamType (ThingClass: shellyHT, Type: thing, ID: {a0e1670d-3df2-49c2-b080-577f2d10af68}) ---------- The name of the ParamType (ThingClass: shellyI3, Type: thing, ID: {ccc56409-1424-4bf7-8dac-84431c3e7a84}) @@ -1177,351 +535,159 @@ The name of the ParamType (ThingClass: shelly1l, Type: thing, ID: {e93b4eae-618c The name of the ParamType (ThingClass: shelly1pm, Type: thing, ID: {3a86e7bc-8bde-4b20-833b-7bee41dd9bc6}) ---------- The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {d29b8399-bfa6-4146-921d-a1d43ca4e184}) - + Passwort (Optional) - - + Person is present - The name of the ParamType (ThingClass: shellyMotion, EventType: isPresent, ID: {45c0cc07-0e13-449c-86a7-ab65d5cdf637}) ----------- -The name of the StateType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion - + The name of the StateType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion + Person ist anwesend - - - + + Position The name of the ParamType (ThingClass: shellyRoller, ActionType: percentage, ID: {86270b8b-bce4-4d8a-9bc9-d72af36b991c}) ---------- -The name of the ParamType (ThingClass: shellyRoller, EventType: percentage, ID: {86270b8b-bce4-4d8a-9bc9-d72af36b991c}) ----------- The name of the StateType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass shellyRoller - + Position - - Position changed - The name of the EventType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass shellyRoller - - - - - - - - - - - - - - - - - - - - - - Power - The name of the ParamType (ThingClass: shellySocketPM, ActionType: power, ID: {d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: power, ID: {d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) ----------- -The name of the StateType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellySocket, ActionType: power, ID: {51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) ----------- -The name of the ParamType (ThingClass: shellySocket, EventType: power, ID: {51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) ----------- -The name of the StateType ({51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) of ThingClass shellySocket ----------- -The name of the ParamType (ThingClass: shellyLightPM, ActionType: power, ID: {e77d1c75-e856-46bc-9f38-36e59ed7849d}) ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: power, ID: {e77d1c75-e856-46bc-9f38-36e59ed7849d}) ----------- -The name of the StateType ({e77d1c75-e856-46bc-9f38-36e59ed7849d}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyLight, ActionType: power, ID: {2ee5bfab-271e-4b95-9464-122a5208f1a5}) ----------- -The name of the ParamType (ThingClass: shellyLight, EventType: power, ID: {2ee5bfab-271e-4b95-9464-122a5208f1a5}) ----------- -The name of the StateType ({2ee5bfab-271e-4b95-9464-122a5208f1a5}) of ThingClass shellyLight ----------- -The name of the ParamType (ThingClass: shellyGenericPM, ActionType: power, ID: {bd9480af-eec2-42d7-ab17-15715ee2e8e0}) ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: power, ID: {bd9480af-eec2-42d7-ab17-15715ee2e8e0}) ----------- -The name of the StateType ({bd9480af-eec2-42d7-ab17-15715ee2e8e0}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyGeneric, ActionType: power, ID: {72d7dbba-757c-4b03-a092-1d3f374fa961}) ----------- -The name of the ParamType (ThingClass: shellyGeneric, EventType: power, ID: {72d7dbba-757c-4b03-a092-1d3f374fa961}) ----------- -The name of the StateType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass shellyGeneric - - - - - - + + + + Power channel 1 The name of the ParamType (ThingClass: shelly25, ActionType: channel1, ID: {118d572c-cc12-4037-82d8-7d8f6fb4a364}) ---------- -The name of the ParamType (ThingClass: shelly25, EventType: channel1, ID: {118d572c-cc12-4037-82d8-7d8f6fb4a364}) +The name of the StateType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 ---------- -The name of the StateType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 - +The name of the ParamType (ThingClass: shelly2, ActionType: channel1, ID: {e3179799-96ca-47a4-8771-888f523247ac}) +---------- +The name of the StateType ({e3179799-96ca-47a4-8771-888f523247ac}) of ThingClass shelly2 + Zustand Kanal 1 - - - + + + + Power channel 2 The name of the ParamType (ThingClass: shelly25, ActionType: channel2, ID: {7952aec0-cd27-4ef9-87a6-c499564bc1d4}) ---------- -The name of the ParamType (ThingClass: shelly25, EventType: channel2, ID: {7952aec0-cd27-4ef9-87a6-c499564bc1d4}) +The name of the StateType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 ---------- -The name of the StateType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 - +The name of the ParamType (ThingClass: shelly2, ActionType: channel2, ID: {0e50c443-786a-4067-b1df-2b183434a546}) +---------- +The name of the StateType ({0e50c443-786a-4067-b1df-2b183434a546}) of ThingClass shelly2 + Zustand Kanal 2 - - + Power consumption - The name of the ParamType (ThingClass: shellyPlug, EventType: currentPower, ID: {202ea409-650e-48b2-9aae-d4ebe9d505fd}) ----------- -The name of the StateType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass shellyPlug - + The name of the StateType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass shellyPlug + Energieverbrauch - - - - - - Power consumption changed - The name of the EventType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ----------- -The name of the EventType ({e95b97d4-b88f-4656-8819-3f681fbe8510}) of ThingClass shellySocketPM ----------- -The name of the EventType ({0de42461-1077-4b74-9212-5446914fd25f}) of ThingClass shellyLightPM ----------- -The name of the EventType ({41338dbd-6d58-4093-a56c-0adaec5398d5}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass shellyPlug - - - - - - Power factor - The name of the ParamType (ThingClass: shellyEmChannel, EventType: powerFactorPhaseA, ID: {fd5898ce-c8c9-422d-a32a-996d4004ca15}) ----------- -The name of the StateType ({fd5898ce-c8c9-422d-a32a-996d4004ca15}) of ThingClass shellyEmChannel - - - - - + Power factor (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: powerFactorPhaseA, ID: {50be490b-ba5d-4b1f-806c-9e15b915c1eb}) ----------- -The name of the StateType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass shellyEm3 - + The name of the StateType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass shellyEm3 + Power Faktor (Phase A) - - Power factor (Phase A) changed - The name of the EventType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass shellyEm3 - - - - - + Power factor (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: powerFactorPhaseB, ID: {f56504bb-0c6c-4425-831c-771b23aadf19}) ----------- -The name of the StateType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass shellyEm3 - + The name of the StateType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass shellyEm3 + Power Faktor (Phase B) - - Power factor (Phase B) changed - The name of the EventType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass shellyEm3 - - - - - + Power factor (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: powerFactorPhaseC, ID: {2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) ----------- -The name of the StateType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 - + The name of the StateType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 + Power Faktor (Phase C) - - Power factor (Phase C) changed - The name of the EventType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 - - - - - Power factor changed - The name of the EventType ({fd5898ce-c8c9-422d-a32a-996d4004ca15}) of ThingClass shellyEmChannel - - - - - + Power usage (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPowerPhaseA, ID: {432ba180-936d-4700-907e-766264bfdd35}) ----------- -The name of the StateType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 - + The name of the StateType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 + Energieverbrauch (Phase A) - - Power usage (Phase A) changed - The name of the EventType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 - - - - - + Power usage (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPowerPhaseB, ID: {02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) ----------- -The name of the StateType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 - + The name of the StateType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 + Energieverbrauch (Phase B) - - Power usage (Phase B) changed - The name of the EventType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 - - - - - + Power usage (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPowerPhaseC, ID: {82277a4e-49cc-45f4-8b29-470ce99333b6}) ----------- -The name of the StateType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 - + The name of the StateType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 + Energieverbrauch (Phase C) - - Power usage (Phase C) changed - The name of the EventType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + Powered The name of the ParamType (ThingClass: shellyEm, ActionType: power, ID: {9a2c6304-91d6-45fc-8ef7-75355457eca5}) ---------- -The name of the ParamType (ThingClass: shellyEm, EventType: power, ID: {9a2c6304-91d6-45fc-8ef7-75355457eca5}) ----------- The name of the StateType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm ---------- The name of the ParamType (ThingClass: shellyEm3, ActionType: power, ID: {639dda4c-e354-43ca-a785-fbe6806986e2}) ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: power, ID: {639dda4c-e354-43ca-a785-fbe6806986e2}) ----------- The name of the StateType ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 ---------- The name of the ParamType (ThingClass: shellyPlug, ActionType: power, ID: {d813b35f-e11e-4783-b3b3-dbecb956ffb5}) ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: power, ID: {d813b35f-e11e-4783-b3b3-dbecb956ffb5}) ----------- The name of the StateType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClass shellyPlug ---------- The name of the ParamType (ThingClass: shelly1l, ActionType: power, ID: {94276bb9-ef68-47ab-8e74-34ebe54b411f}) ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: power, ID: {94276bb9-ef68-47ab-8e74-34ebe54b411f}) ----------- The name of the StateType ({94276bb9-ef68-47ab-8e74-34ebe54b411f}) of ThingClass shelly1l ---------- The name of the ParamType (ThingClass: shelly1pm, ActionType: power, ID: {ff44d332-52c3-4142-83e3-01d56c2eb42e}) ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: power, ID: {ff44d332-52c3-4142-83e3-01d56c2eb42e}) ----------- The name of the StateType ({ff44d332-52c3-4142-83e3-01d56c2eb42e}) of ThingClass shelly1pm ---------- The name of the ParamType (ThingClass: shelly1, ActionType: power, ID: {5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) ---------- -The name of the ParamType (ThingClass: shelly1, EventType: power, ID: {5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) ----------- The name of the StateType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass shelly1 - + Eingeschaltet - - Presence detected - The name of the EventType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion - - - - + Press count The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {0ed31339-7457-443c-b6e3-3b8ce3fc2bd8}) - + Tastendruckzähler - - + + Pressed The name of the EventType ({41498655-1943-4b46-ac36-adea7bafab87}) of ThingClass shellySwitch ---------- The name of the EventType ({25955cb9-dc0e-48dc-91b1-ba27e30a3a3f}) of ThingClass shellyButton1 - + Gedrückt - - - Reactive power - The name of the ParamType (ThingClass: shellyEmChannel, EventType: reactivePowerPhaseA, ID: {abdb5b38-05d3-4c12-aed2-f7c560d6b4e8}) ----------- -The name of the StateType ({abdb5b38-05d3-4c12-aed2-f7c560d6b4e8}) of ThingClass shellyEmChannel - - - - - Reactive power changed - The name of the EventType ({abdb5b38-05d3-4c12-aed2-f7c560d6b4e8}) of ThingClass shellyEmChannel - - - - - - - - - - - - + + + + + + + + + Reboot The name of the ActionType ({162e7791-6890-4075-8e57-a4c15b9359bb}) of ThingClass shellyI3 ---------- @@ -1540,53 +706,53 @@ The name of the ActionType ({5a05c09a-c6a0-4141-aeeb-86afdb49ffaf}) of ThingClas The name of the ActionType ({3133cf3d-729d-4f36-9a6d-1eeecb07edde}) of ThingClass shelly1pm ---------- The name of the ActionType ({b4067d54-36c5-4d30-bbc3-c8c712d6fd32}) of ThingClass shelly1 - + Neustart - + Remain awake The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {45d4628d-7d8c-43b6-ac86-6232caa5816f}) - + Bleibe aktiv - - + + Reset data The name of the ActionType ({09f6d675-4c22-4a9f-b9f2-3349ab947529}) of ThingClass shellyEm ---------- The name of the ActionType ({87772e43-1bf7-496b-b8be-46db39f71700}) of ThingClass shellyEm3 - + Daten zurücksetzen - - + + Set brightness The name of the ActionType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ---------- The name of the ActionType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass shellyRgbw2 - + Helligkeit setzen - + Set color The name of the ActionType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass shellyRgbw2 - + Farbe setzen - + Set color temperature The name of the ActionType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 - + Farbtemperatur setzen - + Set position The name of the ActionType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass shellyRoller - + Position setzen - - + + Shelly The name of the vendor ({d8e45fc2-90af-492e-8305-50baa1ec4c18}) ---------- @@ -1594,96 +760,165 @@ The name of the plugin shelly ({6162773b-0435-408c-a4f8-7860d38031a9}) - - Shelly 1 - The name of the ThingClass ({f810b66a-7177-4397-9771-4229abaabbb6}) - - - - + Shelly 1L The name of the ThingClass ({20754114-1591-48b5-af2f-8c9966adb7c4}) - - Shelly 1PM + + Child lock + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {38a98b85-9c6e-4dc8-8d73-5248532d2ed8}) + + + + + Display brightness + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {e0f7aae7-d576-4897-9626-2cc7e452b30a}) + + + + + Display flipped + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {83cfbdb7-a807-4a81-9eb0-5e0d62efdbaf}) + + + + + Enable/disable boost + The name of the ActionType ({ef74da4d-70f4-49cd-9697-a8e2bf25dee1}) of ThingClass shellyTrv + + + + + Heating + The name of the StateType ({1935b7fa-72a5-4aee-877e-d656cd79d688}) of ThingClass shellyTrv + + + + + Reboot device + The name of the ActionType ({4cef8e3a-853b-4313-8f70-d22122e7bb04}) of ThingClass shellyTrv + + + + + + Roller shutter mode + The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {8265295d-042c-4d07-bcae-d83f5da7b1a4}) +---------- +The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {be637e1f-7b87-4980-9cc2-fc787909ce59}) + + + + + Set target temperature + The name of the ActionType ({9800babf-a6cc-4eda-b42e-8f5481b61aea}) of ThingClass shellyTrv + + + + + Set valve position + The name of the ActionType ({e442ca7a-ee17-482b-aae4-579915029abf}) of ThingClass shellyTrv + + + + + Set white channel + The name of the ActionType ({8006331c-53ca-4386-8d5c-da62c175af01}) of ThingClass shellyRgbw2 + + + + + Shelly 1/Plus 1 + The name of the ThingClass ({f810b66a-7177-4397-9771-4229abaabbb6}) + + + + + Shelly 1PM/Plus 1PM The name of the ThingClass ({30e74e9f-57f4-4bbc-b0df-f2c4f28b2f06}) - + Shelly 2 The name of the ThingClass ({f277d3a3-62e0-49c1-90b2-4108578e80bf}) - + Shelly 2.5 The name of the ThingClass ({465efb0d-da68-4177-a040-940c7f451e29}) - + Shelly 3EM The name of the ThingClass ({ba293550-d2af-4463-b973-e1812ab67b96}) - + Shelly Dimmer (2) / Vintage The name of the ThingClass ({3a1d6fc1-c623-4b45-9c81-1573fcc15f99}) - + Shelly EM The name of the ThingClass ({bcc7326d-555a-4763-80ce-7354e67cc700}) - + Shelly EM Channel The name of the ThingClass ({67ccc046-c8b5-4584-8f7f-6fe0a0c6a860}) - + Shelly H&T The name of the ThingClass ({cc75be5c-8e34-4f72-a55d-c96e4c85d4be}) - + Shelly I3 The name of the ThingClass ({a4557bcc-bdae-4178-b774-5881a8ae490a}) - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Shelly ID The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {b92fe8ba-8bfb-4d9a-9fb9-8d55ace8cfb4}) ---------- The name of the ParamType (ThingClass: shellyEmChannel, Type: thing, ID: {b9b85416-0d48-4e71-9471-03385f8fc619}) ---------- +The name of the ParamType (ThingClass: shellyPowerMeterChannel, Type: thing, ID: {a52ae311-7a68-47df-a70e-4d05840798f1}) +---------- The name of the ParamType (ThingClass: shellyEm, Type: thing, ID: {e44d6880-4e54-44b0-85f5-4e035179402e}) ---------- The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {a80894d2-dfba-4699-892d-081702b0f1f5}) ---------- +The name of the ParamType (ThingClass: shellyTrv, Type: thing, ID: {20e21853-cfc1-4f78-9ba3-12682f81e021}) +---------- The name of the ParamType (ThingClass: shellyHT, Type: thing, ID: {b6882bd5-7b1f-447b-9aa7-34aeeb538697}) ---------- The name of the ParamType (ThingClass: shellyI3, Type: thing, ID: {12431172-432b-496e-a6b7-7465753a0bd9}) @@ -1708,293 +943,141 @@ The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {1d301dc0-5e48- - + Shelly Motion The name of the ThingClass ({a82737bb-f2d6-442e-a468-5acc0a2e4cd7}) - + Shelly Plug/PlugS The name of the ThingClass ({22229a6d-2af8-44e0-bea9-310a0f2769ef}) - + + Shelly Power meter Channel + The name of the ThingClass ({e2d2f11b-922f-4ff0-81e1-6fbf4c965521}) + + + + Shelly RGBW2 The name of the ThingClass ({17f24cec-e6ed-4abd-9d42-60999f391dba}) - + + Shelly TRV + The name of the ThingClass ({52932a47-38cd-4dce-b338-88122ce4ab8a}) + + + + Shelly button 1 The name of the ThingClass ({3eba6b29-f634-4ade-80a3-2159803373cc}) - + Shelly connected Roller Shutter The name of the ThingClass ({d681a4cb-481a-4469-a49a-e6bbb11eb9c9}) - - - Shelly connected device - The name of the ThingClass ({3bd614e0-72c4-4fbe-8c70-ce6c48d04bce}) + + + White channel + The name of the ParamType (ThingClass: shellyRgbw2, ActionType: whiteChannel, ID: {8006331c-53ca-4386-8d5c-da62c175af01}) ---------- -The name of the ThingClass ({512c3c7d-d6a6-4d2a-bccd-83147e5f9a25}) +The name of the StateType ({8006331c-53ca-4386-8d5c-da62c175af01}) of ThingClass shellyRgbw2 - - - Shelly connected light - The name of the ThingClass ({5ab05c19-71aa-4a85-a02f-a108f039a69a}) ----------- -The name of the ThingClass ({62a2d6b8-d70d-45fc-ba8c-1c680282a399}) + + Window open + The name of the StateType ({a5944856-6b0f-4b45-9d9f-fe0f3c2de8aa}) of ThingClass shellyTrv - - - Shelly connected power socket - The name of the ThingClass ({ae6e55fe-1a0b-43bc-bdfb-605661b96905}) ----------- -The name of the ThingClass ({3e13206c-a6cd-49a0-b653-2ccb5bb4bbc1}) - - - - + Shelly switch The name of the ThingClass ({6de35a17-0f54-4397-894d-4321b64c53d1}) - + Short Pressed The name of the EventType ({79648810-b2f4-4aa5-902f-2875242e7bf8}) of ThingClass shellyI3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + Signal strength - The name of the ParamType (ThingClass: shellyRoller, EventType: signalStrength, ID: {f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) ----------- -The name of the StateType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: signalStrength, ID: {e81ee293-9dff-46d0-92dc-5f5627e05962}) ----------- -The name of the StateType ({e81ee293-9dff-46d0-92dc-5f5627e05962}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellySocket, EventType: signalStrength, ID: {3459cd8a-8e27-48b1-9b14-43c6239ed3a2}) ----------- -The name of the StateType ({3459cd8a-8e27-48b1-9b14-43c6239ed3a2}) of ThingClass shellySocket ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: signalStrength, ID: {066de9e4-41f7-4628-a83c-102a2719473a}) ----------- -The name of the StateType ({066de9e4-41f7-4628-a83c-102a2719473a}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyLight, EventType: signalStrength, ID: {739a511c-b36d-40c9-b726-acde87f63d9f}) ----------- -The name of the StateType ({739a511c-b36d-40c9-b726-acde87f63d9f}) of ThingClass shellyLight ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: signalStrength, ID: {46cd6c28-b59a-4e20-b706-f202c0848b93}) ----------- -The name of the StateType ({46cd6c28-b59a-4e20-b706-f202c0848b93}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyGeneric, EventType: signalStrength, ID: {e48d19f1-e04b-4c5d-b515-15bb22060607}) ----------- -The name of the StateType ({e48d19f1-e04b-4c5d-b515-15bb22060607}) of ThingClass shellyGeneric ----------- -The name of the ParamType (ThingClass: shellyMotion, EventType: signalStrength, ID: {ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) + The name of the StateType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ---------- The name of the StateType ({ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) of ThingClass shellyMotion ---------- -The name of the ParamType (ThingClass: shellyEmChannel, EventType: signalStrength, ID: {d1928e72-73e6-4009-846e-149f80ad5899}) ----------- The name of the StateType ({d1928e72-73e6-4009-846e-149f80ad5899}) of ThingClass shellyEmChannel ---------- -The name of the ParamType (ThingClass: shellyEm, EventType: signalStrength, ID: {87664175-4b84-4cfe-9bee-5d1bcf2566f8}) +The name of the StateType ({c3d6a520-dad3-463e-b321-91fa1dff6e07}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({87664175-4b84-4cfe-9bee-5d1bcf2566f8}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: signalStrength, ID: {0f147c29-aefd-4926-a979-35dfeaec12c0}) ----------- The name of the StateType ({0f147c29-aefd-4926-a979-35dfeaec12c0}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellySwitch, EventType: signalStrength, ID: {5088cd2d-8f71-4cfb-a120-4a2d4a84355d}) ----------- The name of the StateType ({5088cd2d-8f71-4cfb-a120-4a2d4a84355d}) of ThingClass shellySwitch ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: signalStrength, ID: {f6a09411-4efa-49e0-9cac-1c8e550e9cb6}) +The name of the StateType ({42e080f3-c00c-49d2-b046-7bd26331b8f0}) of ThingClass shellyTrv ---------- The name of the StateType ({f6a09411-4efa-49e0-9cac-1c8e550e9cb6}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: signalStrength, ID: {54fc5565-5d40-4847-b59e-95bfd8845381}) ----------- The name of the StateType ({54fc5565-5d40-4847-b59e-95bfd8845381}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: signalStrength, ID: {fff3aa51-ec42-40c7-b603-cbd2d58d781e}) ----------- The name of the StateType ({fff3aa51-ec42-40c7-b603-cbd2d58d781e}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: signalStrength, ID: {a6855b46-7da8-4160-b698-7707600581b5}) ----------- The name of the StateType ({a6855b46-7da8-4160-b698-7707600581b5}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: signalStrength, ID: {194ecf76-c45f-4c36-8695-08a26ce065f3}) ----------- The name of the StateType ({194ecf76-c45f-4c36-8695-08a26ce065f3}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: signalStrength, ID: {0b0a73a5-d732-47eb-a075-8e22810eea55}) ----------- The name of the StateType ({0b0a73a5-d732-47eb-a075-8e22810eea55}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: signalStrength, ID: {35503b8a-1919-4df5-91cf-b7e381af654a}) ----------- The name of the StateType ({35503b8a-1919-4df5-91cf-b7e381af654a}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: signalStrength, ID: {ed8d3275-4d47-406b-9adf-0355a9bff31e}) ----------- The name of the StateType ({ed8d3275-4d47-406b-9adf-0355a9bff31e}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: signalStrength, ID: {cce7906d-fdef-4804-b118-b5abefa6c6ed}) ----------- The name of the StateType ({cce7906d-fdef-4804-b118-b5abefa6c6ed}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: signalStrength, ID: {58531cb9-933e-457e-af07-7c6c22c28e51}) ----------- The name of the StateType ({58531cb9-933e-457e-af07-7c6c22c28e51}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: signalStrength, ID: {74c631ed-fc3d-49e8-9dec-99cafa70c559}) ----------- The name of the StateType ({74c631ed-fc3d-49e8-9dec-99cafa70c559}) of ThingClass shelly1 - - - - - - - - - - - - - - - - - - - - - - - - Signal strength changed - The name of the EventType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ----------- -The name of the EventType ({e81ee293-9dff-46d0-92dc-5f5627e05962}) of ThingClass shellySocketPM ----------- -The name of the EventType ({3459cd8a-8e27-48b1-9b14-43c6239ed3a2}) of ThingClass shellySocket ----------- -The name of the EventType ({066de9e4-41f7-4628-a83c-102a2719473a}) of ThingClass shellyLightPM ----------- -The name of the EventType ({739a511c-b36d-40c9-b726-acde87f63d9f}) of ThingClass shellyLight ----------- -The name of the EventType ({46cd6c28-b59a-4e20-b706-f202c0848b93}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({e48d19f1-e04b-4c5d-b515-15bb22060607}) of ThingClass shellyGeneric ----------- -The name of the EventType ({ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) of ThingClass shellyMotion ----------- -The name of the EventType ({d1928e72-73e6-4009-846e-149f80ad5899}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({87664175-4b84-4cfe-9bee-5d1bcf2566f8}) of ThingClass shellyEm ----------- -The name of the EventType ({0f147c29-aefd-4926-a979-35dfeaec12c0}) of ThingClass shellyEm3 ----------- -The name of the EventType ({5088cd2d-8f71-4cfb-a120-4a2d4a84355d}) of ThingClass shellySwitch ----------- -The name of the EventType ({f6a09411-4efa-49e0-9cac-1c8e550e9cb6}) of ThingClass shellyHT ----------- -The name of the EventType ({54fc5565-5d40-4847-b59e-95bfd8845381}) of ThingClass shellyI3 ----------- -The name of the EventType ({fff3aa51-ec42-40c7-b603-cbd2d58d781e}) of ThingClass shellyButton1 ----------- -The name of the EventType ({a6855b46-7da8-4160-b698-7707600581b5}) of ThingClass shellyDimmer ----------- -The name of the EventType ({194ecf76-c45f-4c36-8695-08a26ce065f3}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({0b0a73a5-d732-47eb-a075-8e22810eea55}) of ThingClass shellyPlug ----------- -The name of the EventType ({35503b8a-1919-4df5-91cf-b7e381af654a}) of ThingClass shelly25 ----------- -The name of the EventType ({ed8d3275-4d47-406b-9adf-0355a9bff31e}) of ThingClass shelly2 ----------- -The name of the EventType ({cce7906d-fdef-4804-b118-b5abefa6c6ed}) of ThingClass shelly1l ----------- -The name of the EventType ({58531cb9-933e-457e-af07-7c6c22c28e51}) of ThingClass shelly1pm ----------- -The name of the EventType ({74c631ed-fc3d-49e8-9dec-99cafa70c559}) of ThingClass shelly1 - - - - - - - - + + + + + + Start firmware update The name of the ActionType ({17327674-f160-44e1-8a3d-fc2b6e1ee319}) of ThingClass shellyMotion ---------- @@ -2002,274 +1085,135 @@ The name of the ActionType ({6a30f435-2b35-4df5-8a20-ef3dbec817c9}) of ThingClas ---------- The name of the ActionType ({f230d689-53f8-4542-9b20-9993b1c2eb27}) of ThingClass shellyEm3 ---------- +The name of the ActionType ({27e4c7f5-1828-443c-a18d-6d79382e001d}) of ThingClass shellyTrv +---------- The name of the ActionType ({e32aaff9-b2f8-437e-b7b4-5b519d9e5e21}) of ThingClass shellyHT ---------- The name of the ActionType ({87b24064-5db7-4590-a9d8-f6d8fd02ed6e}) of ThingClass shellyButton1 - + Status LED enabled The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {420298a7-bcf8-4970-951e-f6ee5efa1013}) - - + + + Target temperature + The name of the ParamType (ThingClass: shellyTrv, ActionType: targetTemperature, ID: {9800babf-a6cc-4eda-b42e-8f5481b61aea}) +---------- +The name of the StateType ({9800babf-a6cc-4eda-b42e-8f5481b61aea}) of ThingClass shellyTrv + + + + + Temperature - The name of the ParamType (ThingClass: shellyHT, EventType: temperature, ID: {507e7ca7-e1ab-4e7c-8097-4aedf924f797}) + The name of the StateType ({d9a26a08-5735-403a-ab02-7638bd0a471f}) of ThingClass shellyTrv ---------- The name of the StateType ({507e7ca7-e1ab-4e7c-8097-4aedf924f797}) of ThingClass shellyHT - - Temperature changed - The name of the EventType ({507e7ca7-e1ab-4e7c-8097-4aedf924f797}) of ThingClass shellyHT - - - - - - - + + + Total consumed energy - The name of the ParamType (ThingClass: shellyEmChannel, EventType: totalEnergyConsumed, ID: {4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) + The name of the StateType ({4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) of ThingClass shellyEmChannel ---------- -The name of the StateType ({4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) of ThingClass shellyEmChannel ----------- -The name of the ParamType (ThingClass: shellyEm3, EventType: totalEnergyConsumed, ID: {67050a5a-cc78-4d11-a7d9-a9db528029ff}) +The name of the StateType ({670b966c-f882-4846-86ce-54db7da68917}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({67050a5a-cc78-4d11-a7d9-a9db528029ff}) of ThingClass shellyEm3 - - + Total consumed energy (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyConsumedPhaseA, ID: {ba25ef68-bb52-4e96-a8fb-137aae966104}) ----------- -The name of the StateType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass shellyEm3 + The name of the StateType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass shellyEm3 - - Total consumed energy (Phase A) changed - The name of the EventType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass shellyEm3 - - - - - + Total consumed energy (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyConsumedPhaseB, ID: {6636e6a0-e3ca-4654-9506-4302c4e8eed7}) ----------- -The name of the StateType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass shellyEm3 + The name of the StateType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass shellyEm3 - - Total consumed energy (Phase B) changed - The name of the EventType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass shellyEm3 - - - - - + Total consumed energy (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyConsumedPhaseC, ID: {452c2159-aa2f-4217-80e5-4b492b69671e}) ----------- -The name of the StateType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass shellyEm3 + The name of the StateType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass shellyEm3 - - Total consumed energy (Phase C) changed - The name of the EventType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass shellyEm3 - - - - - - - - Total consumed energy changed - The name of the EventType ({4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({67050a5a-cc78-4d11-a7d9-a9db528029ff}) of ThingClass shellyEm3 ----------- -The name of the EventType ({0f879e7b-2124-4d98-9828-e5bbd1b344ce}) of ThingClass shelly1l ----------- -The name of the EventType ({23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) of ThingClass shelly1pm - - - - - - - - Total energy changed - The name of the EventType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ----------- -The name of the EventType ({89a65444-63d4-4add-a479-a48e95dd0458}) of ThingClass shellySocketPM ----------- -The name of the EventType ({39e3d2c6-efb8-4c40-8ae9-8684d87e4087}) of ThingClass shellyLightPM ----------- -The name of the EventType ({54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) of ThingClass shellyGenericPM - - - - - - - - - - - - - - - - - + + + + Total energy consumed - The name of the ParamType (ThingClass: shellyRoller, EventType: totalEnergyConsumed, ID: {a7d88654-7503-474d-9a7c-02150d61a6dc}) ----------- -The name of the StateType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: totalEnergyConsumed, ID: {89a65444-63d4-4add-a479-a48e95dd0458}) ----------- -The name of the StateType ({89a65444-63d4-4add-a479-a48e95dd0458}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: totalEnergyConsumed, ID: {39e3d2c6-efb8-4c40-8ae9-8684d87e4087}) ----------- -The name of the StateType ({39e3d2c6-efb8-4c40-8ae9-8684d87e4087}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: totalEnergyConsumed, ID: {54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) ----------- -The name of the StateType ({54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyPlug, EventType: totalEnergyConsumed, ID: {962fec29-6be0-452e-87c5-5ff71435c40f}) + The name of the StateType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ---------- The name of the StateType ({962fec29-6be0-452e-87c5-5ff71435c40f}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: totalEnergyConsumed, ID: {0f879e7b-2124-4d98-9828-e5bbd1b344ce}) ----------- The name of the StateType ({0f879e7b-2124-4d98-9828-e5bbd1b344ce}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: totalEnergyConsumed, ID: {23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) ----------- The name of the StateType ({23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) of ThingClass shelly1pm - - - - + + Total returned energy - The name of the ParamType (ThingClass: shellyEmChannel, EventType: totalEnergyProduced, ID: {7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) ----------- -The name of the StateType ({7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) of ThingClass shellyEmChannel ----------- -The name of the ParamType (ThingClass: shellyEm3, EventType: totalEnergyProduced, ID: {088cb7df-9187-4206-ae5b-18a00e4f1969}) + The name of the StateType ({7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) of ThingClass shellyEmChannel ---------- The name of the StateType ({088cb7df-9187-4206-ae5b-18a00e4f1969}) of ThingClass shellyEm3 - - + Total returned energy (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyProducedPhaseA, ID: {34562cd3-b178-4f68-903d-a01e20d0ad76}) ----------- -The name of the StateType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass shellyEm3 + The name of the StateType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass shellyEm3 - - Total returned energy (Phase A) changed - The name of the EventType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass shellyEm3 - - - - - + Total returned energy (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyProducedPhaseB, ID: {d70a0d1a-cac1-4250-85fa-4859ad2dc947}) ----------- -The name of the StateType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass shellyEm3 + The name of the StateType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass shellyEm3 - - Total returned energy (Phase B) changed - The name of the EventType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass shellyEm3 - - - - - + Total returned energy (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyProducedPhaseC, ID: {de248e26-b617-4d22-9175-752e2d695274}) ----------- -The name of the StateType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass shellyEm3 + The name of the StateType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass shellyEm3 - - Total returned energy (Phase C) changed - The name of the EventType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass shellyEm3 - - - - - - Total returned energy changed - The name of the EventType ({7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({088cb7df-9187-4206-ae5b-18a00e4f1969}) of ThingClass shellyEm3 - - - - + + Turn channel 1 on or off - The name of the ActionType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 + The name of the ActionType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 +---------- +The name of the ActionType ({e3179799-96ca-47a4-8771-888f523247ac}) of ThingClass shelly2 - + + Turn channel 2 on or off - The name of the ActionType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 + The name of the ActionType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 +---------- +The name of the ActionType ({0e50c443-786a-4067-b1df-2b183434a546}) of ThingClass shelly2 - - - - - - - - - - - + + + + + Turn on or off - The name of the ActionType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ----------- -The name of the ActionType ({51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) of ThingClass shellySocket ----------- -The name of the ActionType ({e77d1c75-e856-46bc-9f38-36e59ed7849d}) of ThingClass shellyLightPM ----------- -The name of the ActionType ({2ee5bfab-271e-4b95-9464-122a5208f1a5}) of ThingClass shellyLight ----------- -The name of the ActionType ({bd9480af-eec2-42d7-ab17-15715ee2e8e0}) of ThingClass shellyGenericPM ----------- -The name of the ActionType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass shellyGeneric ----------- -The name of the ActionType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm + The name of the ActionType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm ---------- The name of the ActionType ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 ---------- @@ -2281,9 +1225,9 @@ The name of the ActionType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClas - - - + + + Turn on/off The name of the ActionType ({94276bb9-ef68-47ab-8e74-34ebe54b411f}) of ThingClass shelly1l ---------- @@ -2293,63 +1237,15 @@ The name of the ActionType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClas - - - - - - - - - - - - Turned on or off - The name of the EventType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ----------- -The name of the EventType ({51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) of ThingClass shellySocket ----------- -The name of the EventType ({e77d1c75-e856-46bc-9f38-36e59ed7849d}) of ThingClass shellyLightPM ----------- -The name of the EventType ({2ee5bfab-271e-4b95-9464-122a5208f1a5}) of ThingClass shellyLight ----------- -The name of the EventType ({bd9480af-eec2-42d7-ab17-15715ee2e8e0}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass shellyGeneric ----------- -The name of the EventType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm ----------- -The name of the EventType ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 ----------- -The name of the EventType ({e4a6ac87-31fb-4516-9cf3-f135621e902c}) of ThingClass shellyDimmer ----------- -The name of the EventType ({14abcd30-9db2-4065-ae81-501a55fbb145}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClass shellyPlug - - - - - - - Turned on/off - The name of the EventType ({94276bb9-ef68-47ab-8e74-34ebe54b411f}) of ThingClass shelly1l ----------- -The name of the EventType ({ff44d332-52c3-4142-83e3-01d56c2eb42e}) of ThingClass shelly1pm ----------- -The name of the EventType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass shelly1 - - - - - - - - - - - - + + + + + + + + + Update firmware The name of the ActionType ({1c677ecb-c54e-4c95-a3f7-e68fabeeda08}) of ThingClass shellyI3 ---------- @@ -2371,143 +1267,66 @@ The name of the ActionType ({6f814339-9a48-4027-a3f8-760742ff22ba}) of ThingClas - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + Update status - The name of the ParamType (ThingClass: shellyMotion, EventType: updateStatus, ID: {a604a66c-3143-45ce-a6e3-17a339f428ab}) ----------- -The name of the StateType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyEm, EventType: updateStatus, ID: {ad5d523e-9a4d-47d2-912c-c8ec5081f9ff}) + The name of the StateType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ---------- The name of the StateType ({ad5d523e-9a4d-47d2-912c-c8ec5081f9ff}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: updateStatus, ID: {8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) ----------- The name of the StateType ({8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: updateStatus, ID: {fdda809d-0807-4495-9d50-f9e2a12894ac}) +The name of the StateType ({113625e0-e171-48e6-a9ca-6a13b75b9234}) of ThingClass shellyTrv ---------- The name of the StateType ({fdda809d-0807-4495-9d50-f9e2a12894ac}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: updateStatus, ID: {889d7f2c-488c-4c91-905d-8669125d5c8b}) ----------- The name of the StateType ({889d7f2c-488c-4c91-905d-8669125d5c8b}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: updateStatus, ID: {aa3cbd93-192a-4035-8f46-c5ff68fe331b}) ----------- The name of the StateType ({aa3cbd93-192a-4035-8f46-c5ff68fe331b}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: updateStatus, ID: {3d22110c-db53-4420-8e0f-314555484926}) ----------- The name of the StateType ({3d22110c-db53-4420-8e0f-314555484926}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: updateStatus, ID: {ccec3806-cc48-42cf-94d7-811ff569d407}) ----------- The name of the StateType ({ccec3806-cc48-42cf-94d7-811ff569d407}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: updateStatus, ID: {0f03f1f3-5575-4375-9889-499a172c66c4}) ----------- The name of the StateType ({0f03f1f3-5575-4375-9889-499a172c66c4}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: updateStatus, ID: {8f544e5f-f200-47aa-82c4-46aa9838c96e}) ----------- The name of the StateType ({8f544e5f-f200-47aa-82c4-46aa9838c96e}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: updateStatus, ID: {0e47815d-0084-4a30-957a-f73ed100bed5}) ----------- The name of the StateType ({0e47815d-0084-4a30-957a-f73ed100bed5}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: updateStatus, ID: {a290c9ad-356c-4387-9d82-2bf522643e16}) ----------- The name of the StateType ({a290c9ad-356c-4387-9d82-2bf522643e16}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: updateStatus, ID: {68bf3780-8f7f-4ecb-8498-830e257c192c}) ----------- The name of the StateType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass shelly1 - - - - - - - - - - - - - - Update status changed - The name of the EventType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ----------- -The name of the EventType ({ad5d523e-9a4d-47d2-912c-c8ec5081f9ff}) of ThingClass shellyEm ----------- -The name of the EventType ({8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) of ThingClass shellyEm3 ----------- -The name of the EventType ({fdda809d-0807-4495-9d50-f9e2a12894ac}) of ThingClass shellyHT ----------- -The name of the EventType ({889d7f2c-488c-4c91-905d-8669125d5c8b}) of ThingClass shellyI3 ----------- -The name of the EventType ({aa3cbd93-192a-4035-8f46-c5ff68fe331b}) of ThingClass shellyButton1 ----------- -The name of the EventType ({3d22110c-db53-4420-8e0f-314555484926}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({ccec3806-cc48-42cf-94d7-811ff569d407}) of ThingClass shellyPlug ----------- -The name of the EventType ({0f03f1f3-5575-4375-9889-499a172c66c4}) of ThingClass shelly25 ----------- -The name of the EventType ({8f544e5f-f200-47aa-82c4-46aa9838c96e}) of ThingClass shelly2 ----------- -The name of the EventType ({0e47815d-0084-4a30-957a-f73ed100bed5}) of ThingClass shelly1l ----------- -The name of the EventType ({a290c9ad-356c-4387-9d82-2bf522643e16}) of ThingClass shelly1pm ----------- -The name of the EventType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass shelly1 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + Username (optional) The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {ea210ec8-37ed-4479-9454-48cc06a1df88}) ---------- @@ -2515,6 +1334,8 @@ The name of the ParamType (ThingClass: shellyEm, Type: thing, ID: {61957e60-4b77 ---------- The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {21e11417-b862-44e6-828f-d65207328630}) ---------- +The name of the ParamType (ThingClass: shellyTrv, Type: thing, ID: {ee942141-3102-4b6a-87dc-0fc6481924e5}) +---------- The name of the ParamType (ThingClass: shellyHT, Type: thing, ID: {1ea30a6f-5139-4452-8e23-0c525494c9c8}) ---------- The name of the ParamType (ThingClass: shellyI3, Type: thing, ID: {34a20277-bf0c-4fd5-8ae1-b3019681fa82}) @@ -2539,82 +1360,46 @@ The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {fa1aa0f6-93b2- - - + + + Valve position + The name of the ParamType (ThingClass: shellyTrv, ActionType: valvePosition, ID: {e442ca7a-ee17-482b-aae4-579915029abf}) +---------- +The name of the StateType ({e442ca7a-ee17-482b-aae4-579915029abf}) of ThingClass shellyTrv + + + + Vibration - The name of the ParamType (ThingClass: shellyMotion, EventType: vibration, ID: {76438c2d-9742-4680-9139-d4b4e988cfd2}) ----------- -The name of the StateType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion + The name of the StateType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion - - Vibration detected - The name of the EventType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion - - - - - + Voltage - The name of the ParamType (ThingClass: shellyEmChannel, EventType: voltagePhaseA, ID: {d6cb777f-c9af-46d8-845a-883ac05c206a}) ----------- -The name of the StateType ({d6cb777f-c9af-46d8-845a-883ac05c206a}) of ThingClass shellyEmChannel + The name of the StateType ({d6cb777f-c9af-46d8-845a-883ac05c206a}) of ThingClass shellyEmChannel - - + Voltage (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: voltagePhaseA, ID: {5977ffab-cdcf-409c-940b-aa0a59de84a5}) ----------- -The name of the StateType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass shellyEm3 + The name of the StateType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass shellyEm3 - - Voltage (Phase A) changed - The name of the EventType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass shellyEm3 - - - - - + Voltage (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: voltagePhaseB, ID: {7c846993-fb06-48ef-987c-7b35d9671070}) ----------- -The name of the StateType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass shellyEm3 + The name of the StateType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass shellyEm3 - - Voltage (Phase B) changed - The name of the EventType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass shellyEm3 - - - - - + Voltage (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: voltagePhaseC, ID: {cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) ----------- -The name of the StateType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 + The name of the StateType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 - - Voltage (Phase C) changed - The name of the EventType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 - - - - - Voltage changed - The name of the EventType ({d6cb777f-c9af-46d8-845a-883ac05c206a}) of ThingClass shellyEmChannel - - - - + stop The name of the ActionType ({2266303c-df0c-4eae-b15e-6a86e73c9699}) of ThingClass shellyRoller diff --git a/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-en_US.ts b/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-en_US.ts index b8c76148..604e96ee 100644 --- a/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-en_US.ts +++ b/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-en_US.ts @@ -4,38 +4,23 @@ IntegrationPluginShelly - + + Unable to find the thing in the network. - - Roller shutter mode can't be mixed with relay mode. Please configure both connected devices to control a shutter or relays. - - - - - - For using a roller shutter, one channel must be set to up, the other to down. - - - - - Error creating MQTT channel. Please check MQTT server settings. - - - - + Username and password not set correctly. - + Error connecting to Shelly device. - + Unexpected data received from Shelly device. @@ -43,239 +28,116 @@ shelly - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + Available firmware version - The name of the ParamType (ThingClass: shellyMotion, EventType: availableVersion, ID: {0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) ----------- -The name of the StateType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyEm, EventType: availableVersion, ID: {97ab36bb-355b-4559-838a-fe49a9cbd13e}) + The name of the StateType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ---------- The name of the StateType ({97ab36bb-355b-4559-838a-fe49a9cbd13e}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: availableVersion, ID: {27f1e394-642f-4a90-88bf-1ef9ba88b10b}) ----------- The name of the StateType ({27f1e394-642f-4a90-88bf-1ef9ba88b10b}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: availableVersion, ID: {770b6b3a-3815-4ba3-8a2d-3fb949c914de}) +The name of the StateType ({f3e00825-cd05-45e6-bc99-457bf74255c5}) of ThingClass shellyTrv ---------- The name of the StateType ({770b6b3a-3815-4ba3-8a2d-3fb949c914de}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: availableVersion, ID: {c3ff6d31-7301-412f-9aff-72ac36ba83c9}) ----------- The name of the StateType ({c3ff6d31-7301-412f-9aff-72ac36ba83c9}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: availableVersion, ID: {46f33cf8-82bf-4798-9100-69f54aabd9e0}) ----------- The name of the StateType ({46f33cf8-82bf-4798-9100-69f54aabd9e0}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: availableVersion, ID: {e6418140-db00-4f9b-a7fc-bf4a56a3a8a7}) ----------- The name of the StateType ({e6418140-db00-4f9b-a7fc-bf4a56a3a8a7}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: availableVersion, ID: {e0d58e73-8a36-4f36-901b-f6be6a84942d}) ----------- The name of the StateType ({e0d58e73-8a36-4f36-901b-f6be6a84942d}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: availableVersion, ID: {ccf9d5e9-e89d-4dda-ae99-2f3e9c4e7948}) ----------- The name of the StateType ({ccf9d5e9-e89d-4dda-ae99-2f3e9c4e7948}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: availableVersion, ID: {eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) ----------- The name of the StateType ({eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: availableVersion, ID: {6f081a46-df7d-43df-acb0-a7f226c0fd71}) ----------- The name of the StateType ({6f081a46-df7d-43df-acb0-a7f226c0fd71}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: availableVersion, ID: {5f357a69-6096-4f31-9b5b-b2d5478739da}) ----------- The name of the StateType ({5f357a69-6096-4f31-9b5b-b2d5478739da}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: availableVersion, ID: {bd77d5f6-4958-4a8a-98f5-25931333a5d3}) ----------- The name of the StateType ({bd77d5f6-4958-4a8a-98f5-25931333a5d3}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: availableVersion, ID: {6e794011-d184-4ab2-9c3a-3b2205880cbc}) ----------- The name of the StateType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass shelly1 - - - - - - - - - - - - - - - Available firmware version changed - The name of the EventType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ----------- -The name of the EventType ({97ab36bb-355b-4559-838a-fe49a9cbd13e}) of ThingClass shellyEm ----------- -The name of the EventType ({27f1e394-642f-4a90-88bf-1ef9ba88b10b}) of ThingClass shellyEm3 ----------- -The name of the EventType ({770b6b3a-3815-4ba3-8a2d-3fb949c914de}) of ThingClass shellyHT ----------- -The name of the EventType ({c3ff6d31-7301-412f-9aff-72ac36ba83c9}) of ThingClass shellyI3 ----------- -The name of the EventType ({46f33cf8-82bf-4798-9100-69f54aabd9e0}) of ThingClass shellyButton1 ----------- -The name of the EventType ({e6418140-db00-4f9b-a7fc-bf4a56a3a8a7}) of ThingClass shellyDimmer ----------- -The name of the EventType ({e0d58e73-8a36-4f36-901b-f6be6a84942d}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({ccf9d5e9-e89d-4dda-ae99-2f3e9c4e7948}) of ThingClass shellyPlug ----------- -The name of the EventType ({eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) of ThingClass shelly25 ----------- -The name of the EventType ({6f081a46-df7d-43df-acb0-a7f226c0fd71}) of ThingClass shelly2 ----------- -The name of the EventType ({5f357a69-6096-4f31-9b5b-b2d5478739da}) of ThingClass shelly1l ----------- -The name of the EventType ({bd77d5f6-4958-4a8a-98f5-25931333a5d3}) of ThingClass shelly1pm ----------- -The name of the EventType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass shelly1 - - - - - - Battery critical changed - The name of the EventType ({56053726-92dc-4a80-b05e-a9a857c02bc1}) of ThingClass shellyHT ----------- -The name of the EventType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass shellyButton1 - - - - - Battery entered critical state - The name of the EventType ({1d03941e-9c41-446b-b698-f8dff335bf11}) of ThingClass shellyMotion - - - - - - - - - + + + + Battery level - The name of the ParamType (ThingClass: shellyMotion, EventType: batteryLevel, ID: {f6d89aa6-7dba-4bb0-89cf-36d85208933f}) + The name of the StateType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ---------- -The name of the StateType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyHT, EventType: batteryLevel, ID: {15914ad5-816b-471c-996b-00160100f2bc}) +The name of the StateType ({f45dff98-41ac-43bb-a005-24294973611b}) of ThingClass shellyTrv ---------- The name of the StateType ({15914ad5-816b-471c-996b-00160100f2bc}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: batteryLevel, ID: {338355e5-9506-48b1-be86-757d69b34755}) ----------- The name of the StateType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass shellyButton1 - - - - Battery level changed - The name of the EventType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ----------- -The name of the EventType ({15914ad5-816b-471c-996b-00160100f2bc}) of ThingClass shellyHT ----------- -The name of the EventType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass shellyButton1 - - - - - - - - - + + + + Battery level critical - The name of the ParamType (ThingClass: shellyMotion, EventType: batteryCritical, ID: {1d03941e-9c41-446b-b698-f8dff335bf11}) + The name of the StateType ({1d03941e-9c41-446b-b698-f8dff335bf11}) of ThingClass shellyMotion ---------- -The name of the StateType ({1d03941e-9c41-446b-b698-f8dff335bf11}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyHT, EventType: batteryCritical, ID: {56053726-92dc-4a80-b05e-a9a857c02bc1}) +The name of the StateType ({48c3a619-331e-44eb-b080-877fdcfd03f6}) of ThingClass shellyTrv ---------- The name of the StateType ({56053726-92dc-4a80-b05e-a9a857c02bc1}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: batteryCritical, ID: {18edddee-1b30-48e4-b233-1e3b68bd6ff1}) ----------- The name of the StateType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass shellyButton1 - - - - - - + + + Boost + The name of the ParamType (ThingClass: shellyTrv, ActionType: boost, ID: {ef74da4d-70f4-49cd-9697-a8e2bf25dee1}) +---------- +The name of the StateType ({ef74da4d-70f4-49cd-9697-a8e2bf25dee1}) of ThingClass shellyTrv + + + + + Boost duration (minutes) + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {3a1dbc59-5b61-4650-a0fa-e127d337169e}) + + + + + + + Brightness The name of the ParamType (ThingClass: shellyDimmer, ActionType: brightness, ID: {f41c93ac-6911-45fc-9221-7dd26bf65fd0}) ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: brightness, ID: {f41c93ac-6911-45fc-9221-7dd26bf65fd0}) ----------- The name of the StateType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ---------- The name of the ParamType (ThingClass: shellyRgbw2, ActionType: brightness, ID: {3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: brightness, ID: {3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) ----------- The name of the StateType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass shellyRgbw2 - - - Brightness changed - The name of the EventType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ----------- -The name of the EventType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass shellyRgbw2 - - - - - + + Button name The name of the ParamType (ThingClass: shellyI3, EventType: longPressed, ID: {99683cf9-930e-4f10-94f2-73bb32092639}) ---------- @@ -283,347 +145,119 @@ The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {146313 - + Button type The name of the ParamType (ThingClass: shellySwitch, Type: settings, ID: {ce9f1650-5e12-40f4-97de-27af86afa40b}) - + Calibrate The name of the ActionType ({4e2d8a7b-821e-4ee8-9f9b-f774d631845f}) of ThingClass shellyRoller - - - - - - - - - + + + + Channel The name of the ParamType (ThingClass: shellyRoller, Type: thing, ID: {281385a5-5084-4ded-80a4-66c0dc1096a8}) ---------- -The name of the ParamType (ThingClass: shellySocketPM, Type: thing, ID: {17c19689-8c88-454e-8b18-15436cad293d}) ----------- -The name of the ParamType (ThingClass: shellySocket, Type: thing, ID: {d48edbdf-8ed5-4721-a42a-fd2c340c1a6e}) ----------- -The name of the ParamType (ThingClass: shellyLightPM, Type: thing, ID: {9066e9e9-56e0-4e6b-8667-503b68613640}) ----------- -The name of the ParamType (ThingClass: shellyLight, Type: thing, ID: {9c8b88c0-2825-4235-9b68-2ba378eeb53f}) ----------- -The name of the ParamType (ThingClass: shellyGenericPM, Type: thing, ID: {5e7c6ed5-fe9c-4e27-ad1e-e96886f3c09b}) ----------- -The name of the ParamType (ThingClass: shellyGeneric, Type: thing, ID: {c08b1272-6eb2-4fed-80ad-06566a521b95}) ----------- The name of the ParamType (ThingClass: shellyEmChannel, Type: thing, ID: {e8865f9d-2601-4e02-9ff1-780332f1f18f}) ---------- +The name of the ParamType (ThingClass: shellyPowerMeterChannel, Type: thing, ID: {a6a14cfe-3560-4311-875c-5f04a83f48c5}) +---------- The name of the ParamType (ThingClass: shellySwitch, Type: thing, ID: {be6bdd43-cbf0-4d16-b789-ccad16e23788}) - - Channel 1 turned on or off - The name of the EventType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 - - - - - Channel 2 turned on or off - The name of the EventType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 - - - - + Close The name of the ActionType ({87eb0290-615e-4c98-9ec8-a21104fcf05d}) of ThingClass shellyRoller - - - + + Color The name of the ParamType (ThingClass: shellyRgbw2, ActionType: color, ID: {6ef7c686-350d-4069-9c41-9b90b3906748}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: color, ID: {6ef7c686-350d-4069-9c41-9b90b3906748}) ----------- The name of the StateType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass shellyRgbw2 - - Color changed - The name of the EventType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass shellyRgbw2 - - - - - - + + Color temperature The name of the ParamType (ThingClass: shellyRgbw2, ActionType: colorTemperature, ID: {a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: colorTemperature, ID: {a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) ----------- The name of the StateType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 - - Color temperature changed - The name of the EventType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + Connected - The name of the ParamType (ThingClass: shellyRoller, EventType: connected, ID: {d446719d-628e-477d-882c-a84210c85869}) ----------- -The name of the StateType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: connected, ID: {6e5dbb06-ef4b-42eb-bf6d-e3c83d78de67}) ----------- -The name of the StateType ({6e5dbb06-ef4b-42eb-bf6d-e3c83d78de67}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellySocket, EventType: connected, ID: {b71fa926-9fd2-4008-9fe5-83bbf821963c}) ----------- -The name of the StateType ({b71fa926-9fd2-4008-9fe5-83bbf821963c}) of ThingClass shellySocket ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: connected, ID: {df6f8a11-1295-4ceb-b277-dbe83b9d039c}) ----------- -The name of the StateType ({df6f8a11-1295-4ceb-b277-dbe83b9d039c}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyLight, EventType: connected, ID: {61b7d8ac-d229-4268-8143-6edb2eca978d}) ----------- -The name of the StateType ({61b7d8ac-d229-4268-8143-6edb2eca978d}) of ThingClass shellyLight ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: connected, ID: {5ec936f8-694d-43f4-b3a2-fdc77d38feab}) ----------- -The name of the StateType ({5ec936f8-694d-43f4-b3a2-fdc77d38feab}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyGeneric, EventType: connected, ID: {4a141674-faa6-4953-8272-5b4a4da84d31}) ----------- -The name of the StateType ({4a141674-faa6-4953-8272-5b4a4da84d31}) of ThingClass shellyGeneric ----------- -The name of the ParamType (ThingClass: shellyMotion, EventType: connected, ID: {9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) + The name of the StateType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ---------- The name of the StateType ({9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) of ThingClass shellyMotion ---------- -The name of the ParamType (ThingClass: shellyEmChannel, EventType: connected, ID: {d96d7505-f270-49ad-abb2-4f29ac11fb84}) ----------- The name of the StateType ({d96d7505-f270-49ad-abb2-4f29ac11fb84}) of ThingClass shellyEmChannel ---------- -The name of the ParamType (ThingClass: shellyEm, EventType: connected, ID: {75f1a571-b21c-43c2-b4a3-ab8e9d7ef08c}) +The name of the StateType ({1524dc63-7df8-47fc-a466-69ca896db361}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({75f1a571-b21c-43c2-b4a3-ab8e9d7ef08c}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: connected, ID: {08bd7743-af98-4328-bbca-64280afc5a87}) ----------- The name of the StateType ({08bd7743-af98-4328-bbca-64280afc5a87}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellySwitch, EventType: connected, ID: {0c233312-7b8f-4ca3-880d-523cab9b3ccb}) ----------- The name of the StateType ({0c233312-7b8f-4ca3-880d-523cab9b3ccb}) of ThingClass shellySwitch ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: connected, ID: {b35ace90-8afb-49f1-924d-899bf1c03c3a}) +The name of the StateType ({92fa20b0-2b66-4d68-8819-6eeb43f1c0fb}) of ThingClass shellyTrv ---------- The name of the StateType ({b35ace90-8afb-49f1-924d-899bf1c03c3a}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: connected, ID: {9b17b10d-07ee-4a3d-813f-ef37e79e7241}) ----------- The name of the StateType ({9b17b10d-07ee-4a3d-813f-ef37e79e7241}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: connected, ID: {d23e25a1-f723-4de1-806a-83fb073f01f4}) ----------- The name of the StateType ({d23e25a1-f723-4de1-806a-83fb073f01f4}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: connected, ID: {49ff0891-1798-459f-a97c-f1cc4e643a46}) ----------- The name of the StateType ({49ff0891-1798-459f-a97c-f1cc4e643a46}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: connected, ID: {98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) ----------- The name of the StateType ({98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: connected, ID: {584b3558-5fb5-40a9-81ad-dc71ba68fd45}) ----------- The name of the StateType ({584b3558-5fb5-40a9-81ad-dc71ba68fd45}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: connected, ID: {36a50e24-707e-4d5d-8eba-d2a73f626e2b}) ----------- The name of the StateType ({36a50e24-707e-4d5d-8eba-d2a73f626e2b}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: connected, ID: {966ddc70-aa75-4c86-a75e-c1a010698d93}) ----------- The name of the StateType ({966ddc70-aa75-4c86-a75e-c1a010698d93}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: connected, ID: {2a333f45-2bba-4643-b973-1bb47d56306a}) ----------- The name of the StateType ({2a333f45-2bba-4643-b973-1bb47d56306a}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: connected, ID: {df23a5ea-5f54-42ac-ab6b-aea8f71224f0}) ----------- The name of the StateType ({df23a5ea-5f54-42ac-ab6b-aea8f71224f0}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: connected, ID: {e5d41e05-2296-457e-97d8-98a5ac0de615}) ----------- The name of the StateType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass shelly1 - - - - - - - - Connected changed - The name of the EventType ({9b17b10d-07ee-4a3d-813f-ef37e79e7241}) of ThingClass shellyI3 ----------- -The name of the EventType ({584b3558-5fb5-40a9-81ad-dc71ba68fd45}) of ThingClass shellyPlug ----------- -The name of the EventType ({36a50e24-707e-4d5d-8eba-d2a73f626e2b}) of ThingClass shelly25 ----------- -The name of the EventType ({966ddc70-aa75-4c86-a75e-c1a010698d93}) of ThingClass shelly2 ----------- -The name of the EventType ({2a333f45-2bba-4643-b973-1bb47d56306a}) of ThingClass shelly1l ----------- -The name of the EventType ({df23a5ea-5f54-42ac-ab6b-aea8f71224f0}) of ThingClass shelly1pm ----------- -The name of the EventType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass shelly1 - - - - - - Connected device 1 - The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {dc8a02fb-baa4-40bf-9e00-684b17794287}) ----------- -The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {84e60831-0a2c-466a-bdfe-36ae6bd114e2}) - - - - - - Connected device 2 - The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {1e6925f8-1613-4fe4-8234-e4a4e973ef83}) ----------- -The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {0becaa77-b927-489a-ad5f-9b22513f8673}) - - - - - - - - - - - - - - - - - Connected or disconnected - The name of the EventType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ----------- -The name of the EventType ({6e5dbb06-ef4b-42eb-bf6d-e3c83d78de67}) of ThingClass shellySocketPM ----------- -The name of the EventType ({b71fa926-9fd2-4008-9fe5-83bbf821963c}) of ThingClass shellySocket ----------- -The name of the EventType ({df6f8a11-1295-4ceb-b277-dbe83b9d039c}) of ThingClass shellyLightPM ----------- -The name of the EventType ({61b7d8ac-d229-4268-8143-6edb2eca978d}) of ThingClass shellyLight ----------- -The name of the EventType ({5ec936f8-694d-43f4-b3a2-fdc77d38feab}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({4a141674-faa6-4953-8272-5b4a4da84d31}) of ThingClass shellyGeneric ----------- -The name of the EventType ({9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) of ThingClass shellyMotion ----------- -The name of the EventType ({d96d7505-f270-49ad-abb2-4f29ac11fb84}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({75f1a571-b21c-43c2-b4a3-ab8e9d7ef08c}) of ThingClass shellyEm ----------- -The name of the EventType ({08bd7743-af98-4328-bbca-64280afc5a87}) of ThingClass shellyEm3 ----------- -The name of the EventType ({0c233312-7b8f-4ca3-880d-523cab9b3ccb}) of ThingClass shellySwitch ----------- -The name of the EventType ({b35ace90-8afb-49f1-924d-899bf1c03c3a}) of ThingClass shellyHT - - - - - - - Connected/disconnected - The name of the EventType ({d23e25a1-f723-4de1-806a-83fb073f01f4}) of ThingClass shellyButton1 ----------- -The name of the EventType ({49ff0891-1798-459f-a97c-f1cc4e643a46}) of ThingClass shellyDimmer ----------- -The name of the EventType ({98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) of ThingClass shellyRgbw2 - - - - - Consumed energy changed - The name of the EventType ({962fec29-6be0-452e-87c5-5ff71435c40f}) of ThingClass shellyPlug - - - - - + + Count The name of the ParamType (ThingClass: shellyButton1, EventType: longPressed, ID: {f8b5f587-d266-4fd3-9f01-941d0dcedc1f}) ---------- @@ -631,434 +265,179 @@ The name of the ParamType (ThingClass: shellyButton1, EventType: pressed, ID: {a - - + Current - The name of the ParamType (ThingClass: shellyEmChannel, EventType: currentPhaseA, ID: {1d457f50-0951-4ba5-8d8e-b79ea5a75535}) ----------- -The name of the StateType ({1d457f50-0951-4ba5-8d8e-b79ea5a75535}) of ThingClass shellyEmChannel + The name of the StateType ({1d457f50-0951-4ba5-8d8e-b79ea5a75535}) of ThingClass shellyEmChannel - - + Current (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPhaseA, ID: {5fa79319-756b-4b2c-87b1-59ff996b8435}) ----------- -The name of the StateType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass shellyEm3 + The name of the StateType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass shellyEm3 - - Current (Phase A) changed - The name of the EventType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass shellyEm3 - - - - - + Current (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPhaseB, ID: {a4151601-fe77-418a-a2c1-6376e32da3bd}) ----------- -The name of the StateType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass shellyEm3 + The name of the StateType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass shellyEm3 - - Current (Phase B) changed - The name of the EventType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass shellyEm3 - - - - - + Current (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPhaseC, ID: {ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) ----------- -The name of the StateType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 + The name of the StateType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 - - Current (Phase C) changed - The name of the EventType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 - - - - - Current changed - The name of the EventType ({1d457f50-0951-4ba5-8d8e-b79ea5a75535}) of ThingClass shellyEmChannel - - - - - - - - - - - - - + + + + + + Current firmware version - The name of the ParamType (ThingClass: shellyMotion, EventType: currentVersion, ID: {e2d98172-5833-454b-9b4b-04693c6b9232}) ----------- -The name of the StateType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyEm, EventType: currentVersion, ID: {f5f03ab2-fec6-4502-8a47-100211878a8a}) + The name of the StateType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ---------- The name of the StateType ({f5f03ab2-fec6-4502-8a47-100211878a8a}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: currentVersion, ID: {f9ddb9f1-1251-484e-bdce-531d584d8f6a}) ----------- The name of the StateType ({f9ddb9f1-1251-484e-bdce-531d584d8f6a}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: currentVersion, ID: {5655b88c-f852-4efe-955f-cf5f88e8ba6b}) +The name of the StateType ({ad5cdb22-42ce-4592-ad72-61a854981f69}) of ThingClass shellyTrv ---------- The name of the StateType ({5655b88c-f852-4efe-955f-cf5f88e8ba6b}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: currentVersion, ID: {b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) ----------- The name of the StateType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass shellyButton1 - - - - - - Current firmware version changed - The name of the EventType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ----------- -The name of the EventType ({f5f03ab2-fec6-4502-8a47-100211878a8a}) of ThingClass shellyEm ----------- -The name of the EventType ({f9ddb9f1-1251-484e-bdce-531d584d8f6a}) of ThingClass shellyEm3 ----------- -The name of the EventType ({5655b88c-f852-4efe-955f-cf5f88e8ba6b}) of ThingClass shellyHT ----------- -The name of the EventType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass shellyButton1 - - - - - - - + + + Current power - The name of the ParamType (ThingClass: shellyEmChannel, EventType: currentPower, ID: {a85041e8-a19e-4695-8404-3e3a06b1e92a}) + The name of the StateType ({a85041e8-a19e-4695-8404-3e3a06b1e92a}) of ThingClass shellyEmChannel ---------- -The name of the StateType ({a85041e8-a19e-4695-8404-3e3a06b1e92a}) of ThingClass shellyEmChannel ----------- -The name of the ParamType (ThingClass: shellyEm3, EventType: currentPower, ID: {3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) +The name of the StateType ({9d6a6965-3024-424d-b71b-cf1358a2ece1}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) of ThingClass shellyEm3 - - - Current power changed - The name of the EventType ({a85041e8-a19e-4695-8404-3e3a06b1e92a}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) of ThingClass shellyEm3 - - - - - - - - - - - - - - - - - - - + + + + + Current power consumption - The name of the ParamType (ThingClass: shellyRoller, EventType: currentPower, ID: {0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) ----------- -The name of the StateType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: currentPower, ID: {e95b97d4-b88f-4656-8819-3f681fbe8510}) ----------- -The name of the StateType ({e95b97d4-b88f-4656-8819-3f681fbe8510}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: currentPower, ID: {0de42461-1077-4b74-9212-5446914fd25f}) ----------- -The name of the StateType ({0de42461-1077-4b74-9212-5446914fd25f}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: currentPower, ID: {41338dbd-6d58-4093-a56c-0adaec5398d5}) ----------- -The name of the StateType ({41338dbd-6d58-4093-a56c-0adaec5398d5}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: currentPower, ID: {b3336ca6-1577-4230-8708-98875148606e}) + The name of the StateType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ---------- The name of the StateType ({b3336ca6-1577-4230-8708-98875148606e}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: currentPower, ID: {82ce0c4f-cb81-43c7-bc07-003f8a3cfbc8}) ----------- The name of the StateType ({82ce0c4f-cb81-43c7-bc07-003f8a3cfbc8}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: currentPower, ID: {194f4f1b-86a7-4c04-abf0-2459ae7e2821}) ----------- The name of the StateType ({194f4f1b-86a7-4c04-abf0-2459ae7e2821}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: currentPower, ID: {3ec03053-7cf5-44fb-ad92-041eed9edd9a}) ----------- The name of the StateType ({3ec03053-7cf5-44fb-ad92-041eed9edd9a}) of ThingClass shelly1pm - - - - - Current power consumption changed - The name of the EventType ({b3336ca6-1577-4230-8708-98875148606e}) of ThingClass shellyDimmer ----------- -The name of the EventType ({82ce0c4f-cb81-43c7-bc07-003f8a3cfbc8}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({194f4f1b-86a7-4c04-abf0-2459ae7e2821}) of ThingClass shelly1l ----------- -The name of the EventType ({3ec03053-7cf5-44fb-ad92-041eed9edd9a}) of ThingClass shelly1pm - - - - - - - - - - + Default state - The name of the ParamType (ThingClass: shellySocketPM, Type: settings, ID: {9880a51b-57da-4b65-a0ec-23eb0fdcb8ac}) ----------- -The name of the ParamType (ThingClass: shellySocket, Type: settings, ID: {9f365d87-ddb9-4764-9bfb-0e64020646b4}) ----------- -The name of the ParamType (ThingClass: shellyLightPM, Type: settings, ID: {01cc242a-268d-4dd9-96ce-5502dd1bd430}) ----------- -The name of the ParamType (ThingClass: shellyLight, Type: settings, ID: {4fe9ae31-3657-41bf-bd40-a219d58465d3}) ----------- -The name of the ParamType (ThingClass: shellyGenericPM, Type: settings, ID: {8c60a23c-5e5b-42ba-abae-aeeb3d379d79}) ----------- -The name of the ParamType (ThingClass: shellyGeneric, Type: settings, ID: {7d35aea3-1444-48c8-9732-a41bfc3b9d75}) ----------- -The name of the ParamType (ThingClass: shellyPlug, Type: settings, ID: {40f251db-919a-410f-939a-a11bbc4f7f95}) + The name of the ParamType (ThingClass: shellyPlug, Type: settings, ID: {40f251db-919a-410f-939a-a11bbc4f7f95}) - - + Firmware update status - The name of the ParamType (ThingClass: shellyDimmer, EventType: updateStatus, ID: {8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) ----------- -The name of the StateType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass shellyDimmer + The name of the StateType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass shellyDimmer - - Firmware update status changed - The name of the EventType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass shellyDimmer - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + Firmware version - The name of the ParamType (ThingClass: shellyI3, EventType: currentVersion, ID: {33e7d186-7c6b-4c4e-89c3-80362ef76615}) ----------- -The name of the StateType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ----------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: currentVersion, ID: {2fac7af0-1aa0-4e8d-b3fb-584b49647887}) + The name of the StateType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ---------- The name of the StateType ({2fac7af0-1aa0-4e8d-b3fb-584b49647887}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: currentVersion, ID: {8f2fd109-553a-48df-9b08-6a7fdcba46c1}) ----------- The name of the StateType ({8f2fd109-553a-48df-9b08-6a7fdcba46c1}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: currentVersion, ID: {5b286e92-ec05-4a70-8813-646b63995213}) ----------- The name of the StateType ({5b286e92-ec05-4a70-8813-646b63995213}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: currentVersion, ID: {69f6cb77-1775-4d94-8592-798fdc26a9fc}) ----------- The name of the StateType ({69f6cb77-1775-4d94-8592-798fdc26a9fc}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: currentVersion, ID: {b38b19da-4403-40a2-8aa3-81518d092505}) ----------- The name of the StateType ({b38b19da-4403-40a2-8aa3-81518d092505}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: currentVersion, ID: {2303ffb7-8de4-4993-b3ac-95e4c035b790}) ----------- The name of the StateType ({2303ffb7-8de4-4993-b3ac-95e4c035b790}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: currentVersion, ID: {681f3a7e-d981-4cb2-a7dc-b889a9393276}) ----------- The name of the StateType ({681f3a7e-d981-4cb2-a7dc-b889a9393276}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: currentVersion, ID: {e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) ----------- The name of the StateType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass shelly1 - - - - - - - - - - Firmware version changed - The name of the EventType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ----------- -The name of the EventType ({2fac7af0-1aa0-4e8d-b3fb-584b49647887}) of ThingClass shellyDimmer ----------- -The name of the EventType ({8f2fd109-553a-48df-9b08-6a7fdcba46c1}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({5b286e92-ec05-4a70-8813-646b63995213}) of ThingClass shellyPlug ----------- -The name of the EventType ({69f6cb77-1775-4d94-8592-798fdc26a9fc}) of ThingClass shelly25 ----------- -The name of the EventType ({b38b19da-4403-40a2-8aa3-81518d092505}) of ThingClass shelly2 ----------- -The name of the EventType ({2303ffb7-8de4-4993-b3ac-95e4c035b790}) of ThingClass shelly1l ----------- -The name of the EventType ({681f3a7e-d981-4cb2-a7dc-b889a9393276}) of ThingClass shelly1pm ----------- -The name of the EventType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass shelly1 - - - - - + Humidity - The name of the ParamType (ThingClass: shellyHT, EventType: humidity, ID: {18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) ----------- -The name of the StateType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT + The name of the StateType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT - - Humidity changed - The name of the EventType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT - - - - - + Input 1 - The name of the ParamType (ThingClass: shellyI3, EventType: input1, ID: {61e98cc9-4449-4fb2-818e-692303244ce2}) ----------- -The name of the StateType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass shellyI3 + The name of the StateType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass shellyI3 - - Input 1 changed - The name of the EventType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass shellyI3 - - - - - + Input 2 - The name of the ParamType (ThingClass: shellyI3, EventType: input2, ID: {04497ff2-a231-4d3d-adeb-66275a3b128b}) ----------- -The name of the StateType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass shellyI3 + The name of the StateType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass shellyI3 - - Input 2 changed - The name of the EventType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass shellyI3 - - - - - + Input 3 - The name of the ParamType (ThingClass: shellyI3, EventType: input3, ID: {5895fc2d-19a4-40c2-8522-7c4462e55a3e}) ----------- -The name of the StateType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass shellyI3 + The name of the StateType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass shellyI3 - - Input 3 changed - The name of the EventType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass shellyI3 - - - - + Invert button The name of the ParamType (ThingClass: shellySwitch, Type: settings, ID: {f31eb52b-9aaf-409d-8bba-badda7c1a249}) - - + Light intensity - The name of the ParamType (ThingClass: shellyMotion, EventType: lightIntensity, ID: {a1e12487-ebab-4993-a075-78275aac7b0d}) ----------- -The name of the StateType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass shellyMotion + The name of the StateType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass shellyMotion - - Light intensity changed - The name of the EventType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass shellyMotion - - - - + Long Pressed The name of the EventType ({bb966833-a7a6-4ad7-b5f5-057b38ebb036}) of ThingClass shellyI3 - + Longpress duration The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {b98423a8-c758-4dae-b979-e22446d06b22}) - + Longpressed The name of the EventType ({47cab6b6-eed3-4628-b3ad-2ceda26d6f84}) of ThingClass shellyButton1 - - + + Max time between multiple presses The name of the ParamType (ThingClass: shellyI3, Type: settings, ID: {52699a1b-3526-4f60-83ec-f35faa863597}) ---------- @@ -1066,89 +445,66 @@ The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {b1f5a - + Maximum longpress duration The name of the ParamType (ThingClass: shellyI3, Type: settings, ID: {6485685e-0097-48db-958b-43126c6fb5a6}) - + Minimum longpress duration The name of the ParamType (ThingClass: shellyI3, Type: settings, ID: {a04fda4b-f187-477c-b7a8-b56613bf9264}) - - + Moving - The name of the ParamType (ThingClass: shellyRoller, EventType: moving, ID: {2729d4e0-c38c-47b8-a0e8-26959090fe74}) ----------- -The name of the StateType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass shellyRoller + The name of the StateType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass shellyRoller - - Moving changed - The name of the EventType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass shellyRoller - - - - - - - - - + + + + On The name of the ParamType (ThingClass: shellyDimmer, ActionType: power, ID: {e4a6ac87-31fb-4516-9cf3-f135621e902c}) ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: power, ID: {e4a6ac87-31fb-4516-9cf3-f135621e902c}) ----------- The name of the StateType ({e4a6ac87-31fb-4516-9cf3-f135621e902c}) of ThingClass shellyDimmer ---------- The name of the ParamType (ThingClass: shellyRgbw2, ActionType: power, ID: {14abcd30-9db2-4065-ae81-501a55fbb145}) ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: power, ID: {14abcd30-9db2-4065-ae81-501a55fbb145}) ----------- The name of the StateType ({14abcd30-9db2-4065-ae81-501a55fbb145}) of ThingClass shellyRgbw2 - - + On/Off - The name of the ParamType (ThingClass: shellySwitch, EventType: power, ID: {20f74d88-0683-4d3a-9513-6b29b5112b7b}) ----------- -The name of the StateType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass shellySwitch + The name of the StateType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass shellySwitch - - On/Off toggled - The name of the EventType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass shellySwitch - - - - + Open The name of the ActionType ({b96a8f85-c39e-499b-abbd-40b18788e907}) of ThingClass shellyRoller - - - - - - - - - - - - - - + + + + + + + + + + + + + + + Password (optional) The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {b6a48fc4-5016-47d9-8454-c64686120ee1}) ---------- @@ -1156,6 +512,8 @@ The name of the ParamType (ThingClass: shellyEm, Type: thing, ID: {66c1cd5d-c1c4 ---------- The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {29aee8f6-ed40-41c5-83c9-32c8aa89c7ea}) ---------- +The name of the ParamType (ThingClass: shellyTrv, Type: thing, ID: {bf4fead2-7a1a-44e7-bd32-ea2064944098}) +---------- The name of the ParamType (ThingClass: shellyHT, Type: thing, ID: {a0e1670d-3df2-49c2-b080-577f2d10af68}) ---------- The name of the ParamType (ThingClass: shellyI3, Type: thing, ID: {ccc56409-1424-4bf7-8dac-84431c3e7a84}) @@ -1180,317 +538,140 @@ The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {d29b8399-bfa6- - - + Person is present - The name of the ParamType (ThingClass: shellyMotion, EventType: isPresent, ID: {45c0cc07-0e13-449c-86a7-ab65d5cdf637}) ----------- -The name of the StateType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion + The name of the StateType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion - - - + + Position The name of the ParamType (ThingClass: shellyRoller, ActionType: percentage, ID: {86270b8b-bce4-4d8a-9bc9-d72af36b991c}) ---------- -The name of the ParamType (ThingClass: shellyRoller, EventType: percentage, ID: {86270b8b-bce4-4d8a-9bc9-d72af36b991c}) ----------- The name of the StateType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass shellyRoller - - Position changed - The name of the EventType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass shellyRoller - - - - - - - - - - - - - - - - - - - - - - Power - The name of the ParamType (ThingClass: shellySocketPM, ActionType: power, ID: {d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: power, ID: {d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) ----------- -The name of the StateType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellySocket, ActionType: power, ID: {51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) ----------- -The name of the ParamType (ThingClass: shellySocket, EventType: power, ID: {51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) ----------- -The name of the StateType ({51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) of ThingClass shellySocket ----------- -The name of the ParamType (ThingClass: shellyLightPM, ActionType: power, ID: {e77d1c75-e856-46bc-9f38-36e59ed7849d}) ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: power, ID: {e77d1c75-e856-46bc-9f38-36e59ed7849d}) ----------- -The name of the StateType ({e77d1c75-e856-46bc-9f38-36e59ed7849d}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyLight, ActionType: power, ID: {2ee5bfab-271e-4b95-9464-122a5208f1a5}) ----------- -The name of the ParamType (ThingClass: shellyLight, EventType: power, ID: {2ee5bfab-271e-4b95-9464-122a5208f1a5}) ----------- -The name of the StateType ({2ee5bfab-271e-4b95-9464-122a5208f1a5}) of ThingClass shellyLight ----------- -The name of the ParamType (ThingClass: shellyGenericPM, ActionType: power, ID: {bd9480af-eec2-42d7-ab17-15715ee2e8e0}) ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: power, ID: {bd9480af-eec2-42d7-ab17-15715ee2e8e0}) ----------- -The name of the StateType ({bd9480af-eec2-42d7-ab17-15715ee2e8e0}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyGeneric, ActionType: power, ID: {72d7dbba-757c-4b03-a092-1d3f374fa961}) ----------- -The name of the ParamType (ThingClass: shellyGeneric, EventType: power, ID: {72d7dbba-757c-4b03-a092-1d3f374fa961}) ----------- -The name of the StateType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass shellyGeneric - - - - - - + + + + Power channel 1 The name of the ParamType (ThingClass: shelly25, ActionType: channel1, ID: {118d572c-cc12-4037-82d8-7d8f6fb4a364}) ---------- -The name of the ParamType (ThingClass: shelly25, EventType: channel1, ID: {118d572c-cc12-4037-82d8-7d8f6fb4a364}) +The name of the StateType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 ---------- -The name of the StateType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 +The name of the ParamType (ThingClass: shelly2, ActionType: channel1, ID: {e3179799-96ca-47a4-8771-888f523247ac}) +---------- +The name of the StateType ({e3179799-96ca-47a4-8771-888f523247ac}) of ThingClass shelly2 - - - + + + + Power channel 2 The name of the ParamType (ThingClass: shelly25, ActionType: channel2, ID: {7952aec0-cd27-4ef9-87a6-c499564bc1d4}) ---------- -The name of the ParamType (ThingClass: shelly25, EventType: channel2, ID: {7952aec0-cd27-4ef9-87a6-c499564bc1d4}) +The name of the StateType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 ---------- -The name of the StateType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 +The name of the ParamType (ThingClass: shelly2, ActionType: channel2, ID: {0e50c443-786a-4067-b1df-2b183434a546}) +---------- +The name of the StateType ({0e50c443-786a-4067-b1df-2b183434a546}) of ThingClass shelly2 - - + Power consumption - The name of the ParamType (ThingClass: shellyPlug, EventType: currentPower, ID: {202ea409-650e-48b2-9aae-d4ebe9d505fd}) ----------- -The name of the StateType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass shellyPlug + The name of the StateType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass shellyPlug - - - - - - Power consumption changed - The name of the EventType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ----------- -The name of the EventType ({e95b97d4-b88f-4656-8819-3f681fbe8510}) of ThingClass shellySocketPM ----------- -The name of the EventType ({0de42461-1077-4b74-9212-5446914fd25f}) of ThingClass shellyLightPM ----------- -The name of the EventType ({41338dbd-6d58-4093-a56c-0adaec5398d5}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass shellyPlug - - - - - - Power factor - The name of the ParamType (ThingClass: shellyEmChannel, EventType: powerFactorPhaseA, ID: {fd5898ce-c8c9-422d-a32a-996d4004ca15}) ----------- -The name of the StateType ({fd5898ce-c8c9-422d-a32a-996d4004ca15}) of ThingClass shellyEmChannel - - - - - + Power factor (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: powerFactorPhaseA, ID: {50be490b-ba5d-4b1f-806c-9e15b915c1eb}) ----------- -The name of the StateType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass shellyEm3 + The name of the StateType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass shellyEm3 - - Power factor (Phase A) changed - The name of the EventType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass shellyEm3 - - - - - + Power factor (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: powerFactorPhaseB, ID: {f56504bb-0c6c-4425-831c-771b23aadf19}) ----------- -The name of the StateType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass shellyEm3 + The name of the StateType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass shellyEm3 - - Power factor (Phase B) changed - The name of the EventType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass shellyEm3 - - - - - + Power factor (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: powerFactorPhaseC, ID: {2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) ----------- -The name of the StateType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 + The name of the StateType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 - - Power factor (Phase C) changed - The name of the EventType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 - - - - - Power factor changed - The name of the EventType ({fd5898ce-c8c9-422d-a32a-996d4004ca15}) of ThingClass shellyEmChannel - - - - - + Power usage (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPowerPhaseA, ID: {432ba180-936d-4700-907e-766264bfdd35}) ----------- -The name of the StateType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 + The name of the StateType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 - - Power usage (Phase A) changed - The name of the EventType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 - - - - - + Power usage (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPowerPhaseB, ID: {02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) ----------- -The name of the StateType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 + The name of the StateType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 - - Power usage (Phase B) changed - The name of the EventType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 - - - - - + Power usage (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: currentPowerPhaseC, ID: {82277a4e-49cc-45f4-8b29-470ce99333b6}) ----------- -The name of the StateType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 + The name of the StateType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 - - Power usage (Phase C) changed - The name of the EventType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + Powered The name of the ParamType (ThingClass: shellyEm, ActionType: power, ID: {9a2c6304-91d6-45fc-8ef7-75355457eca5}) ---------- -The name of the ParamType (ThingClass: shellyEm, EventType: power, ID: {9a2c6304-91d6-45fc-8ef7-75355457eca5}) ----------- The name of the StateType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm ---------- The name of the ParamType (ThingClass: shellyEm3, ActionType: power, ID: {639dda4c-e354-43ca-a785-fbe6806986e2}) ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: power, ID: {639dda4c-e354-43ca-a785-fbe6806986e2}) ----------- The name of the StateType ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 ---------- The name of the ParamType (ThingClass: shellyPlug, ActionType: power, ID: {d813b35f-e11e-4783-b3b3-dbecb956ffb5}) ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: power, ID: {d813b35f-e11e-4783-b3b3-dbecb956ffb5}) ----------- The name of the StateType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClass shellyPlug ---------- The name of the ParamType (ThingClass: shelly1l, ActionType: power, ID: {94276bb9-ef68-47ab-8e74-34ebe54b411f}) ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: power, ID: {94276bb9-ef68-47ab-8e74-34ebe54b411f}) ----------- The name of the StateType ({94276bb9-ef68-47ab-8e74-34ebe54b411f}) of ThingClass shelly1l ---------- The name of the ParamType (ThingClass: shelly1pm, ActionType: power, ID: {ff44d332-52c3-4142-83e3-01d56c2eb42e}) ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: power, ID: {ff44d332-52c3-4142-83e3-01d56c2eb42e}) ----------- The name of the StateType ({ff44d332-52c3-4142-83e3-01d56c2eb42e}) of ThingClass shelly1pm ---------- The name of the ParamType (ThingClass: shelly1, ActionType: power, ID: {5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) ---------- -The name of the ParamType (ThingClass: shelly1, EventType: power, ID: {5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) ----------- The name of the StateType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass shelly1 - - Presence detected - The name of the EventType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion - - - - + Press count The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {0ed31339-7457-443c-b6e3-3b8ce3fc2bd8}) - - + + Pressed The name of the EventType ({41498655-1943-4b46-ac36-adea7bafab87}) of ThingClass shellySwitch ---------- @@ -1498,30 +679,15 @@ The name of the EventType ({25955cb9-dc0e-48dc-91b1-ba27e30a3a3f}) of ThingClass - - - Reactive power - The name of the ParamType (ThingClass: shellyEmChannel, EventType: reactivePowerPhaseA, ID: {abdb5b38-05d3-4c12-aed2-f7c560d6b4e8}) ----------- -The name of the StateType ({abdb5b38-05d3-4c12-aed2-f7c560d6b4e8}) of ThingClass shellyEmChannel - - - - - Reactive power changed - The name of the EventType ({abdb5b38-05d3-4c12-aed2-f7c560d6b4e8}) of ThingClass shellyEmChannel - - - - - - - - - - - - + + + + + + + + + Reboot The name of the ActionType ({162e7791-6890-4075-8e57-a4c15b9359bb}) of ThingClass shellyI3 ---------- @@ -1543,14 +709,14 @@ The name of the ActionType ({b4067d54-36c5-4d30-bbc3-c8c712d6fd32}) of ThingClas - + Remain awake The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {45d4628d-7d8c-43b6-ac86-6232caa5816f}) - - + + Reset data The name of the ActionType ({09f6d675-4c22-4a9f-b9f2-3349ab947529}) of ThingClass shellyEm ---------- @@ -1558,8 +724,8 @@ The name of the ActionType ({87772e43-1bf7-496b-b8be-46db39f71700}) of ThingClas - - + + Set brightness The name of the ActionType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ---------- @@ -1567,26 +733,26 @@ The name of the ActionType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClas - + Set color The name of the ActionType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass shellyRgbw2 - + Set color temperature The name of the ActionType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 - + Set position The name of the ActionType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass shellyRoller - - + + Shelly The name of the vendor ({d8e45fc2-90af-492e-8305-50baa1ec4c18}) ---------- @@ -1594,96 +760,165 @@ The name of the plugin shelly ({6162773b-0435-408c-a4f8-7860d38031a9}) - - Shelly 1 - The name of the ThingClass ({f810b66a-7177-4397-9771-4229abaabbb6}) - - - - + Shelly 1L The name of the ThingClass ({20754114-1591-48b5-af2f-8c9966adb7c4}) - - Shelly 1PM + + Child lock + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {38a98b85-9c6e-4dc8-8d73-5248532d2ed8}) + + + + + Display brightness + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {e0f7aae7-d576-4897-9626-2cc7e452b30a}) + + + + + Display flipped + The name of the ParamType (ThingClass: shellyTrv, Type: settings, ID: {83cfbdb7-a807-4a81-9eb0-5e0d62efdbaf}) + + + + + Enable/disable boost + The name of the ActionType ({ef74da4d-70f4-49cd-9697-a8e2bf25dee1}) of ThingClass shellyTrv + + + + + Heating + The name of the StateType ({1935b7fa-72a5-4aee-877e-d656cd79d688}) of ThingClass shellyTrv + + + + + Reboot device + The name of the ActionType ({4cef8e3a-853b-4313-8f70-d22122e7bb04}) of ThingClass shellyTrv + + + + + + Roller shutter mode + The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {8265295d-042c-4d07-bcae-d83f5da7b1a4}) +---------- +The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {be637e1f-7b87-4980-9cc2-fc787909ce59}) + + + + + Set target temperature + The name of the ActionType ({9800babf-a6cc-4eda-b42e-8f5481b61aea}) of ThingClass shellyTrv + + + + + Set valve position + The name of the ActionType ({e442ca7a-ee17-482b-aae4-579915029abf}) of ThingClass shellyTrv + + + + + Set white channel + The name of the ActionType ({8006331c-53ca-4386-8d5c-da62c175af01}) of ThingClass shellyRgbw2 + + + + + Shelly 1/Plus 1 + The name of the ThingClass ({f810b66a-7177-4397-9771-4229abaabbb6}) + + + + + Shelly 1PM/Plus 1PM The name of the ThingClass ({30e74e9f-57f4-4bbc-b0df-f2c4f28b2f06}) - + Shelly 2 The name of the ThingClass ({f277d3a3-62e0-49c1-90b2-4108578e80bf}) - + Shelly 2.5 The name of the ThingClass ({465efb0d-da68-4177-a040-940c7f451e29}) - + Shelly 3EM The name of the ThingClass ({ba293550-d2af-4463-b973-e1812ab67b96}) - + Shelly Dimmer (2) / Vintage The name of the ThingClass ({3a1d6fc1-c623-4b45-9c81-1573fcc15f99}) - + Shelly EM The name of the ThingClass ({bcc7326d-555a-4763-80ce-7354e67cc700}) - + Shelly EM Channel The name of the ThingClass ({67ccc046-c8b5-4584-8f7f-6fe0a0c6a860}) - + Shelly H&T The name of the ThingClass ({cc75be5c-8e34-4f72-a55d-c96e4c85d4be}) - + Shelly I3 The name of the ThingClass ({a4557bcc-bdae-4178-b774-5881a8ae490a}) - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + Shelly ID The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {b92fe8ba-8bfb-4d9a-9fb9-8d55ace8cfb4}) ---------- The name of the ParamType (ThingClass: shellyEmChannel, Type: thing, ID: {b9b85416-0d48-4e71-9471-03385f8fc619}) ---------- +The name of the ParamType (ThingClass: shellyPowerMeterChannel, Type: thing, ID: {a52ae311-7a68-47df-a70e-4d05840798f1}) +---------- The name of the ParamType (ThingClass: shellyEm, Type: thing, ID: {e44d6880-4e54-44b0-85f5-4e035179402e}) ---------- The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {a80894d2-dfba-4699-892d-081702b0f1f5}) ---------- +The name of the ParamType (ThingClass: shellyTrv, Type: thing, ID: {20e21853-cfc1-4f78-9ba3-12682f81e021}) +---------- The name of the ParamType (ThingClass: shellyHT, Type: thing, ID: {b6882bd5-7b1f-447b-9aa7-34aeeb538697}) ---------- The name of the ParamType (ThingClass: shellyI3, Type: thing, ID: {12431172-432b-496e-a6b7-7465753a0bd9}) @@ -1708,293 +943,141 @@ The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {1d301dc0-5e48- - + Shelly Motion The name of the ThingClass ({a82737bb-f2d6-442e-a468-5acc0a2e4cd7}) - + Shelly Plug/PlugS The name of the ThingClass ({22229a6d-2af8-44e0-bea9-310a0f2769ef}) - + + Shelly Power meter Channel + The name of the ThingClass ({e2d2f11b-922f-4ff0-81e1-6fbf4c965521}) + + + + Shelly RGBW2 The name of the ThingClass ({17f24cec-e6ed-4abd-9d42-60999f391dba}) - + + Shelly TRV + The name of the ThingClass ({52932a47-38cd-4dce-b338-88122ce4ab8a}) + + + + Shelly button 1 The name of the ThingClass ({3eba6b29-f634-4ade-80a3-2159803373cc}) - + Shelly connected Roller Shutter The name of the ThingClass ({d681a4cb-481a-4469-a49a-e6bbb11eb9c9}) - - - Shelly connected device - The name of the ThingClass ({3bd614e0-72c4-4fbe-8c70-ce6c48d04bce}) + + + White channel + The name of the ParamType (ThingClass: shellyRgbw2, ActionType: whiteChannel, ID: {8006331c-53ca-4386-8d5c-da62c175af01}) ---------- -The name of the ThingClass ({512c3c7d-d6a6-4d2a-bccd-83147e5f9a25}) +The name of the StateType ({8006331c-53ca-4386-8d5c-da62c175af01}) of ThingClass shellyRgbw2 - - - Shelly connected light - The name of the ThingClass ({5ab05c19-71aa-4a85-a02f-a108f039a69a}) ----------- -The name of the ThingClass ({62a2d6b8-d70d-45fc-ba8c-1c680282a399}) + + Window open + The name of the StateType ({a5944856-6b0f-4b45-9d9f-fe0f3c2de8aa}) of ThingClass shellyTrv - - - Shelly connected power socket - The name of the ThingClass ({ae6e55fe-1a0b-43bc-bdfb-605661b96905}) ----------- -The name of the ThingClass ({3e13206c-a6cd-49a0-b653-2ccb5bb4bbc1}) - - - - + Shelly switch The name of the ThingClass ({6de35a17-0f54-4397-894d-4321b64c53d1}) - + Short Pressed The name of the EventType ({79648810-b2f4-4aa5-902f-2875242e7bf8}) of ThingClass shellyI3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + Signal strength - The name of the ParamType (ThingClass: shellyRoller, EventType: signalStrength, ID: {f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) ----------- -The name of the StateType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: signalStrength, ID: {e81ee293-9dff-46d0-92dc-5f5627e05962}) ----------- -The name of the StateType ({e81ee293-9dff-46d0-92dc-5f5627e05962}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellySocket, EventType: signalStrength, ID: {3459cd8a-8e27-48b1-9b14-43c6239ed3a2}) ----------- -The name of the StateType ({3459cd8a-8e27-48b1-9b14-43c6239ed3a2}) of ThingClass shellySocket ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: signalStrength, ID: {066de9e4-41f7-4628-a83c-102a2719473a}) ----------- -The name of the StateType ({066de9e4-41f7-4628-a83c-102a2719473a}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyLight, EventType: signalStrength, ID: {739a511c-b36d-40c9-b726-acde87f63d9f}) ----------- -The name of the StateType ({739a511c-b36d-40c9-b726-acde87f63d9f}) of ThingClass shellyLight ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: signalStrength, ID: {46cd6c28-b59a-4e20-b706-f202c0848b93}) ----------- -The name of the StateType ({46cd6c28-b59a-4e20-b706-f202c0848b93}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyGeneric, EventType: signalStrength, ID: {e48d19f1-e04b-4c5d-b515-15bb22060607}) ----------- -The name of the StateType ({e48d19f1-e04b-4c5d-b515-15bb22060607}) of ThingClass shellyGeneric ----------- -The name of the ParamType (ThingClass: shellyMotion, EventType: signalStrength, ID: {ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) + The name of the StateType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ---------- The name of the StateType ({ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) of ThingClass shellyMotion ---------- -The name of the ParamType (ThingClass: shellyEmChannel, EventType: signalStrength, ID: {d1928e72-73e6-4009-846e-149f80ad5899}) ----------- The name of the StateType ({d1928e72-73e6-4009-846e-149f80ad5899}) of ThingClass shellyEmChannel ---------- -The name of the ParamType (ThingClass: shellyEm, EventType: signalStrength, ID: {87664175-4b84-4cfe-9bee-5d1bcf2566f8}) +The name of the StateType ({c3d6a520-dad3-463e-b321-91fa1dff6e07}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({87664175-4b84-4cfe-9bee-5d1bcf2566f8}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: signalStrength, ID: {0f147c29-aefd-4926-a979-35dfeaec12c0}) ----------- The name of the StateType ({0f147c29-aefd-4926-a979-35dfeaec12c0}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellySwitch, EventType: signalStrength, ID: {5088cd2d-8f71-4cfb-a120-4a2d4a84355d}) ----------- The name of the StateType ({5088cd2d-8f71-4cfb-a120-4a2d4a84355d}) of ThingClass shellySwitch ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: signalStrength, ID: {f6a09411-4efa-49e0-9cac-1c8e550e9cb6}) +The name of the StateType ({42e080f3-c00c-49d2-b046-7bd26331b8f0}) of ThingClass shellyTrv ---------- The name of the StateType ({f6a09411-4efa-49e0-9cac-1c8e550e9cb6}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: signalStrength, ID: {54fc5565-5d40-4847-b59e-95bfd8845381}) ----------- The name of the StateType ({54fc5565-5d40-4847-b59e-95bfd8845381}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: signalStrength, ID: {fff3aa51-ec42-40c7-b603-cbd2d58d781e}) ----------- The name of the StateType ({fff3aa51-ec42-40c7-b603-cbd2d58d781e}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyDimmer, EventType: signalStrength, ID: {a6855b46-7da8-4160-b698-7707600581b5}) ----------- The name of the StateType ({a6855b46-7da8-4160-b698-7707600581b5}) of ThingClass shellyDimmer ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: signalStrength, ID: {194ecf76-c45f-4c36-8695-08a26ce065f3}) ----------- The name of the StateType ({194ecf76-c45f-4c36-8695-08a26ce065f3}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: signalStrength, ID: {0b0a73a5-d732-47eb-a075-8e22810eea55}) ----------- The name of the StateType ({0b0a73a5-d732-47eb-a075-8e22810eea55}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: signalStrength, ID: {35503b8a-1919-4df5-91cf-b7e381af654a}) ----------- The name of the StateType ({35503b8a-1919-4df5-91cf-b7e381af654a}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: signalStrength, ID: {ed8d3275-4d47-406b-9adf-0355a9bff31e}) ----------- The name of the StateType ({ed8d3275-4d47-406b-9adf-0355a9bff31e}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: signalStrength, ID: {cce7906d-fdef-4804-b118-b5abefa6c6ed}) ----------- The name of the StateType ({cce7906d-fdef-4804-b118-b5abefa6c6ed}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: signalStrength, ID: {58531cb9-933e-457e-af07-7c6c22c28e51}) ----------- The name of the StateType ({58531cb9-933e-457e-af07-7c6c22c28e51}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: signalStrength, ID: {74c631ed-fc3d-49e8-9dec-99cafa70c559}) ----------- The name of the StateType ({74c631ed-fc3d-49e8-9dec-99cafa70c559}) of ThingClass shelly1 - - - - - - - - - - - - - - - - - - - - - - - - Signal strength changed - The name of the EventType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ----------- -The name of the EventType ({e81ee293-9dff-46d0-92dc-5f5627e05962}) of ThingClass shellySocketPM ----------- -The name of the EventType ({3459cd8a-8e27-48b1-9b14-43c6239ed3a2}) of ThingClass shellySocket ----------- -The name of the EventType ({066de9e4-41f7-4628-a83c-102a2719473a}) of ThingClass shellyLightPM ----------- -The name of the EventType ({739a511c-b36d-40c9-b726-acde87f63d9f}) of ThingClass shellyLight ----------- -The name of the EventType ({46cd6c28-b59a-4e20-b706-f202c0848b93}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({e48d19f1-e04b-4c5d-b515-15bb22060607}) of ThingClass shellyGeneric ----------- -The name of the EventType ({ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) of ThingClass shellyMotion ----------- -The name of the EventType ({d1928e72-73e6-4009-846e-149f80ad5899}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({87664175-4b84-4cfe-9bee-5d1bcf2566f8}) of ThingClass shellyEm ----------- -The name of the EventType ({0f147c29-aefd-4926-a979-35dfeaec12c0}) of ThingClass shellyEm3 ----------- -The name of the EventType ({5088cd2d-8f71-4cfb-a120-4a2d4a84355d}) of ThingClass shellySwitch ----------- -The name of the EventType ({f6a09411-4efa-49e0-9cac-1c8e550e9cb6}) of ThingClass shellyHT ----------- -The name of the EventType ({54fc5565-5d40-4847-b59e-95bfd8845381}) of ThingClass shellyI3 ----------- -The name of the EventType ({fff3aa51-ec42-40c7-b603-cbd2d58d781e}) of ThingClass shellyButton1 ----------- -The name of the EventType ({a6855b46-7da8-4160-b698-7707600581b5}) of ThingClass shellyDimmer ----------- -The name of the EventType ({194ecf76-c45f-4c36-8695-08a26ce065f3}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({0b0a73a5-d732-47eb-a075-8e22810eea55}) of ThingClass shellyPlug ----------- -The name of the EventType ({35503b8a-1919-4df5-91cf-b7e381af654a}) of ThingClass shelly25 ----------- -The name of the EventType ({ed8d3275-4d47-406b-9adf-0355a9bff31e}) of ThingClass shelly2 ----------- -The name of the EventType ({cce7906d-fdef-4804-b118-b5abefa6c6ed}) of ThingClass shelly1l ----------- -The name of the EventType ({58531cb9-933e-457e-af07-7c6c22c28e51}) of ThingClass shelly1pm ----------- -The name of the EventType ({74c631ed-fc3d-49e8-9dec-99cafa70c559}) of ThingClass shelly1 - - - - - - - - + + + + + + Start firmware update The name of the ActionType ({17327674-f160-44e1-8a3d-fc2b6e1ee319}) of ThingClass shellyMotion ---------- @@ -2002,274 +1085,135 @@ The name of the ActionType ({6a30f435-2b35-4df5-8a20-ef3dbec817c9}) of ThingClas ---------- The name of the ActionType ({f230d689-53f8-4542-9b20-9993b1c2eb27}) of ThingClass shellyEm3 ---------- +The name of the ActionType ({27e4c7f5-1828-443c-a18d-6d79382e001d}) of ThingClass shellyTrv +---------- The name of the ActionType ({e32aaff9-b2f8-437e-b7b4-5b519d9e5e21}) of ThingClass shellyHT ---------- The name of the ActionType ({87b24064-5db7-4590-a9d8-f6d8fd02ed6e}) of ThingClass shellyButton1 - + Status LED enabled The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {420298a7-bcf8-4970-951e-f6ee5efa1013}) - - + + + Target temperature + The name of the ParamType (ThingClass: shellyTrv, ActionType: targetTemperature, ID: {9800babf-a6cc-4eda-b42e-8f5481b61aea}) +---------- +The name of the StateType ({9800babf-a6cc-4eda-b42e-8f5481b61aea}) of ThingClass shellyTrv + + + + + Temperature - The name of the ParamType (ThingClass: shellyHT, EventType: temperature, ID: {507e7ca7-e1ab-4e7c-8097-4aedf924f797}) + The name of the StateType ({d9a26a08-5735-403a-ab02-7638bd0a471f}) of ThingClass shellyTrv ---------- The name of the StateType ({507e7ca7-e1ab-4e7c-8097-4aedf924f797}) of ThingClass shellyHT - - Temperature changed - The name of the EventType ({507e7ca7-e1ab-4e7c-8097-4aedf924f797}) of ThingClass shellyHT - - - - - - - + + + Total consumed energy - The name of the ParamType (ThingClass: shellyEmChannel, EventType: totalEnergyConsumed, ID: {4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) + The name of the StateType ({4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) of ThingClass shellyEmChannel ---------- -The name of the StateType ({4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) of ThingClass shellyEmChannel ----------- -The name of the ParamType (ThingClass: shellyEm3, EventType: totalEnergyConsumed, ID: {67050a5a-cc78-4d11-a7d9-a9db528029ff}) +The name of the StateType ({670b966c-f882-4846-86ce-54db7da68917}) of ThingClass shellyPowerMeterChannel ---------- The name of the StateType ({67050a5a-cc78-4d11-a7d9-a9db528029ff}) of ThingClass shellyEm3 - - + Total consumed energy (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyConsumedPhaseA, ID: {ba25ef68-bb52-4e96-a8fb-137aae966104}) ----------- -The name of the StateType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass shellyEm3 + The name of the StateType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass shellyEm3 - - Total consumed energy (Phase A) changed - The name of the EventType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass shellyEm3 - - - - - + Total consumed energy (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyConsumedPhaseB, ID: {6636e6a0-e3ca-4654-9506-4302c4e8eed7}) ----------- -The name of the StateType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass shellyEm3 + The name of the StateType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass shellyEm3 - - Total consumed energy (Phase B) changed - The name of the EventType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass shellyEm3 - - - - - + Total consumed energy (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyConsumedPhaseC, ID: {452c2159-aa2f-4217-80e5-4b492b69671e}) ----------- -The name of the StateType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass shellyEm3 + The name of the StateType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass shellyEm3 - - Total consumed energy (Phase C) changed - The name of the EventType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass shellyEm3 - - - - - - - - Total consumed energy changed - The name of the EventType ({4ce53fa0-d6b7-4c1b-87d9-edcaeedb640e}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({67050a5a-cc78-4d11-a7d9-a9db528029ff}) of ThingClass shellyEm3 ----------- -The name of the EventType ({0f879e7b-2124-4d98-9828-e5bbd1b344ce}) of ThingClass shelly1l ----------- -The name of the EventType ({23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) of ThingClass shelly1pm - - - - - - - - Total energy changed - The name of the EventType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ----------- -The name of the EventType ({89a65444-63d4-4add-a479-a48e95dd0458}) of ThingClass shellySocketPM ----------- -The name of the EventType ({39e3d2c6-efb8-4c40-8ae9-8684d87e4087}) of ThingClass shellyLightPM ----------- -The name of the EventType ({54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) of ThingClass shellyGenericPM - - - - - - - - - - - - - - - - - + + + + Total energy consumed - The name of the ParamType (ThingClass: shellyRoller, EventType: totalEnergyConsumed, ID: {a7d88654-7503-474d-9a7c-02150d61a6dc}) ----------- -The name of the StateType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ----------- -The name of the ParamType (ThingClass: shellySocketPM, EventType: totalEnergyConsumed, ID: {89a65444-63d4-4add-a479-a48e95dd0458}) ----------- -The name of the StateType ({89a65444-63d4-4add-a479-a48e95dd0458}) of ThingClass shellySocketPM ----------- -The name of the ParamType (ThingClass: shellyLightPM, EventType: totalEnergyConsumed, ID: {39e3d2c6-efb8-4c40-8ae9-8684d87e4087}) ----------- -The name of the StateType ({39e3d2c6-efb8-4c40-8ae9-8684d87e4087}) of ThingClass shellyLightPM ----------- -The name of the ParamType (ThingClass: shellyGenericPM, EventType: totalEnergyConsumed, ID: {54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) ----------- -The name of the StateType ({54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) of ThingClass shellyGenericPM ----------- -The name of the ParamType (ThingClass: shellyPlug, EventType: totalEnergyConsumed, ID: {962fec29-6be0-452e-87c5-5ff71435c40f}) + The name of the StateType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ---------- The name of the StateType ({962fec29-6be0-452e-87c5-5ff71435c40f}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: totalEnergyConsumed, ID: {0f879e7b-2124-4d98-9828-e5bbd1b344ce}) ----------- The name of the StateType ({0f879e7b-2124-4d98-9828-e5bbd1b344ce}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: totalEnergyConsumed, ID: {23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) ----------- The name of the StateType ({23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) of ThingClass shelly1pm - - - - + + Total returned energy - The name of the ParamType (ThingClass: shellyEmChannel, EventType: totalEnergyProduced, ID: {7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) ----------- -The name of the StateType ({7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) of ThingClass shellyEmChannel ----------- -The name of the ParamType (ThingClass: shellyEm3, EventType: totalEnergyProduced, ID: {088cb7df-9187-4206-ae5b-18a00e4f1969}) + The name of the StateType ({7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) of ThingClass shellyEmChannel ---------- The name of the StateType ({088cb7df-9187-4206-ae5b-18a00e4f1969}) of ThingClass shellyEm3 - - + Total returned energy (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyProducedPhaseA, ID: {34562cd3-b178-4f68-903d-a01e20d0ad76}) ----------- -The name of the StateType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass shellyEm3 + The name of the StateType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass shellyEm3 - - Total returned energy (Phase A) changed - The name of the EventType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass shellyEm3 - - - - - + Total returned energy (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyProducedPhaseB, ID: {d70a0d1a-cac1-4250-85fa-4859ad2dc947}) ----------- -The name of the StateType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass shellyEm3 + The name of the StateType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass shellyEm3 - - Total returned energy (Phase B) changed - The name of the EventType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass shellyEm3 - - - - - + Total returned energy (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: energyProducedPhaseC, ID: {de248e26-b617-4d22-9175-752e2d695274}) ----------- -The name of the StateType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass shellyEm3 + The name of the StateType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass shellyEm3 - - Total returned energy (Phase C) changed - The name of the EventType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass shellyEm3 - - - - - - Total returned energy changed - The name of the EventType ({7fe88e8f-a1c4-4e8d-a1de-9135b80bc7e3}) of ThingClass shellyEmChannel ----------- -The name of the EventType ({088cb7df-9187-4206-ae5b-18a00e4f1969}) of ThingClass shellyEm3 - - - - + + Turn channel 1 on or off - The name of the ActionType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 + The name of the ActionType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 +---------- +The name of the ActionType ({e3179799-96ca-47a4-8771-888f523247ac}) of ThingClass shelly2 - + + Turn channel 2 on or off - The name of the ActionType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 + The name of the ActionType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 +---------- +The name of the ActionType ({0e50c443-786a-4067-b1df-2b183434a546}) of ThingClass shelly2 - - - - - - - - - - - + + + + + Turn on or off - The name of the ActionType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ----------- -The name of the ActionType ({51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) of ThingClass shellySocket ----------- -The name of the ActionType ({e77d1c75-e856-46bc-9f38-36e59ed7849d}) of ThingClass shellyLightPM ----------- -The name of the ActionType ({2ee5bfab-271e-4b95-9464-122a5208f1a5}) of ThingClass shellyLight ----------- -The name of the ActionType ({bd9480af-eec2-42d7-ab17-15715ee2e8e0}) of ThingClass shellyGenericPM ----------- -The name of the ActionType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass shellyGeneric ----------- -The name of the ActionType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm + The name of the ActionType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm ---------- The name of the ActionType ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 ---------- @@ -2281,9 +1225,9 @@ The name of the ActionType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClas - - - + + + Turn on/off The name of the ActionType ({94276bb9-ef68-47ab-8e74-34ebe54b411f}) of ThingClass shelly1l ---------- @@ -2293,63 +1237,15 @@ The name of the ActionType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClas - - - - - - - - - - - - Turned on or off - The name of the EventType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ----------- -The name of the EventType ({51e897b3-dd17-4df3-aa42-52b9bb5f0df8}) of ThingClass shellySocket ----------- -The name of the EventType ({e77d1c75-e856-46bc-9f38-36e59ed7849d}) of ThingClass shellyLightPM ----------- -The name of the EventType ({2ee5bfab-271e-4b95-9464-122a5208f1a5}) of ThingClass shellyLight ----------- -The name of the EventType ({bd9480af-eec2-42d7-ab17-15715ee2e8e0}) of ThingClass shellyGenericPM ----------- -The name of the EventType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass shellyGeneric ----------- -The name of the EventType ({9a2c6304-91d6-45fc-8ef7-75355457eca5}) of ThingClass shellyEm ----------- -The name of the EventType ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 ----------- -The name of the EventType ({e4a6ac87-31fb-4516-9cf3-f135621e902c}) of ThingClass shellyDimmer ----------- -The name of the EventType ({14abcd30-9db2-4065-ae81-501a55fbb145}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClass shellyPlug - - - - - - - Turned on/off - The name of the EventType ({94276bb9-ef68-47ab-8e74-34ebe54b411f}) of ThingClass shelly1l ----------- -The name of the EventType ({ff44d332-52c3-4142-83e3-01d56c2eb42e}) of ThingClass shelly1pm ----------- -The name of the EventType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass shelly1 - - - - - - - - - - - - + + + + + + + + + Update firmware The name of the ActionType ({1c677ecb-c54e-4c95-a3f7-e68fabeeda08}) of ThingClass shellyI3 ---------- @@ -2371,143 +1267,66 @@ The name of the ActionType ({6f814339-9a48-4027-a3f8-760742ff22ba}) of ThingClas - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + Update status - The name of the ParamType (ThingClass: shellyMotion, EventType: updateStatus, ID: {a604a66c-3143-45ce-a6e3-17a339f428ab}) ----------- -The name of the StateType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ----------- -The name of the ParamType (ThingClass: shellyEm, EventType: updateStatus, ID: {ad5d523e-9a4d-47d2-912c-c8ec5081f9ff}) + The name of the StateType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ---------- The name of the StateType ({ad5d523e-9a4d-47d2-912c-c8ec5081f9ff}) of ThingClass shellyEm ---------- -The name of the ParamType (ThingClass: shellyEm3, EventType: updateStatus, ID: {8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) ----------- The name of the StateType ({8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) of ThingClass shellyEm3 ---------- -The name of the ParamType (ThingClass: shellyHT, EventType: updateStatus, ID: {fdda809d-0807-4495-9d50-f9e2a12894ac}) +The name of the StateType ({113625e0-e171-48e6-a9ca-6a13b75b9234}) of ThingClass shellyTrv ---------- The name of the StateType ({fdda809d-0807-4495-9d50-f9e2a12894ac}) of ThingClass shellyHT ---------- -The name of the ParamType (ThingClass: shellyI3, EventType: updateStatus, ID: {889d7f2c-488c-4c91-905d-8669125d5c8b}) ----------- The name of the StateType ({889d7f2c-488c-4c91-905d-8669125d5c8b}) of ThingClass shellyI3 ---------- -The name of the ParamType (ThingClass: shellyButton1, EventType: updateStatus, ID: {aa3cbd93-192a-4035-8f46-c5ff68fe331b}) ----------- The name of the StateType ({aa3cbd93-192a-4035-8f46-c5ff68fe331b}) of ThingClass shellyButton1 ---------- -The name of the ParamType (ThingClass: shellyRgbw2, EventType: updateStatus, ID: {3d22110c-db53-4420-8e0f-314555484926}) ----------- The name of the StateType ({3d22110c-db53-4420-8e0f-314555484926}) of ThingClass shellyRgbw2 ---------- -The name of the ParamType (ThingClass: shellyPlug, EventType: updateStatus, ID: {ccec3806-cc48-42cf-94d7-811ff569d407}) ----------- The name of the StateType ({ccec3806-cc48-42cf-94d7-811ff569d407}) of ThingClass shellyPlug ---------- -The name of the ParamType (ThingClass: shelly25, EventType: updateStatus, ID: {0f03f1f3-5575-4375-9889-499a172c66c4}) ----------- The name of the StateType ({0f03f1f3-5575-4375-9889-499a172c66c4}) of ThingClass shelly25 ---------- -The name of the ParamType (ThingClass: shelly2, EventType: updateStatus, ID: {8f544e5f-f200-47aa-82c4-46aa9838c96e}) ----------- The name of the StateType ({8f544e5f-f200-47aa-82c4-46aa9838c96e}) of ThingClass shelly2 ---------- -The name of the ParamType (ThingClass: shelly1l, EventType: updateStatus, ID: {0e47815d-0084-4a30-957a-f73ed100bed5}) ----------- The name of the StateType ({0e47815d-0084-4a30-957a-f73ed100bed5}) of ThingClass shelly1l ---------- -The name of the ParamType (ThingClass: shelly1pm, EventType: updateStatus, ID: {a290c9ad-356c-4387-9d82-2bf522643e16}) ----------- The name of the StateType ({a290c9ad-356c-4387-9d82-2bf522643e16}) of ThingClass shelly1pm ---------- -The name of the ParamType (ThingClass: shelly1, EventType: updateStatus, ID: {68bf3780-8f7f-4ecb-8498-830e257c192c}) ----------- The name of the StateType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass shelly1 - - - - - - - - - - - - - - Update status changed - The name of the EventType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ----------- -The name of the EventType ({ad5d523e-9a4d-47d2-912c-c8ec5081f9ff}) of ThingClass shellyEm ----------- -The name of the EventType ({8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) of ThingClass shellyEm3 ----------- -The name of the EventType ({fdda809d-0807-4495-9d50-f9e2a12894ac}) of ThingClass shellyHT ----------- -The name of the EventType ({889d7f2c-488c-4c91-905d-8669125d5c8b}) of ThingClass shellyI3 ----------- -The name of the EventType ({aa3cbd93-192a-4035-8f46-c5ff68fe331b}) of ThingClass shellyButton1 ----------- -The name of the EventType ({3d22110c-db53-4420-8e0f-314555484926}) of ThingClass shellyRgbw2 ----------- -The name of the EventType ({ccec3806-cc48-42cf-94d7-811ff569d407}) of ThingClass shellyPlug ----------- -The name of the EventType ({0f03f1f3-5575-4375-9889-499a172c66c4}) of ThingClass shelly25 ----------- -The name of the EventType ({8f544e5f-f200-47aa-82c4-46aa9838c96e}) of ThingClass shelly2 ----------- -The name of the EventType ({0e47815d-0084-4a30-957a-f73ed100bed5}) of ThingClass shelly1l ----------- -The name of the EventType ({a290c9ad-356c-4387-9d82-2bf522643e16}) of ThingClass shelly1pm ----------- -The name of the EventType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass shelly1 - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + Username (optional) The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {ea210ec8-37ed-4479-9454-48cc06a1df88}) ---------- @@ -2515,6 +1334,8 @@ The name of the ParamType (ThingClass: shellyEm, Type: thing, ID: {61957e60-4b77 ---------- The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {21e11417-b862-44e6-828f-d65207328630}) ---------- +The name of the ParamType (ThingClass: shellyTrv, Type: thing, ID: {ee942141-3102-4b6a-87dc-0fc6481924e5}) +---------- The name of the ParamType (ThingClass: shellyHT, Type: thing, ID: {1ea30a6f-5139-4452-8e23-0c525494c9c8}) ---------- The name of the ParamType (ThingClass: shellyI3, Type: thing, ID: {34a20277-bf0c-4fd5-8ae1-b3019681fa82}) @@ -2539,82 +1360,46 @@ The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {fa1aa0f6-93b2- - - + + + Valve position + The name of the ParamType (ThingClass: shellyTrv, ActionType: valvePosition, ID: {e442ca7a-ee17-482b-aae4-579915029abf}) +---------- +The name of the StateType ({e442ca7a-ee17-482b-aae4-579915029abf}) of ThingClass shellyTrv + + + + Vibration - The name of the ParamType (ThingClass: shellyMotion, EventType: vibration, ID: {76438c2d-9742-4680-9139-d4b4e988cfd2}) ----------- -The name of the StateType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion + The name of the StateType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion - - Vibration detected - The name of the EventType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion - - - - - + Voltage - The name of the ParamType (ThingClass: shellyEmChannel, EventType: voltagePhaseA, ID: {d6cb777f-c9af-46d8-845a-883ac05c206a}) ----------- -The name of the StateType ({d6cb777f-c9af-46d8-845a-883ac05c206a}) of ThingClass shellyEmChannel + The name of the StateType ({d6cb777f-c9af-46d8-845a-883ac05c206a}) of ThingClass shellyEmChannel - - + Voltage (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: voltagePhaseA, ID: {5977ffab-cdcf-409c-940b-aa0a59de84a5}) ----------- -The name of the StateType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass shellyEm3 + The name of the StateType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass shellyEm3 - - Voltage (Phase A) changed - The name of the EventType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass shellyEm3 - - - - - + Voltage (Phase B) - The name of the ParamType (ThingClass: shellyEm3, EventType: voltagePhaseB, ID: {7c846993-fb06-48ef-987c-7b35d9671070}) ----------- -The name of the StateType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass shellyEm3 + The name of the StateType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass shellyEm3 - - Voltage (Phase B) changed - The name of the EventType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass shellyEm3 - - - - - + Voltage (Phase C) - The name of the ParamType (ThingClass: shellyEm3, EventType: voltagePhaseC, ID: {cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) ----------- -The name of the StateType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 + The name of the StateType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 - - Voltage (Phase C) changed - The name of the EventType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 - - - - - Voltage changed - The name of the EventType ({d6cb777f-c9af-46d8-845a-883ac05c206a}) of ThingClass shellyEmChannel - - - - + stop The name of the ActionType ({2266303c-df0c-4eae-b15e-6a86e73c9699}) of ThingClass shellyRoller