diff --git a/shelly/README.md b/shelly/README.md index 120536cb..0cc6c89a 100644 --- a/shelly/README.md +++ b/shelly/README.md @@ -5,6 +5,7 @@ The Shelly plugin adds support for Shelly devices (https://shelly.cloud). The currently supported devices are: * Shelly 1 * Shelly 1PM +* Shelly 1L * Shelly 2 * Shelly 2.5 * Shelly Plug / PlugS diff --git a/shelly/integrationpluginshelly.cpp b/shelly/integrationpluginshelly.cpp index 034c6c00..d9eda2d5 100644 --- a/shelly/integrationpluginshelly.cpp +++ b/shelly/integrationpluginshelly.cpp @@ -60,6 +60,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() // Device param types m_idParamTypeMap[shelly1ThingClassId] = shelly1ThingIdParamTypeId; m_idParamTypeMap[shelly1pmThingClassId] = shelly1pmThingIdParamTypeId; + m_idParamTypeMap[shelly1lThingClassId] = shelly1lThingIdParamTypeId; m_idParamTypeMap[shellyPlugThingClassId] = shellyPlugThingIdParamTypeId; m_idParamTypeMap[shellyRgbw2ThingClassId] = shellyRgbw2ThingIdParamTypeId; m_idParamTypeMap[shellyDimmerThingClassId] = shellyDimmerThingIdParamTypeId; @@ -71,6 +72,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_usernameParamTypeMap[shelly1ThingClassId] = shelly1ThingUsernameParamTypeId; m_usernameParamTypeMap[shelly1pmThingClassId] = shelly1pmThingUsernameParamTypeId; + m_usernameParamTypeMap[shelly1lThingClassId] = shelly1lThingUsernameParamTypeId; m_usernameParamTypeMap[shellyPlugThingClassId] = shellyPlugThingUsernameParamTypeId; m_usernameParamTypeMap[shellyRgbw2ThingClassId] = shellyRgbw2ThingUsernameParamTypeId; m_usernameParamTypeMap[shellyDimmerThingClassId] = shellyDimmerThingUsernameParamTypeId; @@ -82,6 +84,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_passwordParamTypeMap[shelly1ThingClassId] = shelly1ThingPasswordParamTypeId; m_passwordParamTypeMap[shelly1pmThingClassId] = shelly1pmThingPasswordParamTypeId; + m_passwordParamTypeMap[shelly1lThingClassId] = shelly1lThingPasswordParamTypeId; m_passwordParamTypeMap[shellyPlugThingClassId] = shellyPlugThingPasswordParamTypeId; m_passwordParamTypeMap[shellyRgbw2ThingClassId] = shellyRgbw2ThingPasswordParamTypeId; m_passwordParamTypeMap[shellyDimmerThingClassId] = shellyDimmerThingPasswordParamTypeId; @@ -91,8 +94,6 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_passwordParamTypeMap[shellyEm3ThingClassId] = shellyEm3ThingPasswordParamTypeId; m_passwordParamTypeMap[shellyHTThingClassId] = shellyHTThingPasswordParamTypeId; - m_connectedDeviceParamTypeMap[shelly1ThingClassId] = shelly1ThingConnectedDeviceParamTypeId; - m_connectedDeviceParamTypeMap[shelly1pmThingClassId] = shelly1pmThingConnectedDeviceParamTypeId; m_connectedDeviceParamTypeMap[shelly2ThingClassId] = shelly2ThingConnectedDevice1ParamTypeId; m_connectedDeviceParamTypeMap[shelly25ThingClassId] = shelly25ThingConnectedDevice1ParamTypeId; @@ -110,6 +111,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() // States m_connectedStateTypesMap[shelly1ThingClassId] = shelly1ConnectedStateTypeId; m_connectedStateTypesMap[shelly1pmThingClassId] = shelly1pmConnectedStateTypeId; + m_connectedStateTypesMap[shelly1lThingClassId] = shelly1lConnectedStateTypeId; m_connectedStateTypesMap[shelly2ThingClassId] = shelly2ConnectedStateTypeId; m_connectedStateTypesMap[shelly25ThingClassId] = shelly25ConnectedStateTypeId; m_connectedStateTypesMap[shellyPlugThingClassId] = shellyPlugConnectedStateTypeId; @@ -129,6 +131,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_signalStrengthStateTypesMap[shelly1ThingClassId] = shelly1SignalStrengthStateTypeId; m_signalStrengthStateTypesMap[shelly1pmThingClassId] = shelly1pmSignalStrengthStateTypeId; + m_signalStrengthStateTypesMap[shelly1lThingClassId] = shelly1lSignalStrengthStateTypeId; m_signalStrengthStateTypesMap[shelly2ThingClassId] = shelly2SignalStrengthStateTypeId; m_signalStrengthStateTypesMap[shelly25ThingClassId] = shelly25SignalStrengthStateTypeId; m_signalStrengthStateTypesMap[shellyPlugThingClassId] = shellyPlugSignalStrengthStateTypeId; @@ -146,6 +149,9 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_signalStrengthStateTypesMap[shellySocketPMThingClassId] = shellySocketPMSignalStrengthStateTypeId; m_signalStrengthStateTypesMap[shellyRollerThingClassId] = shellyRollerSignalStrengthStateTypeId; + m_powerStateTypeMap[shelly1ThingClassId] = shelly1PowerStateTypeId; + m_powerStateTypeMap[shelly1pmThingClassId] = shelly1pmPowerStateTypeId; + m_powerStateTypeMap[shelly1lThingClassId] = shelly1lPowerStateTypeId; m_powerStateTypeMap[shellyPlugThingClassId] = shellyPlugPowerStateTypeId; m_powerStateTypeMap[shellyRgbw2ThingClassId] = shellyRgbw2PowerStateTypeId; m_powerStateTypeMap[shellyDimmerThingClassId] = shellyDimmerPowerStateTypeId; @@ -157,6 +163,8 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_powerStateTypeMap[shellySocketPMThingClassId] = shellySocketPMPowerStateTypeId; m_powerStateTypeMap[shellyEm3ThingClassId] = shellyEm3PowerStateTypeId; + m_currentPowerStateTypeMap[shelly1pmThingClassId] = shelly1pmCurrentPowerStateTypeId; + m_currentPowerStateTypeMap[shelly1lThingClassId] = shelly1lCurrentPowerStateTypeId; m_currentPowerStateTypeMap[shellyPlugThingClassId] = shellyPlugCurrentPowerStateTypeId; m_currentPowerStateTypeMap[shellyRgbw2ThingClassId] = shellyRgbw2CurrentPowerStateTypeId; m_currentPowerStateTypeMap[shellyDimmerThingClassId] = shellyDimmerCurrentPowerStateTypeId; @@ -181,6 +189,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_updateStatusStateTypesMap[shelly1ThingClassId] = shelly1UpdateStatusStateTypeId; m_updateStatusStateTypesMap[shelly1pmThingClassId] = shelly1pmUpdateStatusStateTypeId; + m_updateStatusStateTypesMap[shelly1lThingClassId] = shelly1lUpdateStatusStateTypeId; m_updateStatusStateTypesMap[shelly2ThingClassId] = shelly2UpdateStatusStateTypeId; m_updateStatusStateTypesMap[shelly25ThingClassId] = shelly25UpdateStatusStateTypeId; m_updateStatusStateTypesMap[shellyPlugThingClassId] = shellyPlugUpdateStatusStateTypeId; @@ -192,6 +201,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_currentVersionStateTypesMap[shelly1ThingClassId] = shelly1CurrentVersionStateTypeId; m_currentVersionStateTypesMap[shelly1pmThingClassId] = shelly1pmCurrentVersionStateTypeId; + m_currentVersionStateTypesMap[shelly1lThingClassId] = shelly1lCurrentVersionStateTypeId; m_currentVersionStateTypesMap[shelly2ThingClassId] = shelly2CurrentVersionStateTypeId; m_currentVersionStateTypesMap[shelly25ThingClassId] = shelly25CurrentVersionStateTypeId; m_currentVersionStateTypesMap[shellyPlugThingClassId] = shellyPlugCurrentVersionStateTypeId; @@ -203,6 +213,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_availableVersionStateTypesMap[shelly1ThingClassId] = shelly1AvailableVersionStateTypeId; m_availableVersionStateTypesMap[shelly1pmThingClassId] = shelly1pmAvailableVersionStateTypeId; + m_availableVersionStateTypesMap[shelly1lThingClassId] = shelly1lAvailableVersionStateTypeId; m_availableVersionStateTypesMap[shelly2ThingClassId] = shelly2AvailableVersionStateTypeId; m_availableVersionStateTypesMap[shelly25ThingClassId] = shelly25AvailableVersionStateTypeId; m_availableVersionStateTypesMap[shellyPlugThingClassId] = shellyPlugAvailableVersionStateTypeId; @@ -221,12 +232,16 @@ IntegrationPluginShelly::IntegrationPluginShelly() // Actions and their params m_rebootActionTypeMap[shelly1RebootActionTypeId] = shelly1ThingClassId; m_rebootActionTypeMap[shelly1pmRebootActionTypeId] = shelly1pmThingClassId; + m_rebootActionTypeMap[shelly1lRebootActionTypeId] = shelly1lThingClassId; m_rebootActionTypeMap[shellyPlugRebootActionTypeId] = shellyPlugThingClassId; m_rebootActionTypeMap[shellyRgbw2RebootActionTypeId] = shellyRgbw2ThingClassId; m_rebootActionTypeMap[shellyDimmerRebootActionTypeId] = shellyDimmerThingClassId; m_rebootActionTypeMap[shelly2RebootActionTypeId] = shelly2ThingClassId; m_rebootActionTypeMap[shelly25RebootActionTypeId] = shelly25ThingClassId; + m_powerActionTypesMap[shelly1PowerActionTypeId] = shelly1ThingClassId; + m_powerActionTypesMap[shelly1pmPowerActionTypeId] = shelly1pmThingClassId; + m_powerActionTypesMap[shelly1lPowerActionTypeId] = shelly1lThingClassId; m_powerActionTypesMap[shellyPlugPowerActionTypeId] = shellyPlugThingClassId; m_powerActionTypesMap[shellyGenericPowerActionTypeId] = shellyGenericThingClassId; m_powerActionTypesMap[shellyLightPowerActionTypeId] = shellyLightThingClassId; @@ -236,6 +251,9 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_powerActionTypesMap[shellySocketPMPowerActionTypeId] = shellySocketPMThingClassId; m_powerActionTypesMap[shellyEm3PowerActionTypeId] = shellyEm3ThingClassId; + m_powerActionParamTypesMap[shelly1PowerActionTypeId] = shelly1PowerActionPowerParamTypeId; + m_powerActionParamTypesMap[shelly1pmPowerActionTypeId] = shelly1pmPowerActionPowerParamTypeId; + m_powerActionParamTypesMap[shelly1lPowerActionTypeId] = shelly1lPowerActionPowerParamTypeId; m_powerActionParamTypesMap[shellyPlugPowerActionTypeId] = shellyPlugPowerActionPowerParamTypeId; m_powerActionParamTypesMap[shellyGenericPowerActionTypeId] = shellyGenericPowerActionPowerParamTypeId; m_powerActionParamTypesMap[shellyLightPowerActionTypeId] = shellyLightPowerActionPowerParamTypeId; @@ -269,6 +287,7 @@ IntegrationPluginShelly::IntegrationPluginShelly() m_updateActionTypesMap[shelly1PerformUpdateActionTypeId] = shelly1ThingClassId; m_updateActionTypesMap[shelly1pmPerformUpdateActionTypeId] = shelly1pmThingClassId; + m_updateActionTypesMap[shelly1lPerformUpdateActionTypeId] = shelly1lThingClassId; m_updateActionTypesMap[shelly2PerformUpdateActionTypeId] = shelly2ThingClassId; m_updateActionTypesMap[shelly25PerformUpdateActionTypeId] = shelly25ThingClassId; m_updateActionTypesMap[shellyPlugPerformUpdateActionTypeId] = shellyPlugThingClassId; @@ -297,6 +316,8 @@ void IntegrationPluginShelly::discoverThings(ThingDiscoveryInfo *info) namePattern = QRegExp("^shelly1-[0-9A-Z]+$"); } else if (info->thingClassId() == shelly1pmThingClassId) { namePattern = QRegExp("^shelly1pm-[0-9A-Z]+$"); + } else if (info->thingClassId() == shelly1lThingClassId) { + namePattern = QRegExp("^shelly1l-[0-9A-Z]+$"); } else if (info->thingClassId() == shellyPlugThingClassId) { namePattern = QRegExp("^shellyplug(-s)?-[0-9A-Z]+$"); } else if (info->thingClassId() == shellyRgbw2ThingClassId) { @@ -549,7 +570,7 @@ void IntegrationPluginShelly::executeAction(ThingActionInfo *info) return; } - qCWarning(dcShelly()) << "Unhandled execute action call for device" << thing; + qCWarning(dcShelly()) << "Unhandled execute action" << info->action().actionTypeId() << "call for device" << thing; } void IntegrationPluginShelly::onClientConnected(MqttChannel *channel) @@ -1017,7 +1038,8 @@ void IntegrationPluginShelly::setupShellyGateway(ThingSetupInfo *info) if (myThings().filterByParentId(info->thing()->id()).isEmpty()) { // Always create the switch thing if we don't have one yet for shellies with input (1, 1pm etc) if (info->thing()->thingClassId() == shelly1ThingClassId - || info->thing()->thingClassId() == shelly1pmThingClassId) { + || info->thing()->thingClassId() == shelly1pmThingClassId + || info->thing()->thingClassId() == shelly1lThingClassId) { ThingDescriptor switchChild(shellySwitchThingClassId, info->thing()->name() + " switch", QString(), info->thing()->id()); switchChild.setParams(ParamList() << Param(shellySwitchThingChannelParamTypeId, 1)); autoChilds.append(switchChild); diff --git a/shelly/integrationpluginshelly.json b/shelly/integrationpluginshelly.json index 5e8d7214..6a3eebf2 100644 --- a/shelly/integrationpluginshelly.json +++ b/shelly/integrationpluginshelly.json @@ -22,14 +22,6 @@ "type": "QString", "readOnly": true }, - { - "id": "d0e0499e-faa0-432a-a760-c295b0aefed0", - "name": "connectedDevice", - "displayName": "Connected device", - "type": "QString", - "allowedValues": ["None", "Generic", "Light", "Socket"], - "defaultValue": "Generic" - }, { "id": "fa1aa0f6-93b2-410d-a2c5-7b2f45eae679", "name": "username", @@ -44,6 +36,17 @@ } ], "stateTypes": [ + { + "id": "5b7eeb6c-6113-41f3-a61b-3076d087c9fe", + "name": "power", + "displayName": "Powered", + "displayNameEvent": "Turned on/off", + "displayNameAction": "Turn on/off", + "type": "bool", + "defaultValue": false, + "writable": true, + "ioType": "digitalOutput" + }, { "id": "e5d41e05-2296-457e-97d8-98a5ac0de615", "name": "connected", @@ -108,7 +111,7 @@ "name": "shelly1pm", "displayName": "Shelly 1PM", "createMethods": ["discovery"], - "interfaces": [ "gateway", "wirelessconnectable", "update" ], + "interfaces": [ "gateway", "extendedsmartmeterconsumer", "wirelessconnectable", "update" ], "paramTypes": [ { "id": "6df5db8a-4e27-49e5-8cf9-78cb8497d831", @@ -117,14 +120,6 @@ "type": "QString", "readOnly": true }, - { - "id": "3aacd693-3f1a-4040-be3a-953e600da44f", - "name": "connectedDevice", - "displayName": "Connected device", - "type": "QString", - "allowedValues": ["None", "Generic", "Light", "Socket"], - "defaultValue": "Generic" - }, { "id": "99a31711-0029-461e-9117-2834451175c1", "name": "username", @@ -139,6 +134,17 @@ } ], "stateTypes": [ + { + "id": "ff44d332-52c3-4142-83e3-01d56c2eb42e", + "name": "power", + "displayName": "Powered", + "displayNameEvent": "Turned on/off", + "displayNameAction": "Turn on/off", + "type": "bool", + "defaultValue": false, + "writable": true, + "ioType": "digitalOutput" + }, { "id": "df23a5ea-5f54-42ac-ab6b-aea8f71224f0", "name": "connected", @@ -183,6 +189,24 @@ "displayNameEvent": "Available firmware version changed", "type": "QString", "defaultValue": "" + }, + { + "id": "23594959-1cd4-4e23-a7ae-b0b7fbd29daa", + "name": "totalEnergyConsumed", + "displayName": "Total energy consumed", + "displayNameEvent": "Total consumed energy changed", + "type": "double", + "unit": "KiloWattHour", + "defaultValue": 0 + }, + { + "id": "3ec03053-7cf5-44fb-ad92-041eed9edd9a", + "name": "currentPower", + "displayName": "Current power consumption", + "displayNameEvent": "Current power consumption changed", + "type": "double", + "unit": "Watt", + "defaultValue": 0 } ], "actionTypes": [ @@ -198,6 +222,122 @@ } ] }, + { + "id": "20754114-1591-48b5-af2f-8c9966adb7c4", + "name": "shelly1l", + "displayName": "Shelly 1L", + "createMethods": ["discovery"], + "interfaces": [ "gateway", "extendedsmartmeterconsumer", "wirelessconnectable", "update" ], + "paramTypes": [ + { + "id": "afd5f2c5-dbe4-4d60-80a6-97b77264ad7c", + "name":"id", + "displayName": "Shelly ID", + "type": "QString", + "readOnly": true + }, + { + "id": "b7c4c031-77ec-4ce7-a499-5bb8bf117fe8", + "name": "username", + "displayName": "Username (optional)", + "type": "QString" + }, + { + "id": "e93b4eae-618c-4c4b-9c3e-0226361f87a2", + "name": "password", + "displayName": "Password (optional)", + "type": "QString" + } + ], + "stateTypes": [ + { + "id": "94276bb9-ef68-47ab-8e74-34ebe54b411f", + "name": "power", + "displayName": "Powered", + "displayNameEvent": "Turned on/off", + "displayNameAction": "Turn on/off", + "type": "bool", + "defaultValue": false, + "writable": true, + "ioType": "digitalOutput" + }, + { + "id": "2a333f45-2bba-4643-b973-1bb47d56306a", + "name": "connected", + "displayName": "Connected", + "displayNameEvent": "Connected changed", + "type": "bool", + "defaultValue": false, + "cached": false + }, + { + "id": "cce7906d-fdef-4804-b118-b5abefa6c6ed", + "name": "signalStrength", + "displayName": "Signal strength", + "displayNameEvent": "Signal strength changed", + "type": "uint", + "unit": "Percentage", + "minValue": 0, + "maxValue": 100, + "defaultValue": 100 + }, + { + "id": "0e47815d-0084-4a30-957a-f73ed100bed5", + "name": "updateStatus", + "displayName": "Update status", + "displayNameEvent": "Update status changed", + "type": "QString", + "possibleValues": ["idle", "available", "updating"], + "defaultValue": "idle" + }, + { + "id": "2303ffb7-8de4-4993-b3ac-95e4c035b790", + "name": "currentVersion", + "displayName": "Firmware version", + "displayNameEvent": "Firmware version changed", + "type": "QString", + "defaultValue": "" + }, + { + "id": "5f357a69-6096-4f31-9b5b-b2d5478739da", + "name": "availableVersion", + "displayName": "Available firmware version", + "displayNameEvent": "Available firmware version changed", + "type": "QString", + "defaultValue": "" + }, + { + "id": "0f879e7b-2124-4d98-9828-e5bbd1b344ce", + "name": "totalEnergyConsumed", + "displayName": "Total energy consumed", + "displayNameEvent": "Total consumed energy changed", + "type": "double", + "unit": "KiloWattHour", + "defaultValue": 0 + }, + { + "id": "194f4f1b-86a7-4c04-abf0-2459ae7e2821", + "name": "currentPower", + "displayName": "Current power consumption", + "displayNameEvent": "Current power consumption changed", + "type": "double", + "unit": "Watt", + "defaultValue": 0 + } + ], + "actionTypes": [ + { + "id": "5a05c09a-c6a0-4141-aeeb-86afdb49ffaf", + "name": "reboot", + "displayName": "Reboot" + }, + { + "id": "fa6a52fa-6a57-4d65-8c41-1e61b545dd9b", + "name": "performUpdate", + "displayName": "Update firmware" + } + ] + }, { "id": "f277d3a3-62e0-49c1-90b2-4108578e80bf", "name": "shelly2", 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 b12b6f0b..0a055584 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,38 @@ 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,26 +43,28 @@ shelly - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + Available firmware version The name of the ParamType (ThingClass: shellyEm3, EventType: availableVersion, ID: {27f1e394-642f-4a90-88bf-1ef9ba88b10b}) ---------- @@ -96,6 +98,10 @@ The name of the ParamType (ThingClass: shelly2, EventType: availableVersion, ID: ---------- 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 @@ -106,16 +112,17 @@ The name of the StateType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass - - - - - - - - - - + + + + + + + + + + + Available firmware version changed The name of the EventType ({27f1e394-642f-4a90-88bf-1ef9ba88b10b}) of ThingClass shellyEm3 ---------- @@ -133,14 +140,16 @@ The name of the EventType ({eb8ce8b3-979f-4661-a0ed-d31d3e217e77}) of ThingClass ---------- 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 ---------- @@ -148,10 +157,10 @@ The name of the EventType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass - - - - + + + + Battery level The name of the ParamType (ThingClass: shellyHT, EventType: batteryLevel, ID: {15914ad5-816b-471c-996b-00160100f2bc}) ---------- @@ -163,8 +172,8 @@ The name of the StateType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass - - + + Battery level changed The name of the EventType ({15914ad5-816b-471c-996b-00160100f2bc}) of ThingClass shellyHT ---------- @@ -172,10 +181,10 @@ The name of the EventType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass - - - - + + + + Battery level critical The name of the ParamType (ThingClass: shellyHT, EventType: batteryCritical, ID: {56053726-92dc-4a80-b05e-a9a857c02bc1}) ---------- @@ -187,12 +196,12 @@ The name of the StateType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass - - - - - - + + + + + + Brightness The name of the ParamType (ThingClass: shellyDimmer, ActionType: brightness, ID: {f41c93ac-6911-45fc-9221-7dd26bf65fd0}) ---------- @@ -208,8 +217,8 @@ The name of the StateType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass - - + + Brightness changed The name of the EventType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ---------- @@ -217,26 +226,26 @@ The name of the EventType ({3f74eb92-d95b-48c2-8ac6-29bea9f65ce3}) of ThingClass - + 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}) ---------- @@ -256,15 +265,15 @@ The name of the ParamType (ThingClass: shellySwitch, Type: thing, ID: {be6bdd43- - + 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}) ---------- @@ -274,15 +283,15 @@ The name of the StateType ({6ef7c686-350d-4069-9c41-9b90b3906748}) of ThingClass - + 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}) ---------- @@ -292,32 +301,12 @@ The name of the StateType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass - + Color temperature changed The name of the EventType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass shellyRgbw2 - - - - - - - - - - - - - - - - - - - - @@ -334,6 +323,28 @@ The name of the StateType ({a32a457f-fdc0-46ce-9106-6f9d4f4a6b16}) of ThingClass + + + + + + + + + + + + + + + + + + + + + + Connected The name of the ParamType (ThingClass: shellyRoller, EventType: connected, ID: {d446719d-628e-477d-882c-a84210c85869}) ---------- @@ -399,6 +410,10 @@ The name of the ParamType (ThingClass: shelly2, EventType: connected, ID: {966dd ---------- 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 @@ -409,11 +424,12 @@ The name of the StateType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass - - - - - + + + + + + Connected changed The name of the EventType ({584b3558-5fb5-40a9-81ad-dc71ba68fd45}) of ThingClass shellyPlug ---------- @@ -421,23 +437,16 @@ The name of the EventType ({36a50e24-707e-4d5d-8eba-d2a73f626e2b}) of ThingClass ---------- 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 - The name of the ParamType (ThingClass: shelly1pm, Type: thing, ID: {3aacd693-3f1a-4040-be3a-953e600da44f}) ----------- -The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {d0e0499e-faa0-432a-a760-c295b0aefed0}) - - - - - + + Connected device 1 The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {dc8a02fb-baa4-40bf-9e00-684b17794287}) ---------- @@ -445,8 +454,8 @@ The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {84e60831-0a2c- - - + + Connected device 2 The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {1e6925f8-1613-4fe4-8234-e4a4e973ef83}) ---------- @@ -454,16 +463,16 @@ The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {0becaa77-b927- - - - - - - - - - - + + + + + + + + + + Connected or disconnected The name of the EventType ({d446719d-628e-477d-882c-a84210c85869}) of ThingClass shellyRoller ---------- @@ -487,9 +496,9 @@ The name of the EventType ({b35ace90-8afb-49f1-924d-899bf1c03c3a}) of ThingClass - - - + + + Connected/disconnected The name of the EventType ({d23e25a1-f723-4de1-806a-83fb073f01f4}) of ThingClass shellyButton1 ---------- @@ -499,14 +508,14 @@ The name of the EventType ({98b6e1ba-8d5c-4cb1-82a0-2d06c71cdba6}) of ThingClass - + 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}) ---------- @@ -514,8 +523,8 @@ The name of the ParamType (ThingClass: shellyButton1, EventType: pressed, ID: {a - - + + Current (Phase A) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseACurrent, ID: {5fa79319-756b-4b2c-87b1-59ff996b8435}) ---------- @@ -523,14 +532,14 @@ The name of the StateType ({5fa79319-756b-4b2c-87b1-59ff996b8435}) of ThingClass - + 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: phaseBCurrent, ID: {a4151601-fe77-418a-a2c1-6376e32da3bd}) ---------- @@ -538,14 +547,14 @@ The name of the StateType ({a4151601-fe77-418a-a2c1-6376e32da3bd}) of ThingClass - + 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: phaseCCurrent, ID: {ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) ---------- @@ -553,18 +562,18 @@ The name of the StateType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass - + Current (Phase C) changed The name of the EventType ({ab78aa9c-aa73-4f5d-8d21-38c83c5e9e7c}) of ThingClass shellyEm3 - - - - - - + + + + + + Current firmware version The name of the ParamType (ThingClass: shellyEm3, EventType: currentVersion, ID: {f9ddb9f1-1251-484e-bdce-531d584d8f6a}) ---------- @@ -580,9 +589,9 @@ The name of the StateType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass - - - + + + Current firmware version changed The name of the EventType ({f9ddb9f1-1251-484e-bdce-531d584d8f6a}) of ThingClass shellyEm3 ---------- @@ -592,8 +601,8 @@ The name of the EventType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass - - + + Current power The name of the ParamType (ThingClass: shellyEm3, EventType: currentPower, ID: {3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) ---------- @@ -601,24 +610,28 @@ The name of the StateType ({3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) of ThingClass - + Current power changed 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}) ---------- @@ -642,26 +655,40 @@ The name of the StateType ({b3336ca6-1577-4230-8708-98875148606e}) of ThingClass ---------- 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 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 ({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}) ---------- @@ -679,8 +706,8 @@ The name of the ParamType (ThingClass: shellyPlug, Type: settings, ID: {40f251db - - + + Firmware update status The name of the ParamType (ThingClass: shellyDimmer, EventType: updateStatus, ID: {8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) ---------- @@ -688,26 +715,28 @@ The name of the StateType ({8d3b3d63-86f1-46cb-92ef-d27c0d9d0a4e}) of ThingClass - + 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: shellyDimmer, EventType: currentVersion, ID: {2fac7af0-1aa0-4e8d-b3fb-584b49647887}) ---------- @@ -729,6 +758,10 @@ The name of the ParamType (ThingClass: shelly2, EventType: currentVersion, ID: { ---------- 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 @@ -739,13 +772,14 @@ The name of the StateType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass - - - - - - - + + + + + + + + Firmware version changed The name of the EventType ({2fac7af0-1aa0-4e8d-b3fb-584b49647887}) of ThingClass shellyDimmer ---------- @@ -757,14 +791,16 @@ The name of the EventType ({69f6cb77-1775-4d94-8592-798fdc26a9fc}) of ThingClass ---------- 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}) ---------- @@ -772,38 +808,38 @@ The name of the StateType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass - + Humidity changed The name of the EventType ({18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) of ThingClass shellyHT - + Invert button The name of the ParamType (ThingClass: shellySwitch, Type: settings, ID: {f31eb52b-9aaf-409d-8bba-badda7c1a249}) - + 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: shellyButton1, Type: settings, ID: {b1f5a911-76ec-42e5-ac64-17f85d82b875}) - - + + Moving The name of the ParamType (ThingClass: shellyRoller, EventType: moving, ID: {2729d4e0-c38c-47b8-a0e8-26959090fe74}) ---------- @@ -811,18 +847,18 @@ The name of the StateType ({2729d4e0-c38c-47b8-a0e8-26959090fe74}) of ThingClass - + 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}) ---------- @@ -838,8 +874,8 @@ The name of the StateType ({14abcd30-9db2-4065-ae81-501a55fbb145}) of ThingClass - - + + On/Off The name of the ParamType (ThingClass: shellySwitch, EventType: power, ID: {20f74d88-0683-4d3a-9513-6b29b5112b7b}) ---------- @@ -847,28 +883,29 @@ The name of the StateType ({20f74d88-0683-4d3a-9513-6b29b5112b7b}) of ThingClass - + 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: shellyEm3, Type: thing, ID: {29aee8f6-ed40-41c5-83c9-32c8aa89c7ea}) ---------- @@ -886,15 +923,17 @@ The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {738a6ca4-83f8 ---------- The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {4f3cb0f0-ff3d-4aa8-9c2c-6a7d67cb0f8c}) ---------- +The name of the ParamType (ThingClass: shelly1l, Type: thing, ID: {e93b4eae-618c-4c4b-9c3e-0226361f87a2}) +---------- 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}) - - - + + + Position The name of the ParamType (ThingClass: shellyRoller, ActionType: percentage, ID: {86270b8b-bce4-4d8a-9bc9-d72af36b991c}) ---------- @@ -904,30 +943,30 @@ The name of the StateType ({86270b8b-bce4-4d8a-9bc9-d72af36b991c}) of ThingClass - + 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}) ---------- @@ -967,8 +1006,8 @@ The name of the StateType ({72d7dbba-757c-4b03-a092-1d3f374fa961}) of ThingClass - - + + Power (Phase A) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseAPower, ID: {432ba180-936d-4700-907e-766264bfdd35}) ---------- @@ -976,14 +1015,14 @@ The name of the StateType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass - + Power (Phase A) changed The name of the EventType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 - - + + Power (Phase B) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseBPower, ID: {02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) ---------- @@ -991,14 +1030,14 @@ The name of the StateType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass - + Power (Phase B) changed The name of the EventType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 - - + + Power (Phase C) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseCPower, ID: {82277a4e-49cc-45f4-8b29-470ce99333b6}) ---------- @@ -1006,14 +1045,14 @@ The name of the StateType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass - + Power (Phase C) changed The name of the EventType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 - - + + Power consumption The name of the ParamType (ThingClass: shellyPlug, EventType: currentPower, ID: {202ea409-650e-48b2-9aae-d4ebe9d505fd}) ---------- @@ -1021,11 +1060,11 @@ The name of the StateType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass - - - - - + + + + + Power consumption changed The name of the EventType ({0d7cb1cf-3fff-4d0b-96c2-c02e9a92af57}) of ThingClass shellyRoller ---------- @@ -1039,8 +1078,8 @@ The name of the EventType ({202ea409-650e-48b2-9aae-d4ebe9d505fd}) of ThingClass - - + + Power factor (Phase A) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseAPowerFactor, ID: {50be490b-ba5d-4b1f-806c-9e15b915c1eb}) ---------- @@ -1048,14 +1087,14 @@ The name of the StateType ({50be490b-ba5d-4b1f-806c-9e15b915c1eb}) of ThingClass - + 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: phaseBPowerFactor, ID: {f56504bb-0c6c-4425-831c-771b23aadf19}) ---------- @@ -1063,14 +1102,14 @@ The name of the StateType ({f56504bb-0c6c-4425-831c-771b23aadf19}) of ThingClass - + 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: phaseCPowerFactor, ID: {2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) ---------- @@ -1078,155 +1117,11 @@ The name of the StateType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass - + Power factor (Phase C) changed The name of the EventType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 - - - - - - - - Powered - 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 - - - - - - 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 - - - - - - - - - - - Reboot - The name of the ActionType ({dca1d1bb-b377-41b8-ac26-579060448fd7}) of ThingClass shellyDimmer ----------- -The name of the ActionType ({1390811d-dc71-4d89-a6e1-a808e03225f9}) of ThingClass shellyRgbw2 ----------- -The name of the ActionType ({7dc03565-d7cb-4add-ba08-b751ce0821d5}) of ThingClass shellyPlug ----------- -The name of the ActionType ({4085a6a0-746f-490d-9e38-897c24f866b6}) of ThingClass shelly25 ----------- -The name of the ActionType ({f444ff28-07b1-40fe-b450-c373a6341411}) of ThingClass shelly2 ----------- -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 - - - - - Remain awake - The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {45d4628d-7d8c-43b6-ac86-6232caa5816f}) - - - - - Reset data - The name of the ActionType ({87772e43-1bf7-496b-b8be-46db39f71700}) of ThingClass shellyEm3 - - - - - - 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 - - - - - 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}) ----------- -The name of the plugin shelly ({6162773b-0435-408c-a4f8-7860d38031a9}) - - - - - Shelly 1 - The name of the ThingClass ({f810b66a-7177-4397-9771-4229abaabbb6}) - - - - - Shelly 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 / Dimmer 2 - The name of the ThingClass ({3a1d6fc1-c623-4b45-9c81-1573fcc15f99}) - - - - - Shelly H&T - The name of the ThingClass ({cc75be5c-8e34-4f72-a55d-c96e4c85d4be}) - - @@ -1238,6 +1133,187 @@ The name of the plugin shelly ({6162773b-0435-408c-a4f8-7860d38031a9}) + + + + + + Powered + 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 + + + + + + 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 + + + + + + + + + + + + Reboot + The name of the ActionType ({dca1d1bb-b377-41b8-ac26-579060448fd7}) of ThingClass shellyDimmer +---------- +The name of the ActionType ({1390811d-dc71-4d89-a6e1-a808e03225f9}) of ThingClass shellyRgbw2 +---------- +The name of the ActionType ({7dc03565-d7cb-4add-ba08-b751ce0821d5}) of ThingClass shellyPlug +---------- +The name of the ActionType ({4085a6a0-746f-490d-9e38-897c24f866b6}) of ThingClass shelly25 +---------- +The name of the ActionType ({f444ff28-07b1-40fe-b450-c373a6341411}) of ThingClass shelly2 +---------- +The name of the ActionType ({5a05c09a-c6a0-4141-aeeb-86afdb49ffaf}) of ThingClass shelly1l +---------- +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 + + + + + Remain awake + The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {45d4628d-7d8c-43b6-ac86-6232caa5816f}) + + + + + Reset data + The name of the ActionType ({87772e43-1bf7-496b-b8be-46db39f71700}) of ThingClass shellyEm3 + + + + + + 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 + + + + + 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}) +---------- +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 + 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 / Dimmer 2 + The name of the ThingClass ({3a1d6fc1-c623-4b45-9c81-1573fcc15f99}) + + + + + Shelly H&T + The name of the ThingClass ({cc75be5c-8e34-4f72-a55d-c96e4c85d4be}) + + + + + + + + + + + + + + Shelly ID The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {a80894d2-dfba-4699-892d-081702b0f1f5}) ---------- @@ -1255,38 +1331,40 @@ The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {d79de2fa-81dd ---------- The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {847583a1-2037-44ac-9b28-399c3cb8cf8c}) ---------- +The name of the ParamType (ThingClass: shelly1l, Type: thing, ID: {afd5f2c5-dbe4-4d60-80a6-97b77264ad7c}) +---------- The name of the ParamType (ThingClass: shelly1pm, Type: thing, ID: {6df5db8a-4e27-49e5-8cf9-78cb8497d831}) ---------- The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {1d301dc0-5e48-473f-a611-8e407289e545}) - + Shelly Plug/PlugS The name of the ThingClass ({22229a6d-2af8-44e0-bea9-310a0f2769ef}) - + Shelly RGBW2 The name of the ThingClass ({17f24cec-e6ed-4abd-9d42-60999f391dba}) - + 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}) ---------- @@ -1294,8 +1372,8 @@ The name of the ThingClass ({512c3c7d-d6a6-4d2a-bccd-83147e5f9a25}) - - + + Shelly connected light The name of the ThingClass ({5ab05c19-71aa-4a85-a02f-a108f039a69a}) ---------- @@ -1303,8 +1381,8 @@ The name of the ThingClass ({62a2d6b8-d70d-45fc-ba8c-1c680282a399}) - - + + Shelly connected power socket The name of the ThingClass ({ae6e55fe-1a0b-43bc-bdfb-605661b96905}) ---------- @@ -1312,48 +1390,50 @@ The name of the ThingClass ({3e13206c-a6cd-49a0-b653-2ccb5bb4bbc1}) - + Shelly switch The name of the ThingClass ({6de35a17-0f54-4397-894d-4321b64c53d1}) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Signal strength The name of the ParamType (ThingClass: shellyRoller, EventType: signalStrength, ID: {f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) ---------- @@ -1419,6 +1499,10 @@ The name of the ParamType (ThingClass: shelly2, EventType: signalStrength, ID: { ---------- 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 @@ -1429,24 +1513,25 @@ The name of the StateType ({74c631ed-fc3d-49e8-9dec-99cafa70c559}) of ThingClass - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + Signal strength changed The name of the EventType ({f46c52ce-58dd-4d07-bb69-e8b8719c41bc}) of ThingClass shellyRoller ---------- @@ -1480,15 +1565,17 @@ The name of the EventType ({35503b8a-1919-4df5-91cf-b7e381af654a}) of ThingClass ---------- 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 ({f230d689-53f8-4542-9b20-9993b1c2eb27}) of ThingClass shellyEm3 ---------- @@ -1498,14 +1585,14 @@ The name of the ActionType ({87b24064-5db7-4590-a9d8-f6d8fd02ed6e}) of ThingClas - + Status LED enabled The name of the ParamType (ThingClass: shellyButton1, Type: settings, ID: {420298a7-bcf8-4970-951e-f6ee5efa1013}) - - + + Temperature The name of the ParamType (ThingClass: shellyHT, EventType: temperature, ID: {507e7ca7-e1ab-4e7c-8097-4aedf924f797}) ---------- @@ -1513,14 +1600,14 @@ The name of the StateType ({507e7ca7-e1ab-4e7c-8097-4aedf924f797}) of ThingClass - + Temperature changed The name of the EventType ({507e7ca7-e1ab-4e7c-8097-4aedf924f797}) of ThingClass shellyHT - - + + Total consumed energy The name of the ParamType (ThingClass: shellyEm3, EventType: totalEnergyConsumed, ID: {67050a5a-cc78-4d11-a7d9-a9db528029ff}) ---------- @@ -1528,8 +1615,8 @@ The name of the StateType ({67050a5a-cc78-4d11-a7d9-a9db528029ff}) of ThingClass - - + + Total consumed energy (Phase A) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseATotalEnergyConsumed, ID: {ba25ef68-bb52-4e96-a8fb-137aae966104}) ---------- @@ -1537,14 +1624,14 @@ The name of the StateType ({ba25ef68-bb52-4e96-a8fb-137aae966104}) of ThingClass - + 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: phaseBTotalEnergyConsumed, ID: {6636e6a0-e3ca-4654-9506-4302c4e8eed7}) ---------- @@ -1552,14 +1639,14 @@ The name of the StateType ({6636e6a0-e3ca-4654-9506-4302c4e8eed7}) of ThingClass - + 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: phaseCTotalEnergyConsumed, ID: {452c2159-aa2f-4217-80e5-4b492b69671e}) ---------- @@ -1567,22 +1654,28 @@ The name of the StateType ({452c2159-aa2f-4217-80e5-4b492b69671e}) of ThingClass - + 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 ({67050a5a-cc78-4d11-a7d9-a9db528029ff}) of ThingClass shellyEm3 + 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 ---------- @@ -1594,16 +1687,20 @@ The name of the EventType ({54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) of ThingClass - - - - - - - - - - + + + + + + + + + + + + + + Total energy consumed The name of the ParamType (ThingClass: shellyRoller, EventType: totalEnergyConsumed, ID: {a7d88654-7503-474d-9a7c-02150d61a6dc}) ---------- @@ -1623,12 +1720,20 @@ The name of the StateType ({54b0b02e-1dfe-4172-bdfd-8129709e5d9f}) of ThingClass ---------- The name of the ParamType (ThingClass: shellyPlug, EventType: totalEnergyConsumed, ID: {962fec29-6be0-452e-87c5-5ff71435c40f}) ---------- -The name of the StateType ({962fec29-6be0-452e-87c5-5ff71435c40f}) of ThingClass shellyPlug +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: shellyEm3, EventType: totalEnergyProduced, ID: {088cb7df-9187-4206-ae5b-18a00e4f1969}) ---------- @@ -1636,8 +1741,8 @@ The name of the StateType ({088cb7df-9187-4206-ae5b-18a00e4f1969}) of ThingClass - - + + Total returned energy (Phase A) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseATotalEnergyReturned, ID: {34562cd3-b178-4f68-903d-a01e20d0ad76}) ---------- @@ -1645,14 +1750,14 @@ The name of the StateType ({34562cd3-b178-4f68-903d-a01e20d0ad76}) of ThingClass - + 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: phaseBTotalEnergyReturned, ID: {d70a0d1a-cac1-4250-85fa-4859ad2dc947}) ---------- @@ -1660,14 +1765,14 @@ The name of the StateType ({d70a0d1a-cac1-4250-85fa-4859ad2dc947}) of ThingClass - + 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: phaseCTotalEnergyReturned, ID: {de248e26-b617-4d22-9175-752e2d695274}) ---------- @@ -1675,28 +1780,28 @@ The name of the StateType ({de248e26-b617-4d22-9175-752e2d695274}) of ThingClass - + 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 ({088cb7df-9187-4206-ae5b-18a00e4f1969}) of ThingClass shellyEm3 - - - - - - - - - - + + + + + + + + + + Turn on or off The name of the ActionType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ---------- @@ -1720,16 +1825,28 @@ 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 +---------- +The name of the ActionType ({ff44d332-52c3-4142-83e3-01d56c2eb42e}) of ThingClass shelly1pm +---------- +The name of the ActionType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass shelly1 + + + + + + + + + + + + + Turned on or off The name of the EventType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ---------- @@ -1753,13 +1870,26 @@ The name of the EventType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClass - - - - - - - + + + + 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 ({893031b8-9abd-4a83-8da4-ea57acb621ad}) of ThingClass shellyDimmer ---------- @@ -1771,30 +1901,34 @@ The name of the ActionType ({14a24bc3-8215-430e-b4ff-e25ccee29691}) of ThingClas ---------- The name of the ActionType ({4ca44813-1ee3-4aee-89c7-a667fe1c8ddc}) of ThingClass shelly2 ---------- +The name of the ActionType ({fa6a52fa-6a57-4d65-8c41-1e61b545dd9b}) of ThingClass shelly1l +---------- The name of the ActionType ({edc735dd-8c6b-4f76-b05b-32c934b4fe3b}) of ThingClass shelly1pm ---------- The name of the ActionType ({6f814339-9a48-4027-a3f8-760742ff22ba}) of ThingClass shelly1 - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + Update status The name of the ParamType (ThingClass: shellyEm3, EventType: updateStatus, ID: {8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) ---------- @@ -1824,6 +1958,10 @@ The name of the ParamType (ThingClass: shelly2, EventType: updateStatus, ID: {8f ---------- 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 @@ -1834,15 +1972,16 @@ The name of the StateType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass - - - - - - - - - + + + + + + + + + + Update status changed The name of the EventType ({8e25bbc2-54d8-4aa1-8ca5-f61b5f17a03b}) of ThingClass shellyEm3 ---------- @@ -1858,22 +1997,25 @@ The name of the EventType ({0f03f1f3-5575-4375-9889-499a172c66c4}) of ThingClass ---------- 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: shellyEm3, Type: thing, ID: {21e11417-b862-44e6-828f-d65207328630}) ---------- @@ -1891,14 +2033,16 @@ The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {4fb3c690-0183 ---------- The name of the ParamType (ThingClass: shelly2, Type: thing, ID: {521303e2-ef93-47df-8acb-fb1f8f78aae9}) ---------- +The name of the ParamType (ThingClass: shelly1l, Type: thing, ID: {b7c4c031-77ec-4ce7-a499-5bb8bf117fe8}) +---------- The name of the ParamType (ThingClass: shelly1pm, Type: thing, ID: {99a31711-0029-461e-9117-2834451175c1}) ---------- The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {fa1aa0f6-93b2-410d-a2c5-7b2f45eae679}) - - + + Voltage (Phase A) The name of the ParamType (ThingClass: shellyEm3, EventType: phaseAVoltage, ID: {5977ffab-cdcf-409c-940b-aa0a59de84a5}) ---------- @@ -1906,14 +2050,14 @@ The name of the StateType ({5977ffab-cdcf-409c-940b-aa0a59de84a5}) of ThingClass - + 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: phaseBVoltage, ID: {7c846993-fb06-48ef-987c-7b35d9671070}) ---------- @@ -1921,14 +2065,14 @@ The name of the StateType ({7c846993-fb06-48ef-987c-7b35d9671070}) of ThingClass - + 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: phaseCVoltage, ID: {cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) ---------- @@ -1936,13 +2080,13 @@ The name of the StateType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass - + Voltage (Phase C) changed The name of the EventType ({cd7af1b2-d5f0-4c2e-b85c-84f23ae1fbb9}) of ThingClass shellyEm3 - + stop The name of the ActionType ({2266303c-df0c-4eae-b15e-6a86e73c9699}) of ThingClass shellyRoller