Merge PR #5: Sensors: Add a generic fire sensor

This commit is contained in:
jenkins 2022-08-23 20:52:32 +02:00
commit dd1f24c9c7
3 changed files with 173 additions and 340 deletions

View File

@ -265,6 +265,14 @@ void IntegrationPluginGenericSensors::executeAction(ThingActionInfo *info)
info->finish(Thing::ThingErrorNoError); info->finish(Thing::ThingErrorNoError);
return; return;
} }
} else if (thing->thingClassId() == fireSensorThingClassId) {
if (action.actionTypeId() == fireSensorFireDetectedActionTypeId) {
bool fire = action.paramValue(fireSensorFireDetectedActionFireDetectedParamTypeId).toBool();
qCDebug(dcGenericSensors()) << "Fire sensor state:" << (fire ? "fire" : "no fire");
thing->setStateValue(fireSensorFireDetectedStateTypeId, fire);
info->finish(Thing::ThingErrorNoError);
return;
}
} else { } else {
Q_ASSERT_X(false, "executeAction", QString("Unhandled thingClassId: %1").arg(thing->thingClassId().toString()).toUtf8()); Q_ASSERT_X(false, "executeAction", QString("Unhandled thingClassId: %1").arg(thing->thingClassId().toString()).toUtf8());
} }

View File

@ -777,6 +777,26 @@
"defaultValue": 0 "defaultValue": 0
} }
] ]
},
{
"id": "14e458d8-0480-4d2f-8e8b-2371cd4136f2",
"name": "fireSensor",
"displayName": "Generic fire sensor",
"createMethods": ["user"],
"interfaces": ["firesensor"],
"stateTypes": [
{
"id": "4bb41637-8469-4aea-ad46-6cef3ba3afa3",
"name": "fireDetected",
"displayName": "Fire detected",
"displayNameEvent": "Fire detected changed",
"displayNameAction": "Set fire detected",
"type": "bool",
"defaultValue": false,
"ioType": "digitalOutput",
"writable": true
}
]
} }
] ]
} }

View File

