diff --git a/libnymea-core/devices/translator.cpp b/libnymea-core/devices/translator.cpp
index e9fed79f..16f2c6b1 100644
--- a/libnymea-core/devices/translator.cpp
+++ b/libnymea-core/devices/translator.cpp
@@ -55,6 +55,9 @@ QString Translator::translate(const PluginId &pluginId, const QString &string, c
QTranslator* translator = m_translatorContexts.value(plugin->pluginId()).translators.value(locale.name());
QString translatedString = translator->translate(plugin->pluginName().toUtf8(), string.toUtf8());
+ if (translatedString.isEmpty()) {
+ translatedString = translator->translate(plugin->metaObject()->className(), string.toUtf8());
+ }
return translatedString.isEmpty() ? string : translatedString;
}
diff --git a/nymea.pro b/nymea.pro
index 56e077f2..4d8ffca4 100644
--- a/nymea.pro
+++ b/nymea.pro
@@ -37,10 +37,10 @@ QMAKE_EXTRA_TARGETS += licensecheck
# Translations:
# make lupdate to update .ts files
CORE_TRANSLATIONS += $$files($${top_srcdir}/translations/*.ts, true)
-lupdate.commands = lupdate -recursive -no-obsolete $${top_srcdir} -ts $${CORE_TRANSLATIONS};
+lupdate.commands = lupdate -no-obsolete -recursive $${top_srcdir}/libnymea $${top_srcdir}/libnymea-core $${top_srcdir}/server $${top_srcdir}/libnymea $${top_srcdir}/tools -ts $${CORE_TRANSLATIONS};
lupdate.commands += make -C plugins/mock plugininfo;
PLUGIN_TRANSLATIONS += $$files($${top_srcdir}/plugins/mock/translations/*.ts, true)
-lupdate.commands += lupdate -recursive -no-obsolete $${top_builddir}/plugins/mock/ -ts $${PLUGIN_TRANSLATIONS};
+lupdate.commands += lupdate -no-obsolete -recursive $${top_srcdir}/plugins/mock/ $${top_builddir}/plugins/mock/ -ts $${PLUGIN_TRANSLATIONS};
lupdate.depends = FORCE qmake_all
TRANSLATIONS = $${CORE_TRANSLATIONS} $${PLUGIN_TRANSLATIONS}
diff --git a/plugins/mock/devicepluginmock.cpp b/plugins/mock/devicepluginmock.cpp
index a82d0ff2..d1eb5a08 100644
--- a/plugins/mock/devicepluginmock.cpp
+++ b/plugins/mock/devicepluginmock.cpp
@@ -278,19 +278,21 @@ void DevicePluginMock::startMonitoringAutoDevices()
void DevicePluginMock::startPairing(DevicePairingInfo *info)
{
if (info->deviceClassId() == mockPushButtonDeviceClassId) {
- qCDebug(dcMockDevice) << QString(tr("Push button. Pressing the button in 3 seconds."));
+ qCDebug(dcMockDevice) << "Push button. Pressing the button in 3 seconds.";
info->finish(Device::DeviceErrorNoError, QT_TR_NOOP("Wait 3 second before you continue, the push button will be pressed automatically."));
+ m_pushbuttonPressed = false;
+ QTimer::singleShot(3000, this, SLOT(onPushButtonPressed()));
return;
}
if (info->deviceClassId() == mockDisplayPinDeviceClassId) {
- qCDebug(dcMockDevice) << QString(tr("Display pin!! The pin is 243681"));
+ qCDebug(dcMockDevice) << "Display pin!! The pin is 243681";
info->finish(Device::DeviceErrorNoError, QT_TR_NOOP("Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681."));
return;
}
if (info->deviceClassId() == mockUserAndPassDeviceClassId) {
- qCDebug(dcMockDevice) << QString(tr("User and password. Login is \"user\" and \"password\"."));
+ qCDebug(dcMockDevice) << "User and password. Login is \"user\" and \"password\".";
info->finish(Device::DeviceErrorNoError, QT_TR_NOOP("Please enter login credentials for the mock device (\"user\" and \"password\")."));
return;
}
@@ -865,10 +867,6 @@ void DevicePluginMock::generateDiscoveredPushButtonDevices(DeviceDiscoveryInfo *
info->addDeviceDescriptor(d2);
}
info->finish(Device::DeviceErrorNoError, QT_TR_NOOP("This device will simulate a push button press in 3 seconds."));
-
- m_pushbuttonPressed = false;
- QTimer::singleShot(3000, this, SLOT(onPushButtonPressed()));
- qCDebug(dcMockDevice) << "Start PushButton timer (will be pressed in 3 second)";
}
void DevicePluginMock::generateDiscoveredDisplayPinDevices(DeviceDiscoveryInfo *info)
diff --git a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de_DE.ts b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de_DE.ts
index e296a7fa..436283c6 100644
--- a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de_DE.ts
+++ b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de_DE.ts
@@ -4,52 +4,108 @@
DevicePluginMock
- Display pin!! The pin is 243681
-
+ This mock device is intentionally broken.
+ Dieses Mock Gerät ist absichtlich kaputt.
+
+
+ Failed to open HTTP port. Port in use?
+ Fehler beim Öffnen des HTTP Ports. Wird der Port bereits benutzt?
+
+
+ Wait 3 second before you continue, the push button will be pressed automatically.
+ Warte 3 Sekunden bevor du forfährst, der Push Button wird automatisch gedrückt.
+
+
+ Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
+ Bitte gib das die PIN ein welche normalerweise am Gerät angezeigt wird. Für das Mock Gerät ist die PIN 243681.
+
+
+ Please enter login credentials for the mock device ("user" and "password").
+ Bitte gib die Logindaten für das Mock Gerät ein ("user" und "password").
+
+
+ The push button has not been pressed.
+ Der Push button wirde nicht gedrückt.
+
+
+ Invalid PIN!
+ Ungültige PIN!
+
+
+ Wrong username or password
+ Falscher Benutzername oder Passwort
+
+
+ This mock action is intentionally broken.
+ Diese Mock-Aktion ist absichtlich kaputt.
+
+
+ This device will simulate a push button press in 3 seconds.
+ Dieses Gerät wird in 3 Sekunden ein Drücken des Push-Buttons simulieren.mockDeviceMock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
+ The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
+----------
+The name of the plugin mockDevice (727a4a9a-c187-446f-aadf-f1b2220607d1)
+ Mock GeräteconfigParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
+ The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
+----------
+The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: e1f72121-a426-45e2-b475-8262b5cdf103)
+ configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
+ The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
+----------
+The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: c75723b6-ea4f-4982-9751-6c5e39c88145)
+ Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
+ The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
+----------
+The name of the DeviceClass (753f0d32-0468-4d08-82ed-1964aab03298)
+ Mock Geräthttp portThe name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
+The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
+----------
+The name of the ParamType (DeviceClass: mock, Type: device, ID: d4f06047-125e-4479-9810-b54c189917f5)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: d4f06047-125e-4479-9810-b54c189917f5)
+ HTTP PortasyncThe name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
+The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
+----------
+The name of the ParamType (DeviceClass: mock, Type: device, ID: f2977061-4dd0-4ef5-85aa-3b7134743be3)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: f2977061-4dd0-4ef5-85aa-3b7134743be3)
+ asynchronbrokenThe name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
+The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
+----------
+The name of the ParamType (DeviceClass: mock, Type: device, ID: ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4)
+ kaputtresultCount
@@ -57,15 +113,25 @@ The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-4
----------
The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
+The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
+----------
+The name of the ParamType (DeviceClass: mock, Type: discovery, ID: d222adb4-2f9c-4c3f-8655-76400d0fb6ce)
+----------
+The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: d222adb4-2f9c-4c3f-8655-76400d0fb6ce)
+----------
+The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: d222adb4-2f9c-4c3f-8655-76400d0fb6ce)
+ Anzahl ErgebnisseDummy int state changedThe name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
+The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83)
+----------
+The name of the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83)
+ Simulierter Integer Zustand geändertDummy int state
@@ -75,15 +141,23 @@ The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
+The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83
+ Simulierter Integer ZustandDummy bool state changedThe name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
+The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: bool, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310)
+----------
+The name of the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: boolValue, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310)
+ Simulierter boolscher Zustand geändertDummy bool state
@@ -93,20 +167,28 @@ The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
+The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: bool, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: boolValue, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310
+ Simulierter boolscher ZustandDummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
+ The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: double, ID: 7cac53ee-7048-4dc9-b000-7b585390f34c)
+ Simulierter Gleitkommazahl-Zustand geändertDummy double stateThe name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
+The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: double, ID: 7cac53ee-7048-4dc9-b000-7b585390f34c
+ Simulierter Gleitkommazahl-Zustandbattery level
@@ -114,8 +196,12 @@ The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClas
----------
The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
+The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: batteryLevel, ID: 6c8ab9a6-0164-4795-b829-f4394fe4edc4)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: batteryLevel, ID: 6c8ab9a6-0164-4795-b829-f4394fe4edc4
+ Batterieladungbattery level critical
@@ -123,13 +209,19 @@ The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClas
----------
The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
+The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: batteryCritical, ID: 580bc611-1a55-41f3-996f-8d3ccf543db3)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: batteryCritical, ID: 580bc611-1a55-41f3-996f-8d3ccf543db3
+ Batterieladung kritischpowered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
+ The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84)
+ Eingeschaltet geändertpowered
@@ -137,105 +229,159 @@ The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
+The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84)
+ Eingeschaltetset power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
+ The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+----------
+The name of the autocreated ActionType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84)
+ Ein-/AusschaltenMock Action 1 (with params)The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
+The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
+----------
+The name of the ActionType dea0f4e1-65e3-4981-8eaa-2701c53a9185 of deviceClass mock
+----------
+The name of the ActionType dea0f4e1-65e3-4981-8eaa-2701c53a9185 of deviceClass mockDeviceAuto
+ Mock Aktion 1 (mit Parameter)mockActionParam1The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
+----------
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: a2d3a256-a551-4712-a65b-ecd5a436a1cb)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: a2d3a256-a551-4712-a65b-ecd5a436a1cb)
+ mockAktionParameter1mockActionParam2The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
+----------
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: 304a4899-18be-4e3b-94f4-d03be52f3233)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: 304a4899-18be-4e3b-94f4-d03be52f3233)
+ mockAktionParameter2Mock Action 2 (without params)The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
+The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
+----------
+The name of the ActionType defd3ed6-1a0d-400b-8879-a0202cf39935 of deviceClass mock
+----------
+The name of the ActionType defd3ed6-1a0d-400b-8879-a0202cf39935 of deviceClass mockDeviceAuto
+ Mock Aktion 2 (ohne Parameter)Mock Action 3 (async)The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
+The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
+----------
+The name of the ActionType fbae06d3-7666-483e-a39e-ec50fe89054e of deviceClass mock
+----------
+The name of the ActionType fbae06d3-7666-483e-a39e-ec50fe89054e of deviceClass mockDeviceAuto
+ Mock Aktion (asynchron)Mock Action 4 (broken)The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
+The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
+----------
+The name of the ActionType df3cf33d-26d5-4577-9132-9823bd33fad0 of deviceClass mock
+----------
+The name of the ActionType df3cf33d-26d5-4577-9132-9823bd33fad0 of deviceClass mockDeviceAuto
+ Mock Aktion 4 (kaputt)Mock Action 5 (async, broken)The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
+The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
+----------
+The name of the ActionType bfe89a1d-3497-4121-8318-e77c37537219 of deviceClass mock
+----------
+The name of the ActionType bfe89a1d-3497-4121-8318-e77c37537219 of deviceClass mockDeviceAuto
+ Mock Aktion 5 (asynchron, kaputt)Mock Event 1The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
+The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
+----------
+The name of the EventType 45bf3752-0fc6-46b9-89fd-ffd878b5b22b of deviceClass mock
+----------
+The name of the EventType 45bf3752-0fc6-46b9-89fd-ffd878b5b22b of deviceClass mockDeviceAuto
+ Mock Ereignis 1Mock Event 2The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
+The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
+----------
+The name of the EventType 863d5920-b1cf-4eb9-88bd-8f7b8583b1cf of deviceClass mock
+----------
+The name of the EventType 863d5920-b1cf-4eb9-88bd-8f7b8583b1cf of deviceClass mockDeviceAuto
+ Mock Ereignis 2mockParamIntThe name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
+The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
+----------
+The name of the ParamType (DeviceClass: mock, EventType: mockEvent2, ID: 0550e16d-60b9-4ba5-83f4-4d3cee656121)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: 0550e16d-60b9-4ba5-83f4-4d3cee656121)
+ mockParameterGanzzahlMock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
+ The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
+----------
+The name of the DeviceClass (ab4257b3-7548-47ee-9bd4-7dc3004fd197)Mock Gerät (Automatisch erzeugt)Wait 3 second before you continue, the push button will be pressed automatically.The pairing info of deviceClass mockPushButton
-
+ Warte 3 Sekunden bevor Du fortfährst, der Push-Button wird automatisch gedrückt.Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
+ The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
+----------
+The name of the DeviceClass (9e03144c-e436-4eea-82d9-ccb33ef778db)
+ Mock Gerät (Push-Button)color changedThe name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
+The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+ Farbe geändertcolor
@@ -249,22 +395,38 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
+The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+ FarbeSet colorThe name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
+The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+ Setze Farbepercentage changedThe name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
+The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+ Prozent geändertpercentage
@@ -278,22 +440,38 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage,
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
+The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+ ProzentSet percentageThe name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
+The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+ Setze Prozentallowed values changedThe name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
+The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+ Mögliche Werte geändertallowed values
@@ -307,22 +485,38 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValue
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
+The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+ Mögliche WerteSet allowed valuesThe name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
+The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+ Mögliche Werte setzendouble value changedThe name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
+The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+ Gleitkommazahl geändertdouble value
@@ -336,15 +530,27 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID:
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
+The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+ GleitkommazahlSet double valueThe name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
+The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+ Setze Gleitkommazahlbool value changed
@@ -354,8 +560,16 @@ The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClas
----------
The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
+The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated EventType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+----------
+The name of the autocreated EventType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+ Boolscher Wert geändertbool value
@@ -381,8 +595,24 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
+The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+ Boolscher WertSet bool value
@@ -392,107 +622,153 @@ The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceCla
----------
The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
+The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated ActionType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+----------
+The name of the autocreated ActionType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+ Setze boolschen WertTimeout actionThe name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
+The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
+----------
+The name of the ActionType 54646e7c-bc54-4895-81a2-590d72d120f9 of deviceClass mockPushButton
+----------
+The name of the ActionType 54646e7c-bc54-4895-81a2-590d72d120f9 of deviceClass mockDisplayPin
+ Timeout AktionPlease enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.The pairing info of deviceClass mockDisplayPin
-
+ Bitte gib die PIN ein welche normalerweise am Gerät angezeigt wird. Für dieses Mock Gerät ist die PIN 243681.Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
+ The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
+----------
+The name of the DeviceClass (296f1fd4-e893-46b2-8a42-50d1bceb8730)
+ Mock Gerät (PIN anzeigen)pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
+ The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
+----------
+The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: da820e07-22dc-4173-9c07-2f49a4e265f9)
+ PINMock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
+ The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
+----------
+The name of the DeviceClass (a71fbde9-9a38-4bf8-beab-c8aade2608ba)
+ Mock Gerät (Elternteil)Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
+ The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
+----------
+The name of the DeviceClass (40893c9f-bc47-40c1-8bf7-b390c7c1b4fc)
+ Mock Gerät (Kind)Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
+ The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
+----------
+The name of the DeviceClass (515ffdf1-55e5-498d-9abc-4e2fe768f3a9)
+ Mock Gerät (Eingabetypen)Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: e6acf0c7-4b8e-4296-ac62-855d20deb816)
+ TextzeileText area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 716f0994-bc01-42b0-b64d-59236f7320d2)
+ TextfeldPassword text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: e5c0d14b-c9f1-4aca-a56e-85bfa6977150)
+ Passwort TextSearch text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 22add8c9-ee4f-43ad-8931-58e999313ac3)
+ SuchtextMail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: a8494faf-3a0f-4cf3-84b7-4b39148a838d)
+ E-Mail adresseIPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 9e5f86a0-4bb3-4892-bff8-3fc4032af6e2)
+ IPv4 AdresseIPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 43bf3832-dd48-4090-a836-656e8b60216e)
+ IPv6 AdresseURL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: fa67229f-fcef-496f-b671-59a4b48f3ab5)
+ URLMac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: e93db587-7919-48f3-8c88-1651de63c765)
+ MAC AdresseBool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
+ The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: bool, ID: 3bad3a09-5826-4ed7-a832-10e3e2ee2a7d)
+ Boolscher Wert geändertBoolThe name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
+The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: bool, ID: 3bad3a09-5826-4ed7-a832-10e3e2ee2a7d
+ Boolscher WertWritable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
+ The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c)
+ Schreibbarer Boolscher Wert geändertWritable Bool
@@ -500,30 +776,42 @@ The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
+The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c)
+ Schreibbarer boolscher WertSet Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
+ The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c)
+ Setze schreibbaren boolschen WertInt changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
+ The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: int, ID: d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb)
+ Ganzzahl geändertIntThe name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
+The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: int, ID: d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb
+ GanzzahlWritable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
+ The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7)
+ Schreibbare Ganzzahl geändertWritable Int
@@ -531,18 +819,26 @@ The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
+The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7)
+ Schreibbare GanzzahlSet Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
+ The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7)
+ Setze schreibbare GanzzahlWritable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
+ The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87)
+ Schreibbare Ganzzahl (min/max) geändertWritable Int (min/max)
@@ -550,29 +846,41 @@ The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
+The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87)
+ Schreibbare Ganzzahl (min/max)Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
+ The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87)
+ Setze schreibbare Ganzzahl (min/max)UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+ The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: uint, ID: 19e74fcc-bfd5-491f-8eb6-af128e8f1162)UIntThe name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: uint, ID: 19e74fcc-bfd5-491f-8eb6-af128e8f1162
Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+ The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58)
@@ -581,17 +889,25 @@ The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58)
Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+ The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58)Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+ The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751)
@@ -600,29 +916,41 @@ The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751)
Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+ The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751)Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+ The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: double, ID: f7d2063d-959e-46ac-8568-8b99722d3b22)DoubleThe name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: double, ID: f7d2063d-959e-46ac-8568-8b99722d3b22
Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+ The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170)
@@ -631,17 +959,25 @@ The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170)
Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+ The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170)Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+ The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136)
@@ -650,29 +986,41 @@ The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136)
Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+ The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136)String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+ The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: string, ID: 27f69ca9-a321-40ff-bfee-4b0272a671b4)StringThe name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: string, ID: 27f69ca9-a321-40ff-bfee-4b0272a671b4
Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+ The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38)
@@ -681,17 +1029,25 @@ The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38)
Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+ The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38)Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+ The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639)
@@ -700,29 +1056,41 @@ The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639)
Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+ The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639)Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+ The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: color, ID: 4507d5c6-b692-4bd6-87f2-00364bc0cb4d)ColorThe name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: color, ID: 4507d5c6-b692-4bd6-87f2-00364bc0cb4d
Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+ The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c)
@@ -731,29 +1099,41 @@ The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c)
Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+ The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c)Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+ The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: time, ID: 8250c71e-59bc-41ab-b576-99fcfc34e8d1)TimeThe name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: time, ID: 8250c71e-59bc-41ab-b576-99fcfc34e8d1
Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+ The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4)
@@ -762,29 +1142,41 @@ The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4)
Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+ The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4)Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+ The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: timestampInt, ID: 2c91b5ef-c2d1-4367-bc65-5a13abf69641)Timestamp (Int)The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: timestampInt, ID: 2c91b5ef-c2d1-4367-bc65-5a13abf69641
Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+ The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2)
@@ -793,29 +1185,41 @@ The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2)
Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+ The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2)Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+ The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: timestampUInt, ID: 6c9a96e8-0d48-4f42-8967-848358fd7f79)Timestamp (UInt)The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: timestampUInt, ID: 6c9a96e8-0d48-4f42-8967-848358fd7f79
Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+ The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee)
@@ -824,22 +1228,25 @@ The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee)
Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+ The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee)nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
+ The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
+----------
+The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
@@ -847,10 +1254,30 @@ The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClas
The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
+
+ Mock Device (Google OAuth)
+ The name of the DeviceClass ({805d1692-7bd0-449a-9d5c-43a332ff58f4})
+
+
+
+ Mock Device (Sonos OAuth)
+ The name of the DeviceClass ({783c615b-7bd6-49a4-98b0-8d1deb3c7156})
+
+
+
+ Mock Device (User & Password)
+ The name of the DeviceClass ({6fe07a77-9c07-4736-81e2-d504314bbcb9})
+
+ Remove from favoritesThe name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
+
+ Setting 1
+ The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
+
+
diff --git a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts
index 98c36bd3..051aa98a 100644
--- a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts
+++ b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts
@@ -4,7 +4,43 @@
DevicePluginMock
- Display pin!! The pin is 243681
+ This mock device is intentionally broken.
+
+
+
+ Failed to open HTTP port. Port in use?
+
+
+
+ Wait 3 second before you continue, the push button will be pressed automatically.
+
+
+
+ Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
+
+
+
+ Please enter login credentials for the mock device ("user" and "password").
+
+
+
+ The push button has not been pressed.
+
+
+
+ Invalid PIN!
+
+
+
+ Wrong username or password
+
+
+
+ This mock action is intentionally broken.
+
+
+
+ This device will simulate a push button press in 3 seconds.
@@ -12,43 +48,63 @@
mockDeviceMock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
+ The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
+----------
+The name of the plugin mockDevice (727a4a9a-c187-446f-aadf-f1b2220607d1)configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
+ The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
+----------
+The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: e1f72121-a426-45e2-b475-8262b5cdf103)configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
+ The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
+----------
+The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: c75723b6-ea4f-4982-9751-6c5e39c88145)Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
+ The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
+----------
+The name of the DeviceClass (753f0d32-0468-4d08-82ed-1964aab03298)http portThe name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
+The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
+----------
+The name of the ParamType (DeviceClass: mock, Type: device, ID: d4f06047-125e-4479-9810-b54c189917f5)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: d4f06047-125e-4479-9810-b54c189917f5)
asyncThe name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
+The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
+----------
+The name of the ParamType (DeviceClass: mock, Type: device, ID: f2977061-4dd0-4ef5-85aa-3b7134743be3)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: f2977061-4dd0-4ef5-85aa-3b7134743be3)
brokenThe name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
+The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
+----------
+The name of the ParamType (DeviceClass: mock, Type: device, ID: ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4)
@@ -57,14 +113,24 @@ The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-4
----------
The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
+The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
+----------
+The name of the ParamType (DeviceClass: mock, Type: discovery, ID: d222adb4-2f9c-4c3f-8655-76400d0fb6ce)
+----------
+The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: d222adb4-2f9c-4c3f-8655-76400d0fb6ce)
+----------
+The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: d222adb4-2f9c-4c3f-8655-76400d0fb6ce)
Dummy int state changedThe name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
+The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83)
+----------
+The name of the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83)
@@ -75,14 +141,22 @@ The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
+The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: int, ID: 80baec19-54de-4948-ac46-31eabfaceb83
Dummy bool state changedThe name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
+The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: bool, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310)
+----------
+The name of the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: boolValue, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310)
@@ -93,19 +167,27 @@ The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
+The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: bool, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDeviceAuto, StateType: boolValue, ID: 9dd6a97c-dfd1-43dc-acbd-367932742310
Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
+ The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: double, ID: 7cac53ee-7048-4dc9-b000-7b585390f34c)Dummy double stateThe name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
+The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: double, ID: 7cac53ee-7048-4dc9-b000-7b585390f34c
@@ -114,7 +196,11 @@ The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClas
----------
The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
+The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: batteryLevel, ID: 6c8ab9a6-0164-4795-b829-f4394fe4edc4)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: batteryLevel, ID: 6c8ab9a6-0164-4795-b829-f4394fe4edc4
@@ -123,12 +209,18 @@ The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClas
----------
The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
+The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: batteryCritical, ID: 580bc611-1a55-41f3-996f-8d3ccf543db3)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: batteryCritical, ID: 580bc611-1a55-41f3-996f-8d3ccf543db3
powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+ The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+----------
+The name of the autocreated EventType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84)
@@ -137,87 +229,135 @@ The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84)
set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+ The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
+----------
+The name of the autocreated ActionType (DeviceClass: mock, StateType: power, ID: 064aed0d-da4c-49d4-b236-60f97e98ff84)Mock Action 1 (with params)The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
+The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
+----------
+The name of the ActionType dea0f4e1-65e3-4981-8eaa-2701c53a9185 of deviceClass mock
+----------
+The name of the ActionType dea0f4e1-65e3-4981-8eaa-2701c53a9185 of deviceClass mockDeviceAuto
mockActionParam1The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
+----------
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: a2d3a256-a551-4712-a65b-ecd5a436a1cb)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: a2d3a256-a551-4712-a65b-ecd5a436a1cb)
mockActionParam2The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
+----------
+The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: 304a4899-18be-4e3b-94f4-d03be52f3233)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: 304a4899-18be-4e3b-94f4-d03be52f3233)
Mock Action 2 (without params)The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
+The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
+----------
+The name of the ActionType defd3ed6-1a0d-400b-8879-a0202cf39935 of deviceClass mock
+----------
+The name of the ActionType defd3ed6-1a0d-400b-8879-a0202cf39935 of deviceClass mockDeviceAuto
Mock Action 3 (async)The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
+The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
+----------
+The name of the ActionType fbae06d3-7666-483e-a39e-ec50fe89054e of deviceClass mock
+----------
+The name of the ActionType fbae06d3-7666-483e-a39e-ec50fe89054e of deviceClass mockDeviceAuto
Mock Action 4 (broken)The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
+The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
+----------
+The name of the ActionType df3cf33d-26d5-4577-9132-9823bd33fad0 of deviceClass mock
+----------
+The name of the ActionType df3cf33d-26d5-4577-9132-9823bd33fad0 of deviceClass mockDeviceAuto
Mock Action 5 (async, broken)The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
+The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
+----------
+The name of the ActionType bfe89a1d-3497-4121-8318-e77c37537219 of deviceClass mock
+----------
+The name of the ActionType bfe89a1d-3497-4121-8318-e77c37537219 of deviceClass mockDeviceAuto
Mock Event 1The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
+The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
+----------
+The name of the EventType 45bf3752-0fc6-46b9-89fd-ffd878b5b22b of deviceClass mock
+----------
+The name of the EventType 45bf3752-0fc6-46b9-89fd-ffd878b5b22b of deviceClass mockDeviceAuto
Mock Event 2The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
+The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
+----------
+The name of the EventType 863d5920-b1cf-4eb9-88bd-8f7b8583b1cf of deviceClass mock
+----------
+The name of the EventType 863d5920-b1cf-4eb9-88bd-8f7b8583b1cf of deviceClass mockDeviceAuto
mockParamIntThe name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
+The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
+----------
+The name of the ParamType (DeviceClass: mock, EventType: mockEvent2, ID: 0550e16d-60b9-4ba5-83f4-4d3cee656121)
+----------
+The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: 0550e16d-60b9-4ba5-83f4-4d3cee656121)
Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
+ The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
+----------
+The name of the DeviceClass (ab4257b3-7548-47ee-9bd4-7dc3004fd197)
@@ -227,14 +367,20 @@ The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-6
Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
+ The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
+----------
+The name of the DeviceClass (9e03144c-e436-4eea-82d9-ccb33ef778db)color changedThe name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
@@ -249,21 +395,37 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
Set colorThe name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: color, ID: 20dc7c22-c50e-42db-837c-2bbced939f8e)
percentage changedThe name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
@@ -278,21 +440,37 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage,
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
Set percentageThe name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: percentage, ID: 72981c04-267a-4ba0-a59e-9921d2f3af9c)
allowed values changedThe name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
@@ -307,21 +485,37 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValue
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
Set allowed valuesThe name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: allowedValues, ID: 05f63f9c-f61e-4dcf-ad55-3f13fde2765b)
double value changedThe name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
@@ -336,14 +530,26 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID:
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
Set double valueThe name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: double, ID: 53cd7c55-49b7-441b-b970-9048f20f0e2c)
@@ -354,7 +560,15 @@ The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClas
----------
The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+----------
+The name of the autocreated EventType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated EventType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated EventType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+----------
+The name of the autocreated EventType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
@@ -381,7 +595,23 @@ The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e
----------
The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
@@ -392,14 +622,26 @@ The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceCla
----------
The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
+----------
+The name of the autocreated ActionType (DeviceClass: mockPushButton, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated ActionType (DeviceClass: mockDisplayPin, StateType: bool, ID: e680f7a4-b39e-46da-be41-fa3170fe3768)
+----------
+The name of the autocreated ActionType (DeviceClass: mockParent, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
+----------
+The name of the autocreated ActionType (DeviceClass: mockChild, StateType: boolValue, ID: d24ede5f-4064-4898-bb84-cfb533b1fbc0)
Timeout actionThe name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
+The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
+----------
+The name of the ActionType 54646e7c-bc54-4895-81a2-590d72d120f9 of deviceClass mockPushButton
+----------
+The name of the ActionType 54646e7c-bc54-4895-81a2-590d72d120f9 of deviceClass mockDisplayPin
@@ -409,89 +651,123 @@ The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceCla
Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
+ The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
+----------
+The name of the DeviceClass (296f1fd4-e893-46b2-8a42-50d1bceb8730)pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
+ The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
+----------
+The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: da820e07-22dc-4173-9c07-2f49a4e265f9)Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
+ The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
+----------
+The name of the DeviceClass (a71fbde9-9a38-4bf8-beab-c8aade2608ba)Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
+ The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
+----------
+The name of the DeviceClass (40893c9f-bc47-40c1-8bf7-b390c7c1b4fc)Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
+ The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
+----------
+The name of the DeviceClass (515ffdf1-55e5-498d-9abc-4e2fe768f3a9)Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: e6acf0c7-4b8e-4296-ac62-855d20deb816)Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 716f0994-bc01-42b0-b64d-59236f7320d2)Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: e5c0d14b-c9f1-4aca-a56e-85bfa6977150)Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 22add8c9-ee4f-43ad-8931-58e999313ac3)Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: a8494faf-3a0f-4cf3-84b7-4b39148a838d)IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 9e5f86a0-4bb3-4892-bff8-3fc4032af6e2)IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: 43bf3832-dd48-4090-a836-656e8b60216e)URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: fa67229f-fcef-496f-b671-59a4b48f3ab5)Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
+ The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
+----------
+The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: e93db587-7919-48f3-8c88-1651de63c765)Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
+ The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: bool, ID: 3bad3a09-5826-4ed7-a832-10e3e2ee2a7d)BoolThe name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
+The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: bool, ID: 3bad3a09-5826-4ed7-a832-10e3e2ee2a7d
Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+ The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c)
@@ -500,29 +776,41 @@ The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c)
Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+ The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableBool, ID: a7c11774-f31f-4d64-99d1-e0ae5fb35a5c)Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
+ The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: int, ID: d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb)IntThe name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
+The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: int, ID: d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb
Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+ The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7)
@@ -531,17 +819,25 @@ The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7)
Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+ The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableInt, ID: 857a8422-983c-47d6-a15f-d8450b3162f7)Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+ The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87)
@@ -550,29 +846,41 @@ The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87)
Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+ The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableIntMinMax, ID: 86a107bc-510a-4d38-bfeb-0a9c2b6d8d87)UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+ The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: uint, ID: 19e74fcc-bfd5-491f-8eb6-af128e8f1162)UIntThe name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: uint, ID: 19e74fcc-bfd5-491f-8eb6-af128e8f1162
Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+ The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58)
@@ -581,17 +889,25 @@ The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58)
Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+ The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUInt, ID: 563e9c4c-5198-400a-9f6c-358f4752af58)Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+ The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751)
@@ -600,29 +916,41 @@ The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751)
Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+ The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableUIntMinMax, ID: 79238998-eaab-4d71-b406-5d78f1749751)Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+ The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: double, ID: f7d2063d-959e-46ac-8568-8b99722d3b22)DoubleThe name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: double, ID: f7d2063d-959e-46ac-8568-8b99722d3b22
Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+ The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170)
@@ -631,17 +959,25 @@ The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170)
Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+ The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDouble, ID: 8e2eb91b-d60b-4461-9a50-d7b8ad263170)Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+ The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136)
@@ -650,29 +986,41 @@ The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136)
Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+ The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableDoubleMinMax, ID: 00d3425e-1da6-4748-8906-4555ceefb136)String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+ The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: string, ID: 27f69ca9-a321-40ff-bfee-4b0272a671b4)StringThe name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: string, ID: 27f69ca9-a321-40ff-bfee-4b0272a671b4
Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+ The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38)
@@ -681,17 +1029,25 @@ The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38)
Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+ The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableString, ID: ef511043-bd1a-4a5f-984c-222b7da43f38)Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+ The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639)
@@ -700,29 +1056,41 @@ The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639)
Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+ The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableStringSelection, ID: 209d7afc-6fe9-4fe9-939b-e472ea0ad639)Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+ The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: color, ID: 4507d5c6-b692-4bd6-87f2-00364bc0cb4d)ColorThe name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: color, ID: 4507d5c6-b692-4bd6-87f2-00364bc0cb4d
Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+ The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c)
@@ -731,29 +1099,41 @@ The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c)
Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+ The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableColor, ID: 455f4f68-3cb0-4e8a-a707-62e4a2a8035c)Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+ The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: time, ID: 8250c71e-59bc-41ab-b576-99fcfc34e8d1)TimeThe name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: time, ID: 8250c71e-59bc-41ab-b576-99fcfc34e8d1
Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+ The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4)
@@ -762,29 +1142,41 @@ The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4)
Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+ The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTime, ID: d64c8b3f-ca7d-47f6-b271-867ffd80a4d4)Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+ The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: timestampInt, ID: 2c91b5ef-c2d1-4367-bc65-5a13abf69641)Timestamp (Int)The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: timestampInt, ID: 2c91b5ef-c2d1-4367-bc65-5a13abf69641
Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+ The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2)
@@ -793,29 +1185,41 @@ The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2)
Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+ The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampInt, ID: 88b6746a-b009-4df6-8986-d7884ffd94b2)Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+ The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: timestampUInt, ID: 6c9a96e8-0d48-4f42-8967-848358fd7f79)Timestamp (UInt)The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: timestampUInt, ID: 6c9a96e8-0d48-4f42-8967-848358fd7f79
Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+ The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+----------
+The name of the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee)
@@ -824,22 +1228,25 @@ The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClas
----------
The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+----------
+The name of the ParamType for the autocreated EventType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee
+----------
+The name of the ParamType for the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee)
Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+ The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
+----------
+The name of the autocreated ActionType (DeviceClass: mockInputType, StateType: writableTimestampUInt, ID: 45d0069a-63ac-4265-8170-8152778608ee)nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
+ The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
+----------
+The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
@@ -847,10 +1254,30 @@ The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClas
The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
+
+ Mock Device (Google OAuth)
+ The name of the DeviceClass ({805d1692-7bd0-449a-9d5c-43a332ff58f4})
+
+
+
+ Mock Device (Sonos OAuth)
+ The name of the DeviceClass ({783c615b-7bd6-49a4-98b0-8d1deb3c7156})
+
+
+
+ Mock Device (User & Password)
+ The name of the DeviceClass ({6fe07a77-9c07-4736-81e2-d504314bbcb9})
+
+ Remove from favoritesThe name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
+
+ Setting 1
+ The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
+
+
diff --git a/translations/nymead-cs.ts b/translations/nymead-cs.ts
index 95e691e3..425af755 100644
--- a/translations/nymead-cs.ts
+++ b/translations/nymead-cs.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsCloud notifikace
-
+ User IDID uživatele
-
+ DeviceZařízení
-
+ TitleNázev
-
+ Message textText zprávy
-
+ Send notificationPoslat notifikaci
-
+ connectedpřipojeno
-
+ Connected changedPřipojeno změněno
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Zobrazit pin! Pin je 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Pokud je specifikováno, všechna rozhraní D-bus budou napojena k sekční sběrnici místo k systémové sběrnici.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-da.ts b/translations/nymead-da.ts
index 6df5b686..176cde95 100644
--- a/translations/nymead-da.ts
+++ b/translations/nymead-da.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsCloud-meddelelser
-
+ User IDBruger-id
-
+ DeviceEnhed
-
+ TitleTitel
-
+ Message textMeddelelsestekst
-
+ Send notificationSend meddelelse
-
+ connectedforbundet
-
+ Connected changedForbindelse ændret
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Vis pin!! Pin-koden er 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Hvis det specificeret, vil alle D-Bus grænseflader være bundet til session-bussen i stedet for system-bussen.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-de_DE.ts b/translations/nymead-de_DE.ts
index 0666d389..104d7253 100644
--- a/translations/nymead-de_DE.ts
+++ b/translations/nymead-de_DE.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsCloud Benachrichtigung
-
+ User IDBenutzer ID
-
+ DeviceGerät
-
+ TitleTitel
-
+ Message textNachrichtentext
-
+ Send notificationSende Benachrichtigung
-
+ connectedVerbunden
-
+ Connected changedVerbunden geändert
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- PIN anzeigen!! Der PIN ist 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Falls angegeben, werden alle D-Bus Schnittstellen auf dem Sitzungs-Bus anstatt auf dem System-Bus zur Verfügung gestellt.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-en_US.ts b/translations/nymead-en_US.ts
index f20e8402..1cd96c98 100644
--- a/translations/nymead-en_US.ts
+++ b/translations/nymead-en_US.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud Notifications
-
+ User ID
-
+ Device
-
+ Title
-
+ Message text
-
+ Send notification
-
+ connected
-
+ Connected changed
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
-
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
-
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-es.ts b/translations/nymead-es.ts
index da943a61..c1d4b8ad 100644
--- a/translations/nymead-es.ts
+++ b/translations/nymead-es.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsNotificaciones en la nube
-
+ User IDIdentificación de usuario
-
+ DeviceDispositivo
-
+ TitleTítulo
-
+ Message textTexto de mensaje
-
+ Send notificationEnviar notificación
-
+ connectedconectado
-
+ Connected changedConexión modificada
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Mostrar pin El pin es 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Si se ha especificado, todas las interfaces D-Bus estarán conectadas a la sesión en lugar de al bus de sistema.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-fi.ts b/translations/nymead-fi.ts
index d7dcb785..dbe5a0e6 100644
--- a/translations/nymead-fi.ts
+++ b/translations/nymead-fi.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsPilvi-ilmoitukset
-
+ User IDKäyttäjätunnus
-
+ DeviceLaite
-
+ TitleOtsikko
-
+ Message textViestin teksti
-
+ Send notificationLähetä ilmoitus
-
+ connectedyhdistetty
-
+ Connected changedYhdistetty muutettiin
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Näytä PIN!! PIN on 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Jos määritetty, kaikki D-väylä-liittymät yhdistetään istuntoväylään järjestelmäväylän sijaan.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-fr.ts b/translations/nymead-fr.ts
index b0cbe2f0..b7ed01c7 100644
--- a/translations/nymead-fr.ts
+++ b/translations/nymead-fr.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsNotification de cloud
-
+ User IDUtilisateur
-
+ DeviceParamètres de l'appareil
-
+ TitleTitre
-
+ Message textTexte du message
-
+ Send notificationNotification d'envoi
-
+ connectedconnecté
-
+ Connected changedConnecté modifié
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Afficher le code Pin !! Le code pin est 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Si spécifié, toutes les interfaces D-Bus seront liées au bus de session au lieu du bus système.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-it.ts b/translations/nymead-it.ts
index c65eeaab..2010c095 100644
--- a/translations/nymead-it.ts
+++ b/translations/nymead-it.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsNotifiche cloud
-
+ User IDID utente
-
+ DeviceDispositivo
-
+ TitleTitolo
-
+ Message textTesto del messaggio
-
+ Send notificationInvia notifica
-
+ connectedconnesso
-
+ Connected changedConnesso modificato
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Visualizza pin!! Il pin è 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Se specificato, tutte le interfacce bus D saranno associate al bus di sessione anziché al bus di sistema.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-nl.ts b/translations/nymead-nl.ts
index 5f63bc63..4f528454 100644
--- a/translations/nymead-nl.ts
+++ b/translations/nymead-nl.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsCloud-berichten
-
+ User IDGebruikers-ID
-
+ DeviceApparaat
-
+ TitleTitel
-
+ Message textBerichttekst
-
+ Send notificationBericht versturen
-
+ connectedverbonden
-
+ Connected changedVerbonden gewijzigd
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Pin weergeven!!! De pin is 24361
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Indien gespecificeerd, worden alle D-businterfaces gebonden aan de sessiebus, en niet aan de systeembus.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea
diff --git a/translations/nymead-pt.ts b/translations/nymead-pt.ts
index 4f21869e..26c4c20b 100644
--- a/translations/nymead-pt.ts
+++ b/translations/nymead-pt.ts
@@ -4,1173 +4,47 @@
CloudNotifications
-
-
+
+ Cloud NotificationsNotificações de nuvem
-
+ User IDID de utilizador
-
+ DeviceDispositivo
-
+ TitleTítulo
-
+ Message textTexto de mensagem
-
+ Send notificationEnviar notificação
-
+ connectedligado
-
+ Connected changedLigado alterado
-
- DevicePluginMock
-
-
- Display pin!! The pin is 243681
- Visor pin!! O pin é 243681
-
-
-
- SimpleButton
-
-
-
- Simple button
- The name of the plugin SimpleButton (28c7b102-3ac8-41f6-8dc0-f4787222a186)
-----------
-The name of the DeviceClass (c16ba02d-c982-4b45-8ca2-1945d94d8e66)
-
-
-
-
- nymea
- The name of the vendor (2062d64d-3232-433c-88bc-0d33c0ba2ba6)
-
-
-
-
- press
- The name of the ActionType 64c4ced5-9a1a-4858-81dd-1b5c94dba495 of deviceClass simplebutton
-
-
-
-
- button pressed
- The name of the EventType f9652210-9aed-4f38-8c19-2fd54f703fbe of deviceClass simplebutton
-
-
-
-
- SimplePushButtonHandler
-
-
- If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.
- Se especificado, todas as interfaces do D-Bus serão ligadas ao barramento da sessão em vez do barramento do sistema.
-
-
-
- mockDevice
-
-
- Add to favorites
- The name of the Browser Item ActionType ({00b8f0a8-99ca-4aa4-833d-59eb8d4d6de3}) of DeviceClass mock
-
-
-
-
-
- Bool
- The name of the ParamType (DeviceClass: mockInputType, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d})
-----------
-The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
- Bool changed
- The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of DeviceClass mockInputType
-
-
-
-
-
- Color
- The name of the ParamType (DeviceClass: mockInputType, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d})
-----------
-The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
- Color changed
- The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of DeviceClass mockInputType
-
-
-
-
-
- Double
- The name of the ParamType (DeviceClass: mockInputType, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22})
-----------
-The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
- Double changed
- The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of DeviceClass mockInputType
-
-
-
-
-
-
-
- Dummy bool state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469})
-----------
-The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310})
-----------
-The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy bool state changed
- The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of DeviceClass mock
-
-
-
-
-
- Dummy double state
- The name of the ParamType (DeviceClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c})
-----------
-The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
- Dummy double state changed
- The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of DeviceClass mock
-
-
-
-
-
-
-
- Dummy int state
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c})
-----------
-The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the ParamType (DeviceClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83})
-----------
-The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
-
- Dummy int state changed
- The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of DeviceClass mock
-
-
-
-
- IPv4 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2})
-
-
-
-
- IPv6 address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {43bf3832-dd48-4090-a836-656e8b60216e})
-
-
-
-
-
- Int
- The name of the ParamType (DeviceClass: mockInputType, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb})
-----------
-The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Int changed
- The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of DeviceClass mockInputType
-
-
-
-
- Mac address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e93db587-7919-48f3-8c88-1651de63c765})
-
-
-
-
- Mail address
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {a8494faf-3a0f-4cf3-84b7-4b39148a838d})
-
-
-
-
-
- Mock Action 1 (with params)
- The name of the ActionType ({00000000-0000-0000-0000-000000000000}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({dea0f4e1-65e3-4981-8eaa-2701c53a9185}) of DeviceClass mock
-
-
-
-
-
- Mock Action 2 (without params)
- The name of the ActionType ({ef518d53-50e2-4ca5-a4b1-e9a8b9309d44}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({defd3ed6-1a0d-400b-8879-a0202cf39935}) of DeviceClass mock
-
-
-
-
-
- Mock Action 3 (async)
- The name of the ActionType ({5f27a9f2-59cd-4a15-98bd-6ed6e10bc6ed}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({fbae06d3-7666-483e-a39e-ec50fe89054e}) of DeviceClass mock
-
-
-
-
-
- Mock Action 4 (broken)
- The name of the ActionType ({58a61de4-472c-4775-8fe8-583a9c83fcf1}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({df3cf33d-26d5-4577-9132-9823bd33fad0}) of DeviceClass mock
-
-
-
-
-
- Mock Action 5 (async, broken)
- The name of the ActionType ({17ad52dd-ef2f-4947-9b73-5bf6e172a9d0}) of DeviceClass mockDeviceAuto
-----------
-The name of the ActionType ({bfe89a1d-3497-4121-8318-e77c37537219}) of DeviceClass mock
-
-
-
-
- Mock Device
- The name of the DeviceClass ({753f0d32-0468-4d08-82ed-1964aab03298})
-
-
-
-
- Mock Device (Auto created)
- The name of the DeviceClass ({ab4257b3-7548-47ee-9bd4-7dc3004fd197})
-
-
-
-
- Mock Device (Child)
- The name of the DeviceClass ({40893c9f-bc47-40c1-8bf7-b390c7c1b4fc})
-
-
-
-
- Mock Device (Display Pin)
- The name of the DeviceClass ({296f1fd4-e893-46b2-8a42-50d1bceb8730})
-
-
-
-
- Mock Device (InputTypes)
- The name of the DeviceClass ({515ffdf1-55e5-498d-9abc-4e2fe768f3a9})
-
-
-
-
- Mock Device (Parent)
- The name of the DeviceClass ({a71fbde9-9a38-4bf8-beab-c8aade2608ba})
-
-
-
-
- Mock Device (Push Button)
- The name of the DeviceClass ({9e03144c-e436-4eea-82d9-ccb33ef778db})
-
-
-
-
- Mock Devices
- The name of the plugin mockDevice ({727a4a9a-c187-446f-aadf-f1b2220607d1})
-
-
-
-
-
- Mock Event 1
- The name of the EventType ({00f81fca-26f1-4a84-aa2b-4c6a3d953ec6}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({45bf3752-0fc6-46b9-89fd-ffd878b5b22b}) of DeviceClass mock
-
-
-
-
-
- Mock Event 2
- The name of the EventType ({6e27922d-aa9d-44d1-b9b4-9faf31b6bd97}) of DeviceClass mockDeviceAuto
-----------
-The name of the EventType ({863d5920-b1cf-4eb9-88bd-8f7b8583b1cf}) of DeviceClass mock
-
-
-
-
- Password text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e5c0d14b-c9f1-4aca-a56e-85bfa6977150})
-
-
-
-
- Please enter the secret which normaly will be displayed on the device. For the mockdevice the pin is 243681.
- The pairing info of deviceClass mockDisplayPin
-
-
-
-
- Remove from favorites
- The name of the Browser Item ActionType ({da6faef8-2816-430e-93bb-57e8f9582d29}) of DeviceClass mock
-
-
-
-
- Search text
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {22add8c9-ee4f-43ad-8931-58e999313ac3})
-
-
-
-
- Set Writable Bool
- The name of the ActionType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Color
- The name of the ActionType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double
- The name of the ActionType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Double (min/max)
- The name of the ActionType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int
- The name of the ActionType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Int (min/max)
- The name of the ActionType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String
- The name of the ActionType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
- Set Writable String (selection)
- The name of the ActionType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Time
- The name of the ActionType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (Int)
- The name of the ActionType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Set Writable Timestamp (UInt)
- The name of the ActionType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt
- The name of the ActionType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
- Set Writable UInt (min/max)
- The name of the ActionType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
-
- Set allowed values
- The name of the ActionType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- Set bool value
- The name of the ActionType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ActionType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ActionType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- Set color
- The name of the ActionType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- Set double value
- The name of the ActionType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- Set percentage
- The name of the ActionType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- Setting 1
- The name of the ParamType (DeviceClass: mock, Type: settings, ID: {367f7ba4-5039-47be-abd8-59cc8eaf4b9a})
-
-
-
-
-
- String
- The name of the ParamType (DeviceClass: mockInputType, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4})
-----------
-The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- String changed
- The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of DeviceClass mockInputType
-
-
-
-
- Text area
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {716f0994-bc01-42b0-b64d-59236f7320d2})
-
-
-
-
- Text line
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {e6acf0c7-4b8e-4296-ac62-855d20deb816})
-
-
-
-
-
- Time
- The name of the ParamType (DeviceClass: mockInputType, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1})
-----------
-The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
- Time changed
- The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of DeviceClass mockInputType
-
-
-
-
-
- Timeout action
- The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of DeviceClass mockDisplayPin
-----------
-The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of DeviceClass mockPushButton
-
-
-
-
-
- Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641})
-----------
-The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (Int) changed
- The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of DeviceClass mockInputType
-
-
-
-
-
- Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79})
-----------
-The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
- Timestamp (UInt) changed
- The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of DeviceClass mockInputType
-
-
-
-
-
- UInt
- The name of the ParamType (DeviceClass: mockInputType, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162})
-----------
-The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- UInt changed
- The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of DeviceClass mockInputType
-
-
-
-
- URL
- The name of the ParamType (DeviceClass: mockInputType, Type: device, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5})
-
-
-
-
- Wait 3 second before you continue, the push button will be pressed automatically.
- The pairing info of deviceClass mockPushButton
-
-
-
-
-
-
- Writable Bool
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c})
-----------
-The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
- Writable Bool changed
- The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Color
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c})
-----------
-The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
- Writable Color changed
- The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170})
-----------
-The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Double (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136})
-----------
-The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double (min/max) changed
- The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of DeviceClass mockInputType
-
-
-
-
- Writable Double changed
- The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7})
-----------
-The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Int (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87})
-----------
-The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int (min/max) changed
- The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of DeviceClass mockInputType
-
-
-
-
- Writable Int changed
- The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38})
-----------
-The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable String (selection)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639})
-----------
-The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String (selection) changed
- The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of DeviceClass mockInputType
-
-
-
-
- Writable String changed
- The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Time
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4})
-----------
-The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
- Writable Time changed
- The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (Int)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2})
-----------
-The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (Int) changed
- The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable Timestamp (UInt)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee})
-----------
-The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
- Writable Timestamp (UInt) changed
- The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58})
-----------
-The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
- Writable UInt (min/max)
- The name of the ParamType (DeviceClass: mockInputType, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the ParamType (DeviceClass: mockInputType, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751})
-----------
-The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt (min/max) changed
- The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of DeviceClass mockInputType
-
-
-
-
- Writable UInt changed
- The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of DeviceClass mockInputType
-
-
-
-
-
-
-
-
-
- allowed values
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143})
-----------
-The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b})
-----------
-The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- allowed values changed
- The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of DeviceClass mockPushButton
-
-
-
-
-
- async
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3})
-
-
-
-
-
-
- battery level
- The name of the ParamType (DeviceClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4})
-----------
-The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-----------
-The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of DeviceClass mock
-
-
-
-
-
-
- battery level critical
- The name of the ParamType (DeviceClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3})
-----------
-The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-----------
-The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of DeviceClass mock
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool value
- The name of the ParamType (DeviceClass: mockChild, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the ParamType (DeviceClass: mockChild, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568})
-----------
-The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the ParamType (DeviceClass: mockParent, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the ParamType (DeviceClass: mockParent, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0})
-----------
-The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4})
-----------
-The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768})
-----------
-The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
-
-
- bool value changed
- The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of DeviceClass mockChild
-----------
-The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of DeviceClass mockParent
-----------
-The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of DeviceClass mockPushButton
-
-
-
-
-
- broken
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {66179395-ef7a-4013-9fc6-2084104eea09})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {ae8f8901-f2c1-42a5-8111-6d2fc8e4c1e4})
-
-
-
-
-
-
-
-
-
- color
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa})
-----------
-The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e})
-----------
-The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
-
- color changed
- The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of DeviceClass mockPushButton
-
-
-
-
- configParamBool
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145})
-
-
-
-
- configParamInt
- The name of the ParamType (DeviceClass: mockDevice, Type: plugin, ID: {e1f72121-a426-45e2-b475-8262b5cdf103})
-
-
-
-
-
-
-
-
-
- double value
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843})
-----------
-The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c})
-----------
-The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- double value changed
- The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of DeviceClass mockPushButton
-
-
-
-
-
- http port
- The name of the ParamType (DeviceClass: mockDeviceAuto, Type: device, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1})
-----------
-The name of the ParamType (DeviceClass: mock, Type: device, ID: {d4f06047-125e-4479-9810-b54c189917f5})
-
-
-
-
-
- mockActionParam1
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {b8126ba6-3a54-45a3-be4d-63feb0ddb77b})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {a2d3a256-a551-4712-a65b-ecd5a436a1cb})
-
-
-
-
-
- mockActionParam2
- The name of the ParamType (DeviceClass: mockDeviceAuto, ActionType: withParams, ID: {df41ba71-e43b-4854-91d1-b19d8066d4f9})
-----------
-The name of the ParamType (DeviceClass: mock, ActionType: withParams, ID: {304a4899-18be-4e3b-94f4-d03be52f3233})
-
-
-
-
-
- mockParamInt
- The name of the ParamType (DeviceClass: mockDeviceAuto, EventType: event2, ID: {12ed5a15-96b4-4381-9d9c-a24875283d4f})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: event2, ID: {0550e16d-60b9-4ba5-83f4-4d3cee656121})
-
-
-
-
- nymea
- The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})
-
-
-
-
-
-
-
-
-
- percentage
- The name of the ParamType (DeviceClass: mockDisplayPin, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the ParamType (DeviceClass: mockDisplayPin, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797})
-----------
-The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the ParamType (DeviceClass: mockPushButton, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c})
-----------
-The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
-
- percentage changed
- The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of DeviceClass mockDisplayPin
-----------
-The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of DeviceClass mockPushButton
-
-
-
-
- pin
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: device, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9})
-
-
-
-
-
-
- powered
- The name of the ParamType (DeviceClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the ParamType (DeviceClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84})
-----------
-The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
- powered changed
- The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-
-
-
-
- resultCount
- The name of the ParamType (DeviceClass: mockDisplayPin, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf})
-----------
-The name of the ParamType (DeviceClass: mockPushButton, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b})
-----------
-The name of the ParamType (DeviceClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce})
-
-
-
-
- set power
- The name of the ActionType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of DeviceClass mock
-
-
-nymea