diff --git a/shelly/integrationpluginshelly.cpp b/shelly/integrationpluginshelly.cpp index f0628b66..6b9ebde9 100644 --- a/shelly/integrationpluginshelly.cpp +++ b/shelly/integrationpluginshelly.cpp @@ -320,6 +320,8 @@ static QHash powerActionTypesMap = { {shellyLightPMPowerActionTypeId, shellyLightPMThingClassId}, {shellySocketPMPowerActionTypeId, shellySocketPMThingClassId}, {shellyEm3PowerActionTypeId, shellyEm3ThingClassId}, + {shelly25Channel1ActionTypeId, shelly25ThingClassId}, + {shelly25Channel2ActionTypeId, shelly25ThingClassId} }; static QHash powerActionParamTypesMap = { @@ -334,6 +336,8 @@ static QHash powerActionParamTypesMap = { {shellyLightPMPowerActionTypeId, shellyLightPMPowerActionPowerParamTypeId}, {shellySocketPMPowerActionTypeId, shellySocketPMPowerActionPowerParamTypeId}, {shellyEm3PowerActionTypeId, shellyEm3PowerActionPowerParamTypeId}, + {shelly25Channel1ActionTypeId, shelly25Channel1ActionChannel1ParamTypeId}, + {shelly25Channel2ActionTypeId, shelly25Channel2ActionChannel2ParamTypeId} }; static QHash colorPowerActionTypesMap = { @@ -548,8 +552,14 @@ void IntegrationPluginShelly::executeAction(ThingActionInfo *info) MqttChannel *channel = m_mqttChannels.value(parentDevice); QString shellyId = parentDevice->paramValue(idParamTypeMap.value(parentDevice->thingClassId())).toString(); int relay = 1; + QHash actionChannelMap = { + {shelly25Channel1ActionTypeId, 1}, + {shelly25Channel2ActionTypeId, 2} + }; if (channelParamTypeMap.contains(thing->thingClassId())) { relay = thing->paramValue(channelParamTypeMap.value(thing->thingClassId())).toInt(); + } else if (actionChannelMap.contains(action.actionTypeId())) { + relay = actionChannelMap.value(action.actionTypeId()); } ParamTypeId powerParamTypeId = powerActionParamTypesMap.value(action.actionTypeId()); bool on = action.param(powerParamTypeId).value().toBool(); @@ -822,6 +832,15 @@ void IntegrationPluginShelly::onPublishReceived(MqttChannel *channel, const QStr if (powerStateTypeMap.contains(thing->thingClassId())) { thing->setStateValue(powerStateTypeMap.value(thing->thingClassId()), on); } + // If the shelly main thing has multiple channels (e.g. Shelly 2.5) + if (thing->thingClassId() == shelly25ThingClassId) { + QHash powerChannelStateTypesMap = { + {0, shelly25Channel1StateTypeId}, + {1, shelly25Channel2StateTypeId} + }; + thing->setStateValue(powerChannelStateTypesMap.value(channel), on); + } + // And switch all childs of this shelly too foreach (Thing *child, myThings().filterByParentId(thing->id())) { if (powerStateTypeMap.contains(child->thingClassId())) { @@ -831,6 +850,7 @@ void IntegrationPluginShelly::onPublishReceived(MqttChannel *channel, const QStr } } } + } topicMatcher = QRegExp("shellies/" + shellyId + "/(relay|roller)/[0-1]/power"); @@ -1156,12 +1176,13 @@ void IntegrationPluginShelly::setupShellyGateway(ThingSetupInfo *info) } MqttChannel *channel = hardwareManager()->mqttProvider()->createChannel(shellyId, QHostAddress(address), {"shellies"}); - m_mqttChannels.insert(info->thing(), channel); if (!channel) { qCWarning(dcShelly()) << "Failed to create MQTT channel."; return info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("Error creating MQTT channel. Please check MQTT server settings.")); } + + m_mqttChannels.insert(info->thing(), channel); connect(channel, &MqttChannel::clientConnected, this, &IntegrationPluginShelly::onClientConnected); connect(channel, &MqttChannel::clientDisconnected, this, &IntegrationPluginShelly::onClientDisconnected); connect(channel, &MqttChannel::publishReceived, this, &IntegrationPluginShelly::onPublishReceived); diff --git a/shelly/integrationpluginshelly.json b/shelly/integrationpluginshelly.json index a9366396..eb3aef57 100644 --- a/shelly/integrationpluginshelly.json +++ b/shelly/integrationpluginshelly.json @@ -531,6 +531,28 @@ "displayNameEvent": "Available firmware version changed", "type": "QString", "defaultValue": "" + }, + { + "id": "118d572c-cc12-4037-82d8-7d8f6fb4a364", + "name": "channel1", + "displayName": "Power channel 1", + "displayNameEvent": "Channel 1 turned on or off", + "displayNameAction": "Turn channel 1 on or off", + "type": "bool", + "defaultValue": false, + "writable": true, + "ioType": "digitalOutput" + }, + { + "id": "7952aec0-cd27-4ef9-87a6-c499564bc1d4", + "name": "channel2", + "displayName": "Power channel 2", + "displayNameEvent": "Channel 2 turned on or off", + "displayNameAction": "Turn channel 2 on or off", + "type": "bool", + "defaultValue": false, + "writable": true, + "ioType": "digitalOutput" } ], "actionTypes": [ diff --git a/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts b/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts new file mode 100644 index 00000000..b1d0de84 --- /dev/null +++ b/shelly/translations/6162773b-0435-408c-a4f8-7860d38031a9-de.ts @@ -0,0 +1,2410 @@ + + + + + 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. + + + + Unexpected data received from Shelly device. + Unerwartete Daten vom Shelly Gerät empfangen. + + + + 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: 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 ({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 ({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 ParamType (ThingClass: shellyHT, EventType: batteryLevel, ID: {15914ad5-816b-471c-996b-00160100f2bc}) +---------- +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 ParamType (ThingClass: shellyHT, EventType: batteryCritical, ID: {56053726-92dc-4a80-b05e-a9a857c02bc1}) +---------- +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 + + + + + + + + + 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 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: 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 ({9ed997fa-1ec8-44d2-ac44-c99d4e259dae}) of ThingClass shellyMotion +---------- +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 ({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 ({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: shellyI3, EventType: longPressed, ID: {99683cf9-930e-4f10-94f2-73bb32092639}) +---------- +The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {146313a1-cfb6-4732-a1be-86ec575bcbdb}) +---------- +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}) + + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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: 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: 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 ({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 ({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: shellyEm3, EventType: currentPower, ID: {3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) +---------- +The name of the StateType ({3fc2a87f-cd33-4d1f-b7a6-75ffcb4e7cc4}) of ThingClass shellyEm3 + + + + + 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}) +---------- +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 ({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}) + + + + + + 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 + + + + + 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 ({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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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: 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}) +---------- +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 + + + + + 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}) +---------- +The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {29aee8f6-ed40-41c5-83c9-32c8aa89c7ea}) +---------- +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}) +---------- +The name of the ParamType (ThingClass: shellyButton1, Type: thing, ID: {bf9a47c4-0773-461e-af5b-c1bd90167646}) +---------- +The name of the ParamType (ThingClass: shellyDimmer, Type: thing, ID: {b181bf78-a19c-4f97-9264-f16fbac64ee2}) +---------- +The name of the ParamType (ThingClass: shellyRgbw2, Type: thing, ID: {1cc21f73-b93a-4044-924b-d290870d5226}) +---------- +The name of the ParamType (ThingClass: shellyPlug, Type: thing, ID: {e0141b39-fa76-49de-94c6-133cfe41257f}) +---------- +The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {738a6ca4-83f8-4a72-ba11-3a195f9177e3}) +---------- +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}) + + + + + + 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 + + + + + + + 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 + + + + + + + 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 + + + + + + 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 + + + + + + + + + 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 (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 + + + + + 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 + + + + + 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 + + + + + Power factor (Phase C) changed + The name of the EventType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 + + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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: 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 + + + + + + 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 ({162e7791-6890-4075-8e57-a4c15b9359bb}) of ThingClass shellyI3 +---------- +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 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: shellyEm3, Type: thing, ID: {a80894d2-dfba-4699-892d-081702b0f1f5}) +---------- +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}) +---------- +The name of the ParamType (ThingClass: shellyButton1, Type: thing, ID: {ef42a9f5-b6f4-4bb9-ad17-a9419be4a44e}) +---------- +The name of the ParamType (ThingClass: shellyDimmer, Type: thing, ID: {32e328be-2357-4d94-b438-3fe1ae94d97b}) +---------- +The name of the ParamType (ThingClass: shellyRgbw2, Type: thing, ID: {2b0cd1b2-1648-4e0d-85d2-34aa9b9b835e}) +---------- +The name of the ParamType (ThingClass: shellyPlug, Type: thing, ID: {bd5679fc-b761-4a56-a472-97717418c425}) +---------- +The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {d79de2fa-81dd-440f-80b8-f1f71149d1f2}) +---------- +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 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 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}) +---------- +The name of the ThingClass ({512c3c7d-d6a6-4d2a-bccd-83147e5f9a25}) + + + + + + Shelly connected light + The name of the ThingClass ({5ab05c19-71aa-4a85-a02f-a108f039a69a}) +---------- +The name of the ThingClass ({62a2d6b8-d70d-45fc-ba8c-1c680282a399}) + + + + + + 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 ({ecc61ce2-cb66-47ce-a65c-3b9e43ce6fdc}) of ThingClass shellyMotion +---------- +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 ({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 ({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 +---------- +The name of the ActionType ({f230d689-53f8-4542-9b20-9993b1c2eb27}) of ThingClass shellyEm3 +---------- +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}) + + + + + + Switch + The name of the ParamType (ThingClass: shellyI3, EventType: longPressed, ID: {866d6db6-e989-4b19-93c3-cc4aa7453c9e}) +---------- +The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {0ed31339-7457-443c-b6e3-3b8ce3fc2bd8}) + + + + + + Temperature + The name of the ParamType (ThingClass: shellyHT, EventType: temperature, ID: {507e7ca7-e1ab-4e7c-8097-4aedf924f797}) +---------- +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: shellyEm3, EventType: totalEnergyConsumed, ID: {67050a5a-cc78-4d11-a7d9-a9db528029ff}) +---------- +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 + + + + + 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 + + + + + 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 + + + + + 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 ({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 ({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}) +---------- +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 + + + + + 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 + + + + + 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 + + + + + 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 channel 1 on or off + The name of the ActionType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 + + + + + Turn channel 2 on or off + The name of the ActionType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 + + + + + + + + + + + + + + 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 ({639dda4c-e354-43ca-a785-fbe6806986e2}) of ThingClass shellyEm3 +---------- +The name of the ActionType ({e4a6ac87-31fb-4516-9cf3-f135621e902c}) of ThingClass shellyDimmer +---------- +The name of the ActionType ({14abcd30-9db2-4065-ae81-501a55fbb145}) of ThingClass shellyRgbw2 +---------- +The name of the ActionType ({d813b35f-e11e-4783-b3b3-dbecb956ffb5}) of ThingClass shellyPlug + + + + + + + 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 +---------- +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 ({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 +---------- +The name of the ActionType ({893031b8-9abd-4a83-8da4-ea57acb621ad}) of ThingClass shellyDimmer +---------- +The name of the ActionType ({abca86b9-74b0-4a17-a8ee-89811b5981a0}) of ThingClass shellyRgbw2 +---------- +The name of the ActionType ({140026a6-2d16-4a0c-9ba9-dea0740584fd}) of ThingClass shellyPlug +---------- +The name of the ActionType ({14a24bc3-8215-430e-b4ff-e25ccee29691}) of ThingClass shelly25 +---------- +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: 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: 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 ({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 ({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}) +---------- +The name of the ParamType (ThingClass: shellyEm3, Type: thing, ID: {21e11417-b862-44e6-828f-d65207328630}) +---------- +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}) +---------- +The name of the ParamType (ThingClass: shellyButton1, Type: thing, ID: {cc4a3365-b302-4782-9eec-ee6b66df8ed6}) +---------- +The name of the ParamType (ThingClass: shellyDimmer, Type: thing, ID: {2df0d509-d4b5-407a-835a-6b6392653e10}) +---------- +The name of the ParamType (ThingClass: shellyRgbw2, Type: thing, ID: {0b060c1a-3b9b-42d7-87f8-41b7b64a7eb8}) +---------- +The name of the ParamType (ThingClass: shellyPlug, Type: thing, ID: {42797a00-1591-4021-8f4c-2a170189911b}) +---------- +The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {4fb3c690-0183-4fc4-affa-1404788b2dcc}) +---------- +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}) + + + + + + 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 + + + + + Vibration detected + The name of the EventType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion + + + + + + 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 + + + + + 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 + + + + + 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 + + + + + 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 + + + + 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 23dd4fd7..d3a5196a 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,32 +43,32 @@ shelly - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + Available firmware version The name of the ParamType (ThingClass: shellyMotion, EventType: availableVersion, ID: {0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) ---------- @@ -124,19 +124,19 @@ The name of the StateType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass - - - - - - - - - - - - - + + + + + + + + + + + + + Available firmware version changed The name of the EventType ({0c9e8da4-1b1c-4047-8e9d-c5c580bcf43f}) of ThingClass shellyMotion ---------- @@ -166,8 +166,8 @@ The name of the EventType ({6e794011-d184-4ab2-9c3a-3b2205880cbc}) of ThingClass - - + + Battery critical changed The name of the EventType ({56053726-92dc-4a80-b05e-a9a857c02bc1}) of ThingClass shellyHT ---------- @@ -175,18 +175,18 @@ The name of the EventType ({18edddee-1b30-48e4-b233-1e3b68bd6ff1}) of ThingClass - + 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}) ---------- @@ -202,9 +202,9 @@ The name of the StateType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass - - - + + + Battery level changed The name of the EventType ({f6d89aa6-7dba-4bb0-89cf-36d85208933f}) of ThingClass shellyMotion ---------- @@ -214,12 +214,12 @@ The name of the EventType ({338355e5-9506-48b1-be86-757d69b34755}) of ThingClass - - - - - - + + + + + + Battery level critical The name of the ParamType (ThingClass: shellyMotion, EventType: batteryCritical, ID: {1d03941e-9c41-446b-b698-f8dff335bf11}) ---------- @@ -235,12 +235,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}) ---------- @@ -256,8 +256,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 ---------- @@ -265,26 +265,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}) ---------- @@ -304,15 +304,27 @@ The name of the ParamType (ThingClass: shellySwitch, Type: thing, ID: {be6bdd43- - + + 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}) ---------- @@ -322,15 +334,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}) ---------- @@ -340,54 +352,54 @@ 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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Connected The name of the ParamType (ThingClass: shellyRoller, EventType: connected, ID: {d446719d-628e-477d-882c-a84210c85869}) ---------- @@ -475,13 +487,13 @@ The name of the StateType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass - - - - - - - + + + + + + + Connected changed The name of the EventType ({9b17b10d-07ee-4a3d-813f-ef37e79e7241}) of ThingClass shellyI3 ---------- @@ -499,8 +511,8 @@ The name of the EventType ({e5d41e05-2296-457e-97d8-98a5ac0de615}) of ThingClass - - + + Connected device 1 The name of the ParamType (ThingClass: shelly25, Type: thing, ID: {dc8a02fb-baa4-40bf-9e00-684b17794287}) ---------- @@ -508,8 +520,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}) ---------- @@ -517,17 +529,17 @@ 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 ---------- @@ -553,9 +565,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 ---------- @@ -565,16 +577,16 @@ 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: shellyI3, EventType: longPressed, ID: {99683cf9-930e-4f10-94f2-73bb32092639}) ---------- @@ -586,59 +598,59 @@ 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}) + 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 - + 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}) + 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 - + 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}) + 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 - + 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: shellyMotion, EventType: currentVersion, ID: {e2d98172-5833-454b-9b4b-04693c6b9232}) ---------- @@ -658,10 +670,10 @@ The name of the StateType ({b17a7df2-952b-4cdd-8d28-a8e8582b49d4}) of ThingClass - - - - + + + + Current firmware version changed The name of the EventType ({e2d98172-5833-454b-9b4b-04693c6b9232}) of ThingClass shellyMotion ---------- @@ -673,8 +685,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}) ---------- @@ -682,28 +694,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}) ---------- @@ -739,10 +751,10 @@ The name of the StateType ({3ec03053-7cf5-44fb-ad92-041eed9edd9a}) of ThingClass - - - - + + + + Current power consumption changed The name of the EventType ({b3336ca6-1577-4230-8708-98875148606e}) of ThingClass shellyDimmer ---------- @@ -754,13 +766,13 @@ The name of the EventType ({3ec03053-7cf5-44fb-ad92-041eed9edd9a}) of ThingClass - - - - - - - + + + + + + + Default state The name of the ParamType (ThingClass: shellySocketPM, Type: settings, ID: {9880a51b-57da-4b65-a0ec-23eb0fdcb8ac}) ---------- @@ -778,8 +790,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}) ---------- @@ -787,30 +799,30 @@ 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: shellyI3, EventType: currentVersion, ID: {33e7d186-7c6b-4c4e-89c3-80362ef76615}) ---------- @@ -850,15 +862,15 @@ The name of the StateType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass - - - - - - - - - + + + + + + + + + Firmware version changed The name of the EventType ({33e7d186-7c6b-4c4e-89c3-80362ef76615}) of ThingClass shellyI3 ---------- @@ -880,8 +892,8 @@ The name of the EventType ({e033cca0-03fa-4b2e-9d7b-d4a2c8ffbb8c}) of ThingClass - - + + Humidity The name of the ParamType (ThingClass: shellyHT, EventType: humidity, ID: {18a3c71b-f4ef-45d8-a5db-58f533fb6e19}) ---------- @@ -889,14 +901,14 @@ 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 - - + + Input 1 The name of the ParamType (ThingClass: shellyI3, EventType: input1, ID: {61e98cc9-4449-4fb2-818e-692303244ce2}) ---------- @@ -904,14 +916,14 @@ The name of the StateType ({61e98cc9-4449-4fb2-818e-692303244ce2}) of ThingClass - + 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}) ---------- @@ -919,14 +931,14 @@ The name of the StateType ({04497ff2-a231-4d3d-adeb-66275a3b128b}) of ThingClass - + 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}) ---------- @@ -934,20 +946,20 @@ The name of the StateType ({5895fc2d-19a4-40c2-8522-7c4462e55a3e}) of ThingClass - + 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}) ---------- @@ -955,38 +967,38 @@ The name of the StateType ({a1e12487-ebab-4993-a075-78275aac7b0d}) of ThingClass - + 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: 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}) ---------- @@ -994,18 +1006,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}) ---------- @@ -1021,8 +1033,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}) ---------- @@ -1030,31 +1042,31 @@ 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: shellyMotion, Type: thing, ID: {b6a48fc4-5016-47d9-8454-c64686120ee1}) ---------- @@ -1084,8 +1096,8 @@ 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}) ---------- @@ -1093,9 +1105,9 @@ The name of the StateType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass - - - + + + Position The name of the ParamType (ThingClass: shellyRoller, ActionType: percentage, ID: {86270b8b-bce4-4d8a-9bc9-d72af36b991c}) ---------- @@ -1105,30 +1117,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}) ---------- @@ -1168,53 +1180,32 @@ 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}) + + + + Power channel 1 + The name of the ParamType (ThingClass: shelly25, ActionType: channel1, ID: {118d572c-cc12-4037-82d8-7d8f6fb4a364}) ---------- -The name of the StateType ({432ba180-936d-4700-907e-766264bfdd35}) of ThingClass shellyEm3 - - - - - 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}) +The name of the ParamType (ThingClass: shelly25, EventType: channel1, ID: {118d572c-cc12-4037-82d8-7d8f6fb4a364}) ---------- -The name of the StateType ({02edeedb-8a93-41f8-8bc5-09031b7d2d4d}) of ThingClass shellyEm3 +The name of the StateType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 - - 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}) + + + + Power channel 2 + The name of the ParamType (ThingClass: shelly25, ActionType: channel2, ID: {7952aec0-cd27-4ef9-87a6-c499564bc1d4}) ---------- -The name of the StateType ({82277a4e-49cc-45f4-8b29-470ce99333b6}) of ThingClass shellyEm3 +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 - - 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}) ---------- @@ -1222,11 +1213,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 ---------- @@ -1240,66 +1231,111 @@ 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}) + 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 - + 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}) + 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 - + 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}) + 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 - + Power factor (Phase C) changed The name of the EventType ({2e2c622f-1575-4d0b-a0c0-78bc03748c1e}) of ThingClass shellyEm3 - - - - - - - - - - - - - - - + + + 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 + + + + + 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 + + + + + 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 + + + + + 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: shellyEm3, ActionType: power, ID: {639dda4c-e354-43ca-a785-fbe6806986e2}) ---------- @@ -1333,14 +1369,14 @@ The name of the StateType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass - + Presence detected The name of the EventType ({45c0cc07-0e13-449c-86a7-ab65d5cdf637}) of ThingClass shellyMotion - - + + Pressed The name of the EventType ({41498655-1943-4b46-ac36-adea7bafab87}) of ThingClass shellySwitch ---------- @@ -1348,15 +1384,15 @@ The name of the EventType ({25955cb9-dc0e-48dc-91b1-ba27e30a3a3f}) of ThingClass - - - - - - - - - + + + + + + + + + Reboot The name of the ActionType ({162e7791-6890-4075-8e57-a4c15b9359bb}) of ThingClass shellyI3 ---------- @@ -1378,20 +1414,20 @@ 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 ({87772e43-1bf7-496b-b8be-46db39f71700}) of ThingClass shellyEm3 - - + + Set brightness The name of the ActionType ({f41c93ac-6911-45fc-9221-7dd26bf65fd0}) of ThingClass shellyDimmer ---------- @@ -1399,26 +1435,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}) ---------- @@ -1426,73 +1462,73 @@ 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 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}) ---------- @@ -1522,38 +1558,38 @@ 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 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}) ---------- @@ -1561,8 +1597,8 @@ The name of the ThingClass ({512c3c7d-d6a6-4d2a-bccd-83147e5f9a25}) - - + + Shelly connected light The name of the ThingClass ({5ab05c19-71aa-4a85-a02f-a108f039a69a}) ---------- @@ -1570,8 +1606,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}) ---------- @@ -1579,60 +1615,60 @@ 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}) ---------- @@ -1720,27 +1756,27 @@ 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 ---------- @@ -1786,10 +1822,10 @@ The name of the EventType ({74c631ed-fc3d-49e8-9dec-99cafa70c559}) of ThingClass - - - - + + + + Start firmware update The name of the ActionType ({17327674-f160-44e1-8a3d-fc2b6e1ee319}) of ThingClass shellyMotion ---------- @@ -1801,14 +1837,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}) - - + + Switch The name of the ParamType (ThingClass: shellyI3, EventType: longPressed, ID: {866d6db6-e989-4b19-93c3-cc4aa7453c9e}) ---------- @@ -1816,8 +1852,8 @@ The name of the ParamType (ThingClass: shellyI3, EventType: pressed, ID: {0ed313 - - + + Temperature The name of the ParamType (ThingClass: shellyHT, EventType: temperature, ID: {507e7ca7-e1ab-4e7c-8097-4aedf924f797}) ---------- @@ -1825,14 +1861,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}) ---------- @@ -1840,54 +1876,54 @@ 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}) + 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 - + 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}) + 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 - + 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}) + 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 - + 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 ---------- @@ -1897,10 +1933,10 @@ The name of the EventType ({23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) of ThingClass - - - - + + + + Total energy changed The name of the EventType ({a7d88654-7503-474d-9a7c-02150d61a6dc}) of ThingClass shellyRoller ---------- @@ -1912,20 +1948,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}) ---------- @@ -1957,8 +1993,8 @@ The name of the StateType ({23594959-1cd4-4e23-a7ae-b0b7fbd29daa}) of ThingClass - - + + Total returned energy The name of the ParamType (ThingClass: shellyEm3, EventType: totalEnergyProduced, ID: {088cb7df-9187-4206-ae5b-18a00e4f1969}) ---------- @@ -1966,67 +2002,79 @@ 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}) + 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 - + 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}) + 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 - + 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}) + 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 - + 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 channel 1 on or off + The name of the ActionType ({118d572c-cc12-4037-82d8-7d8f6fb4a364}) of ThingClass shelly25 + + + + + Turn channel 2 on or off + The name of the ActionType ({7952aec0-cd27-4ef9-87a6-c499564bc1d4}) of ThingClass shelly25 + + + + + + + + + + + + + Turn on or off The name of the ActionType ({d6adeab6-c91d-44ba-8d01-9b5b9b7368be}) of ThingClass shellySocketPM ---------- @@ -2050,9 +2098,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 ---------- @@ -2062,16 +2110,16 @@ 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 ---------- @@ -2095,9 +2143,9 @@ 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 ---------- @@ -2107,15 +2155,15 @@ The name of the EventType ({5b7eeb6c-6113-41f3-a61b-3076d087c9fe}) of ThingClass - - - - - - - - - + + + + + + + + + Update firmware The name of the ActionType ({1c677ecb-c54e-4c95-a3f7-e68fabeeda08}) of ThingClass shellyI3 ---------- @@ -2137,30 +2185,30 @@ 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}) ---------- @@ -2212,18 +2260,18 @@ The name of the StateType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass - - - - - - - - - - - - + + + + + + + + + + + + Update status changed The name of the EventType ({a604a66c-3143-45ce-a6e3-17a339f428ab}) of ThingClass shellyMotion ---------- @@ -2251,19 +2299,19 @@ The name of the EventType ({68bf3780-8f7f-4ecb-8498-830e257c192c}) of ThingClass - - - - - - - - - - - - - + + + + + + + + + + + + + Username (optional) The name of the ParamType (ThingClass: shellyMotion, Type: thing, ID: {ea210ec8-37ed-4479-9454-48cc06a1df88}) ---------- @@ -2293,8 +2341,8 @@ The name of the ParamType (ThingClass: shelly1, Type: thing, ID: {fa1aa0f6-93b2- - - + + Vibration The name of the ParamType (ThingClass: shellyMotion, EventType: vibration, ID: {76438c2d-9742-4680-9139-d4b4e988cfd2}) ---------- @@ -2302,58 +2350,58 @@ The name of the StateType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass - + Vibration detected The name of the EventType ({76438c2d-9742-4680-9139-d4b4e988cfd2}) of ThingClass shellyMotion - - + + Voltage (Phase A) - The name of the ParamType (ThingClass: shellyEm3, EventType: phaseAVoltage, ID: {5977ffab-cdcf-409c-940b-aa0a59de84a5}) + 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 - + 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}) + 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 - + 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}) + 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 - + 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