@ -2,19 +2,19 @@
<!DOCTYPE TS> <!DOCTYPE TS>
<TS version="2.1"> <TS version="2.1">
<context> <context>
<name>GenericThings</name> <name>genericSensors</name>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="192"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="140"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="195"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="143"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="198"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="146"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="201"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="149"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="204"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="152"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="207"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="155"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="210"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="158"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="213"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="161"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="216"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="164"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="219"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="167"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="222"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="170"/>
<source>Accuracy (decimal places)</source> <source>Accuracy (decimal places)</source>
<extracomment>The name of the ParamType (ThingClass: lightSensor, Type: settings, ID: {f800988f-1ad5-4ffb-9aa8-70ef17614966}) <extracomment>The name of the ParamType (ThingClass: lightSensor, Type: settings, ID: {f800988f-1ad5-4ffb-9aa8-70ef17614966})
---------- ----------
@ -40,381 +40,264 @@ The name of the ParamType (ThingClass: temperatureSensor, Type: settings, ID: {3
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="225"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="173"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="228"/>
<source>CO level</source> <source>CO level</source>
<extracomment>The name of the ParamType (ThingClass: coSensor, EventType: co, ID: {9eebe9d2-b34b-4847-bc25-109e2b8cab24}) <extracomment>The name of the StateType ({9eebe9d2-b34b-4847-bc25-109e2b8cab24}) of ThingClass coSensor</extracomment>
----------
The name of the StateType ({9eebe9d2-b34b-4847-bc25-109e2b8cab24}) of ThingClass coSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="231"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="176"/>
<source>CO level changed</source>
<extracomment>The name of the EventType ({9eebe9d2-b34b-4847-bc25-109e2b8cab24}) of ThingClass coSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="234"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="237"/>
<source>CO2</source> <source>CO2</source>
<extracomment>The name of the ParamType (ThingClass: co2Sensor, EventType: co2, ID: {755c4c7f-093e-41dd-a38d-9ee18c9890d6}) <extracomment>The name of the StateType ({755c4c7f-093e-41dd-a38d-9ee18c9890d6}) of ThingClass co2Sensor</extracomment>
----------
The name of the StateType ({755c4c7f-093e-41dd-a38d-9ee18c9890d6}) of ThingClass co2Sensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="240"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="179"/>
<source>CO2 changed</source> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="182"/>
<extracomment>The name of the EventType ({755c4c7f-093e-41dd-a38d-9ee18c9890d6}) of ThingClass co2Sensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="243"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="246"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="249"/>
<source>Closed</source> <source>Closed</source>
<extracomment>The name of the ParamType (ThingClass: doorSensor, ActionType: closed, ID: {7f5fdc2b-7916-4e90-9c24-558162304f71}) <extracomment>The name of the ParamType (ThingClass: doorSensor, ActionType: closed, ID: {7f5fdc2b-7916-4e90-9c24-558162304f71})
---------- ----------
The name of the ParamType (ThingClass: doorSensor, EventType: closed, ID: {7f5fdc2b-7916-4e90-9c24-558162304f71})
----------
The name of the StateType ({7f5fdc2b-7916-4e90-9c24-558162304f71}) of ThingClass doorSensor</extracomment> The name of the StateType ({7f5fdc2b-7916-4e90-9c24-558162304f71}) of ThingClass doorSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="252"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="185"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="255"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="188"/>
<source>Gas level</source> <source>Fire detected</source>
<extracomment>The name of the ParamType (ThingClass: gasSensor, EventType: gas, ID: {5135648f-57b7-44b0-b9d0-c5accad09356}) <extracomment>The name of the ParamType (ThingClass: fireSensor, ActionType: fireDetected, ID: {4bb41637-8469-4aea-ad46-6cef3ba3afa3})
---------- ----------
The name of the StateType ({5135648f-57b7-44b0-b9d0-c5accad09356}) of ThingClass gasSensor</extracomment> The name of the StateType ({4bb41637-8469-4aea-ad46-6cef3ba3afa3}) of ThingClass fireSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="258"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="191"/>
<source>Gas level changed</source> <source>Gas level</source>
<extracomment>The name of the EventType ({5135648f-57b7-44b0-b9d0-c5accad09356}) of ThingClass gasSensor</extracomment> <extracomment>The name of the StateType ({5135648f-57b7-44b0-b9d0-c5accad09356}) of ThingClass gasSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="261"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="194"/>
<source>Generic CO sensor</source> <source>Generic CO sensor</source>
<extracomment>The name of the ThingClass ({262a29b2-b5df-4ee2-822c-e672f50d97b6})</extracomment> <extracomment>The name of the ThingClass ({262a29b2-b5df-4ee2-822c-e672f50d97b6})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="264"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="197"/>
<source>Generic CO2 sensor</source> <source>Generic CO2 sensor</source>
<extracomment>The name of the ThingClass ({a58a2dae-4148-4a4d-ab34-2a11124454a0})</extracomment> <extracomment>The name of the ThingClass ({a58a2dae-4148-4a4d-ab34-2a11124454a0})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="267"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="200"/>
<source>Generic O2 sensor</source> <source>Generic O2 sensor</source>
<extracomment>The name of the ThingClass ({a8cf20ec-132b-4f6f-b5ec-73dc2f873b43})</extracomment> <extracomment>The name of the ThingClass ({a8cf20ec-132b-4f6f-b5ec-73dc2f873b43})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="270"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="203"/>
<source>Generic ORP sensor</source> <source>Generic ORP sensor</source>
<extracomment>The name of the ThingClass ({3edeec39-ab9d-4697-90cc-0bba089384cf})</extracomment> <extracomment>The name of the ThingClass ({3edeec39-ab9d-4697-90cc-0bba089384cf})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="273"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="206"/>
<source>Generic Things</source>
<extracomment>The name of the plugin GenericThings ({ee7b2965-d38f-4f73-aed0-e8887423ff1a})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="276"/>
<source>Generic door or window sensor</source> <source>Generic door or window sensor</source>
<extracomment>The name of the ThingClass ({2d936f56-48ee-4be1-9b3e-28a335ad8085})</extracomment> <extracomment>The name of the ThingClass ({2d936f56-48ee-4be1-9b3e-28a335ad8085})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="279"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="209"/>
<source>Generic fire sensor</source>
<extracomment>The name of the ThingClass ({14e458d8-0480-4d2f-8e8b-2371cd4136f2})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="212"/>
<source>Generic flammable gas sensor</source> <source>Generic flammable gas sensor</source>
<extracomment>The name of the ThingClass ({25c6725f-5c15-485b-9ec4-cb0e11ab6b32})</extracomment> <extracomment>The name of the ThingClass ({25c6725f-5c15-485b-9ec4-cb0e11ab6b32})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="282"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="215"/>
<source>Generic humidity sensor</source> <source>Generic humidity sensor</source>
<extracomment>The name of the ThingClass ({d295bc64-773c-42a9-83e2-80db5fa0d1ce})</extracomment> <extracomment>The name of the ThingClass ({d295bc64-773c-42a9-83e2-80db5fa0d1ce})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="285"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="218"/>
<source>Generic light sensor</source> <source>Generic light sensor</source>
<extracomment>The name of the ThingClass ({d4d873fd-f0fc-433f-b615-91c1506a1890})</extracomment> <extracomment>The name of the ThingClass ({d4d873fd-f0fc-433f-b615-91c1506a1890})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="288"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="221"/>
<source>Generic presence sensor</source> <source>Generic presence sensor</source>
<extracomment>The name of the ThingClass ({339a0c54-4086-404f-8d36-bcf20621b785})</extracomment> <extracomment>The name of the ThingClass ({339a0c54-4086-404f-8d36-bcf20621b785})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="291"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="224"/>
<source>Generic pressure sensor</source> <source>Generic pressure sensor</source>
<extracomment>The name of the ThingClass ({9a8d804b-d1dc-450a-8c41-be491e5cdda0})</extracomment> <extracomment>The name of the ThingClass ({9a8d804b-d1dc-450a-8c41-be491e5cdda0})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="294"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="227"/>
<source>Generic sensors</source>
<extracomment>The name of the plugin genericSensors ({ee7b2965-d38f-4f73-aed0-e8887423ff1a})</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="230"/>
<source>Generic soil moisture sensor</source> <source>Generic soil moisture sensor</source>
<extracomment>The name of the ThingClass ({33e610cf-ff30-481b-9f0b-d6857bcd41a5})</extracomment> <extracomment>The name of the ThingClass ({33e610cf-ff30-481b-9f0b-d6857bcd41a5})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="297"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="233"/>
<source>Generic temperature sensor</source> <source>Generic temperature sensor</source>
<extracomment>The name of the ThingClass ({cf3d65db-6f68-457b-968c-cfb66cbd5311})</extracomment> <extracomment>The name of the ThingClass ({cf3d65db-6f68-457b-968c-cfb66cbd5311})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="300"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="236"/>
<source>Generic water level sensor</source> <source>Generic water level sensor</source>
<extracomment>The name of the ThingClass ({f1576df0-fb45-4bf0-89fa-a83c4118c326})</extracomment> <extracomment>The name of the ThingClass ({f1576df0-fb45-4bf0-89fa-a83c4118c326})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="303"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="239"/>
<source>Gerneric water sensor</source> <source>Gerneric water sensor</source>
<extracomment>The name of the ThingClass ({09b9cb86-f551-4efe-9a7d-2f7624e9510f})</extracomment> <extracomment>The name of the ThingClass ({09b9cb86-f551-4efe-9a7d-2f7624e9510f})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="306"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="242"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="309"/>
<source>Humidity</source> <source>Humidity</source>
<extracomment>The name of the ParamType (ThingClass: humiditySensor, EventType: humidity, ID: {925225d9-2965-444a-9c42-63c2873700fb}) <extracomment>The name of the StateType ({925225d9-2965-444a-9c42-63c2873700fb}) of ThingClass humiditySensor</extracomment>
----------
The name of the StateType ({925225d9-2965-444a-9c42-63c2873700fb}) of ThingClass humiditySensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="312"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="245"/>
<source>Humidity changed</source> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="248"/>
<extracomment>The name of the EventType ({925225d9-2965-444a-9c42-63c2873700fb}) of ThingClass humiditySensor</extracomment> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="251"/>
<translation type="unfinished"></translation> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="254"/>
</message> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="257"/>
<message> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="260"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="315"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="263"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="318"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="266"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="321"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="269"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="324"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="272"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="327"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="275"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="330"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="278"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="333"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="281"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="336"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="284"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="339"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="287"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="342"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="290"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="345"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="293"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="348"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="296"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="351"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="299"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="354"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="302"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="357"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="305"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="360"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="308"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="363"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="311"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="366"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="314"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="369"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="372"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="375"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="378"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="381"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="384"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="387"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="390"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="393"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="396"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="399"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="402"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="405"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="408"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="411"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="414"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="417"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="420"/>
<source>Input value</source> <source>Input value</source>
<extracomment>The name of the ParamType (ThingClass: waterLevelSensor, ActionType: input, ID: {d344887d-da5d-4742-83bd-608754b2d0aa}) <extracomment>The name of the ParamType (ThingClass: waterLevelSensor, ActionType: input, ID: {d344887d-da5d-4742-83bd-608754b2d0aa})
---------- ----------
The name of the ParamType (ThingClass: waterLevelSensor, EventType: input, ID: {d344887d-da5d-4742-83bd-608754b2d0aa})
----------
The name of the StateType ({d344887d-da5d-4742-83bd-608754b2d0aa}) of ThingClass waterLevelSensor The name of the StateType ({d344887d-da5d-4742-83bd-608754b2d0aa}) of ThingClass waterLevelSensor
---------- ----------
The name of the ParamType (ThingClass: lightSensor, ActionType: input, ID: {520e5d27-7d15-4d79-94cf-5d01f5a09ea8}) The name of the ParamType (ThingClass: lightSensor, ActionType: input, ID: {520e5d27-7d15-4d79-94cf-5d01f5a09ea8})
---------- ----------
The name of the ParamType (ThingClass: lightSensor, EventType: input, ID: {520e5d27-7d15-4d79-94cf-5d01f5a09ea8})
----------
The name of the StateType ({520e5d27-7d15-4d79-94cf-5d01f5a09ea8}) of ThingClass lightSensor The name of the StateType ({520e5d27-7d15-4d79-94cf-5d01f5a09ea8}) of ThingClass lightSensor
---------- ----------
The name of the ParamType (ThingClass: gasSensor, ActionType: input, ID: {e3eb500a-ac00-426c-932a-dee4fd6fbcf5}) The name of the ParamType (ThingClass: gasSensor, ActionType: input, ID: {e3eb500a-ac00-426c-932a-dee4fd6fbcf5})
---------- ----------
The name of the ParamType (ThingClass: gasSensor, EventType: input, ID: {e3eb500a-ac00-426c-932a-dee4fd6fbcf5})
----------
The name of the StateType ({e3eb500a-ac00-426c-932a-dee4fd6fbcf5}) of ThingClass gasSensor The name of the StateType ({e3eb500a-ac00-426c-932a-dee4fd6fbcf5}) of ThingClass gasSensor
---------- ----------
The name of the ParamType (ThingClass: co2Sensor, ActionType: input, ID: {7dc765f8-fa9b-4199-8f21-49ed452f226d}) The name of the ParamType (ThingClass: co2Sensor, ActionType: input, ID: {7dc765f8-fa9b-4199-8f21-49ed452f226d})
---------- ----------
The name of the ParamType (ThingClass: co2Sensor, EventType: input, ID: {7dc765f8-fa9b-4199-8f21-49ed452f226d})
----------
The name of the StateType ({7dc765f8-fa9b-4199-8f21-49ed452f226d}) of ThingClass co2Sensor The name of the StateType ({7dc765f8-fa9b-4199-8f21-49ed452f226d}) of ThingClass co2Sensor
---------- ----------
The name of the ParamType (ThingClass: coSensor, ActionType: input, ID: {cf3ec5ec-7098-47c5-9666-b3c52eba1b1d}) The name of the ParamType (ThingClass: coSensor, ActionType: input, ID: {cf3ec5ec-7098-47c5-9666-b3c52eba1b1d})
---------- ----------
The name of the ParamType (ThingClass: coSensor, EventType: input, ID: {cf3ec5ec-7098-47c5-9666-b3c52eba1b1d})
----------
The name of the StateType ({cf3ec5ec-7098-47c5-9666-b3c52eba1b1d}) of ThingClass coSensor The name of the StateType ({cf3ec5ec-7098-47c5-9666-b3c52eba1b1d}) of ThingClass coSensor
---------- ----------
The name of the ParamType (ThingClass: pressureSensor, ActionType: input, ID: {c320577c-371a-442b-ac80-b692ff2064c9}) The name of the ParamType (ThingClass: pressureSensor, ActionType: input, ID: {c320577c-371a-442b-ac80-b692ff2064c9})
---------- ----------
The name of the ParamType (ThingClass: pressureSensor, EventType: input, ID: {c320577c-371a-442b-ac80-b692ff2064c9})
----------
The name of the StateType ({c320577c-371a-442b-ac80-b692ff2064c9}) of ThingClass pressureSensor The name of the StateType ({c320577c-371a-442b-ac80-b692ff2064c9}) of ThingClass pressureSensor
---------- ----------
The name of the ParamType (ThingClass: o2Sensor, ActionType: input, ID: {7e74fca7-84d0-4f3e-9f26-4232b7b9f507}) The name of the ParamType (ThingClass: o2Sensor, ActionType: input, ID: {7e74fca7-84d0-4f3e-9f26-4232b7b9f507})
---------- ----------
The name of the ParamType (ThingClass: o2Sensor, EventType: input, ID: {7e74fca7-84d0-4f3e-9f26-4232b7b9f507})
----------
The name of the StateType ({7e74fca7-84d0-4f3e-9f26-4232b7b9f507}) of ThingClass o2Sensor The name of the StateType ({7e74fca7-84d0-4f3e-9f26-4232b7b9f507}) of ThingClass o2Sensor
---------- ----------
The name of the ParamType (ThingClass: orpSensor, ActionType: input, ID: {020ff04f-a157-4925-9c55-2b45389208fc}) The name of the ParamType (ThingClass: orpSensor, ActionType: input, ID: {020ff04f-a157-4925-9c55-2b45389208fc})
---------- ----------
The name of the ParamType (ThingClass: orpSensor, EventType: input, ID: {020ff04f-a157-4925-9c55-2b45389208fc})
----------
The name of the StateType ({020ff04f-a157-4925-9c55-2b45389208fc}) of ThingClass orpSensor The name of the StateType ({020ff04f-a157-4925-9c55-2b45389208fc}) of ThingClass orpSensor
---------- ----------
The name of the ParamType (ThingClass: phSensor, ActionType: input, ID: {614a039b-9ed9-4b62-9c74-01ba4ac42f16}) The name of the ParamType (ThingClass: phSensor, ActionType: input, ID: {614a039b-9ed9-4b62-9c74-01ba4ac42f16})
---------- ----------
The name of the ParamType (ThingClass: phSensor, EventType: input, ID: {614a039b-9ed9-4b62-9c74-01ba4ac42f16})
----------
The name of the StateType ({614a039b-9ed9-4b62-9c74-01ba4ac42f16}) of ThingClass phSensor The name of the StateType ({614a039b-9ed9-4b62-9c74-01ba4ac42f16}) of ThingClass phSensor
---------- ----------
The name of the ParamType (ThingClass: moistureSensor, ActionType: input, ID: {ce64a425-d990-4fc1-966b-be6de445792b}) The name of the ParamType (ThingClass: moistureSensor, ActionType: input, ID: {ce64a425-d990-4fc1-966b-be6de445792b})
---------- ----------
The name of the ParamType (ThingClass: moistureSensor, EventType: input, ID: {ce64a425-d990-4fc1-966b-be6de445792b})
----------
The name of the StateType ({ce64a425-d990-4fc1-966b-be6de445792b}) of ThingClass moistureSensor The name of the StateType ({ce64a425-d990-4fc1-966b-be6de445792b}) of ThingClass moistureSensor
---------- ----------
The name of the ParamType (ThingClass: humiditySensor, ActionType: input, ID: {a8223e65-e704-4f84-9bbe-d8fc42597047}) The name of the ParamType (ThingClass: humiditySensor, ActionType: input, ID: {a8223e65-e704-4f84-9bbe-d8fc42597047})
---------- ----------
The name of the ParamType (ThingClass: humiditySensor, EventType: input, ID: {a8223e65-e704-4f84-9bbe-d8fc42597047})
----------
The name of the StateType ({a8223e65-e704-4f84-9bbe-d8fc42597047}) of ThingClass humiditySensor The name of the StateType ({a8223e65-e704-4f84-9bbe-d8fc42597047}) of ThingClass humiditySensor
---------- ----------
The name of the ParamType (ThingClass: temperatureSensor, ActionType: input, ID: {fed37466-1264-4ac1-84fd-aff3a1f7ff04}) The name of the ParamType (ThingClass: temperatureSensor, ActionType: input, ID: {fed37466-1264-4ac1-84fd-aff3a1f7ff04})
---------- ----------
The name of the ParamType (ThingClass: temperatureSensor, EventType: input, ID: {fed37466-1264-4ac1-84fd-aff3a1f7ff04})
----------
The name of the StateType ({fed37466-1264-4ac1-84fd-aff3a1f7ff04}) of ThingClass temperatureSensor</extracomment> The name of the StateType ({fed37466-1264-4ac1-84fd-aff3a1f7ff04}) of ThingClass temperatureSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="423"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="317"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="426"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="429"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="432"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="435"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="438"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="441"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="444"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="447"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="450"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="453"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="456"/>
<source>Input value changed</source>
<extracomment>The name of the EventType ({d344887d-da5d-4742-83bd-608754b2d0aa}) of ThingClass waterLevelSensor
----------
The name of the EventType ({520e5d27-7d15-4d79-94cf-5d01f5a09ea8}) of ThingClass lightSensor
----------
The name of the EventType ({e3eb500a-ac00-426c-932a-dee4fd6fbcf5}) of ThingClass gasSensor
----------
The name of the EventType ({7dc765f8-fa9b-4199-8f21-49ed452f226d}) of ThingClass co2Sensor
----------
The name of the EventType ({cf3ec5ec-7098-47c5-9666-b3c52eba1b1d}) of ThingClass coSensor
----------
The name of the EventType ({c320577c-371a-442b-ac80-b692ff2064c9}) of ThingClass pressureSensor
----------
The name of the EventType ({7e74fca7-84d0-4f3e-9f26-4232b7b9f507}) of ThingClass o2Sensor
----------
The name of the EventType ({020ff04f-a157-4925-9c55-2b45389208fc}) of ThingClass orpSensor
----------
The name of the EventType ({614a039b-9ed9-4b62-9c74-01ba4ac42f16}) of ThingClass phSensor
----------
The name of the EventType ({ce64a425-d990-4fc1-966b-be6de445792b}) of ThingClass moistureSensor
----------
The name of the EventType ({a8223e65-e704-4f84-9bbe-d8fc42597047}) of ThingClass humiditySensor
----------
The name of the EventType ({fed37466-1264-4ac1-84fd-aff3a1f7ff04}) of ThingClass temperatureSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="459"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="462"/>
<source>Last seen time</source> <source>Last seen time</source>
<extracomment>The name of the ParamType (ThingClass: presenceSensor, EventType: lastSeenTime, ID: {be4842cb-140c-425f-9630-8bb19fdb943e}) <extracomment>The name of the StateType ({be4842cb-140c-425f-9630-8bb19fdb943e}) of ThingClass presenceSensor</extracomment>
----------
The name of the StateType ({be4842cb-140c-425f-9630-8bb19fdb943e}) of ThingClass presenceSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="465"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="320"/>
<source>Last seen time changed</source>
<extracomment>The name of the EventType ({be4842cb-140c-425f-9630-8bb19fdb943e}) of ThingClass presenceSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="468"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="471"/>
<source>Light intensity</source> <source>Light intensity</source>
<extracomment>The name of the ParamType (ThingClass: lightSensor, EventType: lightIntensity, ID: {fe12ef32-9f2f-41cd-acb7-6b8e4acffa3b}) <extracomment>The name of the StateType ({fe12ef32-9f2f-41cd-acb7-6b8e4acffa3b}) of ThingClass lightSensor</extracomment>
----------
The name of the StateType ({fe12ef32-9f2f-41cd-acb7-6b8e4acffa3b}) of ThingClass lightSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="474"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="323"/>
<source>Light intensity changed</source>
<extracomment>The name of the EventType ({fe12ef32-9f2f-41cd-acb7-6b8e4acffa3b}) of ThingClass lightSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="477"/>
<source>Maximum CO</source> <source>Maximum CO</source>
<extracomment>The name of the ParamType (ThingClass: coSensor, Type: settings, ID: {e9def195-1b67-4a1b-8030-cbbc6209d52e})</extracomment> <extracomment>The name of the ParamType (ThingClass: coSensor, Type: settings, ID: {e9def195-1b67-4a1b-8030-cbbc6209d52e})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="480"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="326"/>
<source>Maximum CO2</source> <source>Maximum CO2</source>
<extracomment>The name of the ParamType (ThingClass: co2Sensor, Type: settings, ID: {a3029bee-8b13-4aed-8ebd-eaceb603f8ef})</extracomment> <extracomment>The name of the ParamType (ThingClass: co2Sensor, Type: settings, ID: {a3029bee-8b13-4aed-8ebd-eaceb603f8ef})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="483"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="329"/>
<source>Maximum Lux</source> <source>Maximum Lux</source>
<extracomment>The name of the ParamType (ThingClass: lightSensor, Type: settings, ID: {7fe74404-d7f0-41af-a8d4-dd1bda27f752})</extracomment> <extracomment>The name of the ParamType (ThingClass: lightSensor, Type: settings, ID: {7fe74404-d7f0-41af-a8d4-dd1bda27f752})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="486"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="332"/>
<source>Maximum humidity</source> <source>Maximum humidity</source>
<extracomment>The name of the ParamType (ThingClass: humiditySensor, Type: settings, ID: {10afc387-68d1-47ea-a816-0d1acad47b3c})</extracomment> <extracomment>The name of the ParamType (ThingClass: humiditySensor, Type: settings, ID: {10afc387-68d1-47ea-a816-0d1acad47b3c})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="489"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="335"/>
<source>Maximum input ORP value</source> <source>Maximum input ORP value</source>
<extracomment>The name of the ParamType (ThingClass: orpSensor, Type: settings, ID: {bd0774c9-1b89-49ce-b0f8-66ff26ca10db})</extracomment> <extracomment>The name of the ParamType (ThingClass: orpSensor, Type: settings, ID: {bd0774c9-1b89-49ce-b0f8-66ff26ca10db})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="492"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="338"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="495"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="341"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="498"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="344"/>
<source>Maximum input value</source> <source>Maximum input value</source>
<extracomment>The name of the ParamType (ThingClass: waterLevelSensor, Type: settings, ID: {4e228f9b-8631-4643-8375-3d8d76d12e9c}) <extracomment>The name of the ParamType (ThingClass: waterLevelSensor, Type: settings, ID: {4e228f9b-8631-4643-8375-3d8d76d12e9c})
---------- ----------
@ -424,58 +307,58 @@ The name of the ParamType (ThingClass: phSensor, Type: settings, ID: {a8889e45-5
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="501"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="347"/>
<source>Maximum moisture</source> <source>Maximum moisture</source>
<extracomment>The name of the ParamType (ThingClass: moistureSensor, Type: settings, ID: {3426817d-065e-4cfc-aa21-bb434de684d6})</extracomment> <extracomment>The name of the ParamType (ThingClass: moistureSensor, Type: settings, ID: {3426817d-065e-4cfc-aa21-bb434de684d6})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="504"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="350"/>
<source>Maximum pressure</source> <source>Maximum pressure</source>
<extracomment>The name of the ParamType (ThingClass: pressureSensor, Type: settings, ID: {06e21251-8b4f-44a1-8504-6b51f8526bd0})</extracomment> <extracomment>The name of the ParamType (ThingClass: pressureSensor, Type: settings, ID: {06e21251-8b4f-44a1-8504-6b51f8526bd0})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="507"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="353"/>
<source>Maximum temperature</source> <source>Maximum temperature</source>
<extracomment>The name of the ParamType (ThingClass: temperatureSensor, Type: settings, ID: {8b5947ab-127f-4995-853b-eeeb628811e3})</extracomment> <extracomment>The name of the ParamType (ThingClass: temperatureSensor, Type: settings, ID: {8b5947ab-127f-4995-853b-eeeb628811e3})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="510"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="356"/>
<source>Maximum value</source> <source>Maximum value</source>
<extracomment>The name of the ParamType (ThingClass: gasSensor, Type: settings, ID: {51f4a830-3ef9-4fa2-b36b-5976f724f8a1})</extracomment> <extracomment>The name of the ParamType (ThingClass: gasSensor, Type: settings, ID: {51f4a830-3ef9-4fa2-b36b-5976f724f8a1})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="513"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="359"/>
<source>Minimum CO</source> <source>Minimum CO</source>
<extracomment>The name of the ParamType (ThingClass: coSensor, Type: settings, ID: {e850b044-fd70-446c-a943-3c88407425f5})</extracomment> <extracomment>The name of the ParamType (ThingClass: coSensor, Type: settings, ID: {e850b044-fd70-446c-a943-3c88407425f5})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="516"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="362"/>
<source>Minimum CO2</source> <source>Minimum CO2</source>
<extracomment>The name of the ParamType (ThingClass: co2Sensor, Type: settings, ID: {a0d8a6ec-599a-4ded-ae03-2950561f0b72})</extracomment> <extracomment>The name of the ParamType (ThingClass: co2Sensor, Type: settings, ID: {a0d8a6ec-599a-4ded-ae03-2950561f0b72})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="519"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="365"/>
<source>Minimum Lux</source> <source>Minimum Lux</source>
<extracomment>The name of the ParamType (ThingClass: lightSensor, Type: settings, ID: {6dea7384-b079-443b-8cc2-1479138fa212})</extracomment> <extracomment>The name of the ParamType (ThingClass: lightSensor, Type: settings, ID: {6dea7384-b079-443b-8cc2-1479138fa212})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="522"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="368"/>
<source>Minimum humidity</source> <source>Minimum humidity</source>
<extracomment>The name of the ParamType (ThingClass: humiditySensor, Type: settings, ID: {0218ffa9-3d49-4b25-a59f-c8831f190432})</extracomment> <extracomment>The name of the ParamType (ThingClass: humiditySensor, Type: settings, ID: {0218ffa9-3d49-4b25-a59f-c8831f190432})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="525"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="371"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="528"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="374"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="531"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="377"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="534"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="380"/>
<source>Minimum input value</source> <source>Minimum input value</source>
<extracomment>The name of the ParamType (ThingClass: waterLevelSensor, Type: settings, ID: {16ea3cf2-46fd-40a3-88bf-21a2bb7cbabe}) <extracomment>The name of the ParamType (ThingClass: waterLevelSensor, Type: settings, ID: {16ea3cf2-46fd-40a3-88bf-21a2bb7cbabe})
---------- ----------
@ -487,132 +370,87 @@ The name of the ParamType (ThingClass: phSensor, Type: settings, ID: {a8ff2e16-e
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="537"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="383"/>
<source>Minimum moisture</source> <source>Minimum moisture</source>
<extracomment>The name of the ParamType (ThingClass: moistureSensor, Type: settings, ID: {32153786-f1ae-4aa4-a84c-b9054102eb92})</extracomment> <extracomment>The name of the ParamType (ThingClass: moistureSensor, Type: settings, ID: {32153786-f1ae-4aa4-a84c-b9054102eb92})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="540"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="386"/>
<source>Minimum pressure</source> <source>Minimum pressure</source>
<extracomment>The name of the ParamType (ThingClass: pressureSensor, Type: settings, ID: {035e2619-f9c2-4e8f-95dd-f124ad9402d0})</extracomment> <extracomment>The name of the ParamType (ThingClass: pressureSensor, Type: settings, ID: {035e2619-f9c2-4e8f-95dd-f124ad9402d0})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="543"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="389"/>
<source>Minimum temperature</source> <source>Minimum temperature</source>
<extracomment>The name of the ParamType (ThingClass: temperatureSensor, Type: settings, ID: {c86ae5d3-9335-4b6e-8231-bf3ed6670dff})</extracomment> <extracomment>The name of the ParamType (ThingClass: temperatureSensor, Type: settings, ID: {c86ae5d3-9335-4b6e-8231-bf3ed6670dff})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="546"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="392"/>
<source>Minimum value</source> <source>Minimum value</source>
<extracomment>The name of the ParamType (ThingClass: gasSensor, Type: settings, ID: {480945ea-6262-408d-b799-cbff905a40db})</extracomment> <extracomment>The name of the ParamType (ThingClass: gasSensor, Type: settings, ID: {480945ea-6262-408d-b799-cbff905a40db})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="549"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="395"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="552"/>
<source>O2 saturation</source> <source>O2 saturation</source>
<extracomment>The name of the ParamType (ThingClass: o2Sensor, EventType: o2saturation, ID: {a3ff7641-87d9-4b07-b8e5-e6aa92b90088}) <extracomment>The name of the StateType ({a3ff7641-87d9-4b07-b8e5-e6aa92b90088}) of ThingClass o2Sensor</extracomment>
----------
The name of the StateType ({a3ff7641-87d9-4b07-b8e5-e6aa92b90088}) of ThingClass o2Sensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="555"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="398"/>
<source>O2 saturation changed</source>
<extracomment>The name of the EventType ({a3ff7641-87d9-4b07-b8e5-e6aa92b90088}) of ThingClass o2Sensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="558"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="561"/>
<source>ORP</source> <source>ORP</source>
<extracomment>The name of the ParamType (ThingClass: orpSensor, EventType: orp, ID: {e5ed3535-2e5d-412e-85f8-782cbccd7731}) <extracomment>The name of the StateType ({e5ed3535-2e5d-412e-85f8-782cbccd7731}) of ThingClass orpSensor</extracomment>
----------
The name of the StateType ({e5ed3535-2e5d-412e-85f8-782cbccd7731}) of ThingClass orpSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="564"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="401"/>
<source>ORP changed</source>
<extracomment>The name of the EventType ({e5ed3535-2e5d-412e-85f8-782cbccd7731}) of ThingClass orpSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="567"/>
<source>Opened or closed</source>
<extracomment>The name of the EventType ({7f5fdc2b-7916-4e90-9c24-558162304f71}) of ThingClass doorSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="570"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="573"/>
<source>PH</source> <source>PH</source>
<extracomment>The name of the ParamType (ThingClass: phSensor, EventType: ph, ID: {743514b1-8018-4525-b87a-c5f414146ff2}) <extracomment>The name of the StateType ({743514b1-8018-4525-b87a-c5f414146ff2}) of ThingClass phSensor</extracomment>
----------
The name of the StateType ({743514b1-8018-4525-b87a-c5f414146ff2}) of ThingClass phSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="576"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="404"/>
<source>PH changed</source>
<extracomment>The name of the EventType ({743514b1-8018-4525-b87a-c5f414146ff2}) of ThingClass phSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="579"/>
<source>PH sensor</source> <source>PH sensor</source>
<extracomment>The name of the ThingClass ({e2934fa1-59c3-4de8-82f2-66181136085c})</extracomment> <extracomment>The name of the ThingClass ({e2934fa1-59c3-4de8-82f2-66181136085c})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="582"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="407"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="585"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="410"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="588"/>
<source>Presence detected</source> <source>Presence detected</source>
<extracomment>The name of the ParamType (ThingClass: presenceSensor, ActionType: isPresent, ID: {22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c}) <extracomment>The name of the ParamType (ThingClass: presenceSensor, ActionType: isPresent, ID: {22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c})
---------- ----------
The name of the ParamType (ThingClass: presenceSensor, EventType: isPresent, ID: {22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c})
----------
The name of the StateType ({22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c}) of ThingClass presenceSensor</extracomment> The name of the StateType ({22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c}) of ThingClass presenceSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="591"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="413"/>
<source>Presense changed</source>
<extracomment>The name of the EventType ({22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c}) of ThingClass presenceSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="594"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="597"/>
<source>Pressure</source> <source>Pressure</source>
<extracomment>The name of the ParamType (ThingClass: pressureSensor, EventType: pressure, ID: {e645a979-1465-4592-b8b0-f4c123db0800}) <extracomment>The name of the StateType ({e645a979-1465-4592-b8b0-f4c123db0800}) of ThingClass pressureSensor</extracomment>
----------
The name of the StateType ({e645a979-1465-4592-b8b0-f4c123db0800}) of ThingClass pressureSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="600"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="416"/>
<source>Pressure changed</source> <source>Set fire detected</source>
<extracomment>The name of the EventType ({e645a979-1465-4592-b8b0-f4c123db0800}) of ThingClass pressureSensor</extracomment> <extracomment>The name of the ActionType ({4bb41637-8469-4aea-ad46-6cef3ba3afa3}) of ThingClass fireSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="603"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="419"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="606"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="422"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="609"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="425"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="612"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="428"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="615"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="431"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="618"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="434"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="621"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="437"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="624"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="440"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="627"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="443"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="630"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="446"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="633"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="449"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="636"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="452"/>
<source>Set input value</source> <source>Set input value</source>
<extracomment>The name of the ActionType ({d344887d-da5d-4742-83bd-608754b2d0aa}) of ThingClass waterLevelSensor <extracomment>The name of the ActionType ({d344887d-da5d-4742-83bd-608754b2d0aa}) of ThingClass waterLevelSensor
---------- ----------
@ -640,91 +478,58 @@ The name of the ActionType ({fed37466-1264-4ac1-84fd-aff3a1f7ff04}) of ThingClas
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="639"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="455"/>
<source>Set open or closed</source> <source>Set open or closed</source>
<extracomment>The name of the ActionType ({7f5fdc2b-7916-4e90-9c24-558162304f71}) of ThingClass doorSensor</extracomment> <extracomment>The name of the ActionType ({7f5fdc2b-7916-4e90-9c24-558162304f71}) of ThingClass doorSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="642"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="458"/>
<source>Set presence</source> <source>Set presence</source>
<extracomment>The name of the ActionType ({22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c}) of ThingClass presenceSensor</extracomment> <extracomment>The name of the ActionType ({22c1eac6-9bb5-4cc1-ac0d-e3e1499edd3c}) of ThingClass presenceSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="645"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="461"/>
<source>Set water detected</source> <source>Set water detected</source>
<extracomment>The name of the ActionType ({b2427b85-1f62-4635-b546-1961191426ef}) of ThingClass waterSensor</extracomment> <extracomment>The name of the ActionType ({b2427b85-1f62-4635-b546-1961191426ef}) of ThingClass waterSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="648"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="464"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="651"/>
<source>Soil moisture</source> <source>Soil moisture</source>
<extracomment>The name of the ParamType (ThingClass: moistureSensor, EventType: moisture, ID: {7a62e1d2-92f2-424c-876c-870478a4b2bd}) <extracomment>The name of the StateType ({7a62e1d2-92f2-424c-876c-870478a4b2bd}) of ThingClass moistureSensor</extracomment>
----------
The name of the StateType ({7a62e1d2-92f2-424c-876c-870478a4b2bd}) of ThingClass moistureSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="654"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="467"/>
<source>Soil moisture changed</source>
<extracomment>The name of the EventType ({7a62e1d2-92f2-424c-876c-870478a4b2bd}) of ThingClass moistureSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="657"/>
<source>Tank capactity</source> <source>Tank capactity</source>
<extracomment>The name of the ParamType (ThingClass: waterLevelSensor, Type: settings, ID: {5e98e8d2-d849-46c5-b25a-d54f184ea4c7})</extracomment> <extracomment>The name of the ParamType (ThingClass: waterLevelSensor, Type: settings, ID: {5e98e8d2-d849-46c5-b25a-d54f184ea4c7})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="660"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="470"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="663"/>
<source>Temperature</source> <source>Temperature</source>
<extracomment>The name of the ParamType (ThingClass: temperatureSensor, EventType: temperature, ID: {d0b6c4be-339e-4b0f-a234-0611b7565395}) <extracomment>The name of the StateType ({d0b6c4be-339e-4b0f-a234-0611b7565395}) of ThingClass temperatureSensor</extracomment>
----------
The name of the StateType ({d0b6c4be-339e-4b0f-a234-0611b7565395}) of ThingClass temperatureSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="666"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="473"/>
<source>Temperature changed</source> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="476"/>
<extracomment>The name of the EventType ({d0b6c4be-339e-4b0f-a234-0611b7565395}) of ThingClass temperatureSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="669"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="672"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="675"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="678"/>
<source>Water detected</source> <source>Water detected</source>
<extracomment>The name of the ParamType (ThingClass: waterSensor, ActionType: waterDetected, ID: {b2427b85-1f62-4635-b546-1961191426ef}) <extracomment>The name of the ParamType (ThingClass: waterSensor, ActionType: waterDetected, ID: {b2427b85-1f62-4635-b546-1961191426ef})
---------- ----------
The name of the ParamType (ThingClass: waterSensor, EventType: waterDetected, ID: {b2427b85-1f62-4635-b546-1961191426ef})
----------
The name of the EventType ({b2427b85-1f62-4635-b546-1961191426ef}) of ThingClass waterSensor
----------
The name of the StateType ({b2427b85-1f62-4635-b546-1961191426ef}) of ThingClass waterSensor</extracomment> The name of the StateType ({b2427b85-1f62-4635-b546-1961191426ef}) of ThingClass waterSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="681"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="479"/>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="684"/>
<source>Water level</source> <source>Water level</source>
<extracomment>The name of the ParamType (ThingClass: waterLevelSensor, EventType: waterLevel, ID: {07563165-e42d-4d0f-ac60-31cdd19170f2}) <extracomment>The name of the StateType ({07563165-e42d-4d0f-ac60-31cdd19170f2}) of ThingClass waterLevelSensor</extracomment>
----------
The name of the StateType ({07563165-e42d-4d0f-ac60-31cdd19170f2}) of ThingClass waterLevelSensor</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="687"/> <location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="482"/>
<source>Water level changed</source>
<extracomment>The name of the EventType ({07563165-e42d-4d0f-ac60-31cdd19170f2}) of ThingClass waterLevelSensor</extracomment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../build/nymea-plugins-genericthings-Desktop-Debug/genericsensors/plugininfo.h" line="690"/>
<source>nymea</source> <source>nymea</source>
<extracomment>The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})</extracomment> <extracomment>The name of the vendor ({2062d64d-3232-433c-88bc-0d33c0ba2ba6})</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>