added temperature and humidity sensor
parent
68ca8605f3
commit
e99643feef
|
|
@ -22,6 +22,9 @@ This integration plugin allows to integrate one-wire devices like temperature se
|
||||||
* DS18B20X
|
* DS18B20X
|
||||||
* Family Code 3B
|
* Family Code 3B
|
||||||
* DS1825
|
* DS1825
|
||||||
|
* Temperature and Humidity Sensors
|
||||||
|
* Familiy Code 26
|
||||||
|
*DS2834
|
||||||
* Switches
|
* Switches
|
||||||
* Family Code 05
|
* Family Code 05
|
||||||
* Single channel switch
|
* Single channel switch
|
||||||
|
|
@ -46,10 +49,6 @@ You can simulate one-wire device with following init argument: "--fake=10,22,28,
|
||||||
|
|
||||||
More about init arguments here: https://www.owfs.org
|
More about init arguments here: https://www.owfs.org
|
||||||
|
|
||||||
The "One wire interface" thing has the toggle button to "Auto add one wire devices". Is this activated one-wire devices that get connected to the bus will appear in nymea automatically.
|
|
||||||
|
|
||||||
NOTE: As long as the "Auto add one wire devices" feature is activated you won't be able to manually discover devices.
|
|
||||||
|
|
||||||
### W1 Kernel Driver
|
### W1 Kernel Driver
|
||||||
Install the kernel driver w1. Raspberry Pi users can use rasp-config to enable 'one wire' which enables W1. There are not further steps necessary, temperature sensors will be discovered if the driver has been loaded successfully.
|
Install the kernel driver w1. Raspberry Pi users can use rasp-config to enable 'one wire' which enables W1. There are not further steps necessary, temperature sensors will be discovered if the driver has been loaded successfully.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -89,14 +89,8 @@ void IntegrationPluginOneWire::discoverThings(ThingDiscoveryInfo *info)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return info->finish(Thing::ThingErrorNoError);
|
return info->finish(Thing::ThingErrorNoError);
|
||||||
}
|
} else {
|
||||||
|
Thing *parentDevice = myThings().filterByThingClassId(oneWireInterfaceThingClassId).first();
|
||||||
|
|
||||||
foreach(Thing *parentDevice, myThings().filterByThingClassId(oneWireInterfaceThingClassId)) {
|
|
||||||
if (parentDevice->stateValue(oneWireInterfaceAutoAddStateTypeId).toBool()) {
|
|
||||||
//devices cannot be discovered since auto mode is enabled
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
m_runningDiscoveries.insert(parentDevice, info);
|
m_runningDiscoveries.insert(parentDevice, info);
|
||||||
connect(info, &ThingDiscoveryInfo::destroyed, this, [this, parentDevice](){
|
connect(info, &ThingDiscoveryInfo::destroyed, this, [this, parentDevice](){
|
||||||
m_runningDiscoveries.remove(parentDevice);
|
m_runningDiscoveries.remove(parentDevice);
|
||||||
|
|
@ -105,10 +99,6 @@ void IntegrationPluginOneWire::discoverThings(ThingDiscoveryInfo *info)
|
||||||
if (m_owfsInterface)
|
if (m_owfsInterface)
|
||||||
m_owfsInterface->discoverDevices();
|
m_owfsInterface->discoverDevices();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_runningDiscoveries.isEmpty()) {
|
|
||||||
info->finish(Thing::ThingErrorNoError, QT_TR_NOOP("All configured one wire interfaces are set up to automatically add new devices."));
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
qCWarning(dcOneWire()) << "Discovery called for a deviceclass which does not support discovery? Device class ID:" << info->thingClassId().toString();
|
qCWarning(dcOneWire()) << "Discovery called for a deviceclass which does not support discovery? Device class ID:" << info->thingClassId().toString();
|
||||||
|
|
@ -172,6 +162,23 @@ void IntegrationPluginOneWire::setupThing(ThingSetupInfo *info)
|
||||||
return info->finish(Thing::ThingErrorHardwareNotAvailable);
|
return info->finish(Thing::ThingErrorHardwareNotAvailable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (thing->thingClassId() == temperatureHumiditySensorThingClassId) {
|
||||||
|
|
||||||
|
qCDebug(dcOneWire) << "Setup one wire temperature and humidity sensor" << thing->params();
|
||||||
|
Thing *parentThing = myThings().findById(thing->parentId());
|
||||||
|
if (!parentThing) {
|
||||||
|
qCWarning(dcOneWire()) << "Could not find parent thing for" << thing->name();
|
||||||
|
}
|
||||||
|
if (parentThing->setupComplete()) {
|
||||||
|
setupOwfsTemperatureHumiditySensor(info);
|
||||||
|
} else {
|
||||||
|
connect(parentThing, &Thing::setupStatusChanged, info, [info, parentThing, this] {
|
||||||
|
if (parentThing->setupComplete()) {
|
||||||
|
setupOwfsTemperatureHumiditySensor(info);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return info->finish(Thing::ThingErrorNoError);
|
||||||
|
|
||||||
} else if (thing->thingClassId() == singleChannelSwitchThingClassId) {
|
} else if (thing->thingClassId() == singleChannelSwitchThingClassId) {
|
||||||
qCDebug(dcOneWire) << "Setup one wire switch" << thing->params();
|
qCDebug(dcOneWire) << "Setup one wire switch" << thing->params();
|
||||||
|
|
@ -233,10 +240,6 @@ void IntegrationPluginOneWire::executeAction(ThingActionInfo *info)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (thing->thingClassId() == oneWireInterfaceThingClassId) {
|
if (thing->thingClassId() == oneWireInterfaceThingClassId) {
|
||||||
if (action.actionTypeId() == oneWireInterfaceAutoAddActionTypeId){
|
|
||||||
thing->setStateValue(oneWireInterfaceAutoAddStateTypeId, action.param(oneWireInterfaceAutoAddActionAutoAddParamTypeId).value());
|
|
||||||
return info->finish(Thing::ThingErrorNoError);
|
|
||||||
}
|
|
||||||
return info->finish(Thing::ThingErrorActionTypeNotFound);
|
return info->finish(Thing::ThingErrorActionTypeNotFound);
|
||||||
|
|
||||||
} else if (thing->thingClassId() == singleChannelSwitchThingClassId) {
|
} else if (thing->thingClassId() == singleChannelSwitchThingClassId) {
|
||||||
|
|
@ -327,6 +330,20 @@ void IntegrationPluginOneWire::setupOwfsTemperatureSensor(ThingSetupInfo *info)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void IntegrationPluginOneWire::setupOwfsTemperatureHumiditySensor(ThingSetupInfo *info)
|
||||||
|
{
|
||||||
|
Thing *thing = info->thing();
|
||||||
|
QByteArray address = thing->paramValue(temperatureHumiditySensorThingAddressParamTypeId).toByteArray();
|
||||||
|
if (m_owfsInterface) {
|
||||||
|
thing->setStateValue(temperatureHumiditySensorConnectedStateTypeId, m_owfsInterface->isConnected(address));
|
||||||
|
thing->setStateValue(temperatureHumiditySensorTemperatureStateTypeId, m_owfsInterface->getTemperature(address));
|
||||||
|
thing->setStateValue(temperatureHumiditySensorHumidityStateTypeId, m_owfsInterface->getHumidity(address));
|
||||||
|
return info->finish(Thing::ThingErrorNoError);
|
||||||
|
} else {
|
||||||
|
qCWarning(dcOneWire()) << "OWFS interface is not available";
|
||||||
|
return info->finish(Thing::ThingErrorHardwareNotAvailable);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void IntegrationPluginOneWire::onPluginTimer()
|
void IntegrationPluginOneWire::onPluginTimer()
|
||||||
{
|
{
|
||||||
|
|
@ -334,9 +351,6 @@ void IntegrationPluginOneWire::onPluginTimer()
|
||||||
if (thing->thingClassId() == oneWireInterfaceThingClassId) {
|
if (thing->thingClassId() == oneWireInterfaceThingClassId) {
|
||||||
thing->setStateValue(oneWireInterfaceConnectedStateTypeId, m_owfsInterface->interfaceIsAvailable());
|
thing->setStateValue(oneWireInterfaceConnectedStateTypeId, m_owfsInterface->interfaceIsAvailable());
|
||||||
|
|
||||||
if (thing->stateValue(oneWireInterfaceAutoAddStateTypeId).toBool()) {
|
|
||||||
m_owfsInterface->discoverDevices();
|
|
||||||
}
|
|
||||||
} else if (thing->thingClassId() == temperatureSensorThingClassId) {
|
} else if (thing->thingClassId() == temperatureSensorThingClassId) {
|
||||||
QByteArray address = thing->paramValue(temperatureSensorThingAddressParamTypeId).toByteArray();
|
QByteArray address = thing->paramValue(temperatureSensorThingAddressParamTypeId).toByteArray();
|
||||||
double temperature = 0;
|
double temperature = 0;
|
||||||
|
|
@ -351,12 +365,19 @@ void IntegrationPluginOneWire::onPluginTimer()
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
temperature = m_w1Interface->getTemperature(address);
|
temperature = m_w1Interface->getTemperature(address);
|
||||||
connected = m_w1Interface->deviceAvailable(address);
|
connected = m_w1Interface->deviceAvailable(address);
|
||||||
}
|
}
|
||||||
|
|
||||||
thing->setStateValue(temperatureSensorTemperatureStateTypeId, temperature);
|
thing->setStateValue(temperatureSensorTemperatureStateTypeId, temperature);
|
||||||
thing->setStateValue(temperatureSensorConnectedStateTypeId, connected);
|
thing->setStateValue(temperatureSensorConnectedStateTypeId, connected);
|
||||||
|
} else if (thing->thingClassId() == temperatureHumiditySensorThingClassId) {
|
||||||
|
if (!m_owfsInterface)
|
||||||
|
continue;
|
||||||
|
QByteArray address = thing->paramValue(temperatureHumiditySensorThingAddressParamTypeId).toByteArray();
|
||||||
|
thing->setStateValue(temperatureHumiditySensorTemperatureStateTypeId, m_owfsInterface->getTemperature(address));
|
||||||
|
thing->setStateValue(temperatureHumiditySensorHumidityStateTypeId, m_owfsInterface->getHumidity(address));
|
||||||
|
thing->setStateValue(temperatureHumiditySensorConnectedStateTypeId, m_owfsInterface->isConnected(address));
|
||||||
} else if (thing->thingClassId() == singleChannelSwitchThingClassId) {
|
} else if (thing->thingClassId() == singleChannelSwitchThingClassId) {
|
||||||
if (!m_owfsInterface)
|
if (!m_owfsInterface)
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -391,7 +412,6 @@ void IntegrationPluginOneWire::onOneWireDevicesDiscovered(QList<Owfs::OwfsDevice
|
||||||
{
|
{
|
||||||
foreach(Thing *parentDevice, myThings().filterByThingClassId(oneWireInterfaceThingClassId)) {
|
foreach(Thing *parentDevice, myThings().filterByThingClassId(oneWireInterfaceThingClassId)) {
|
||||||
|
|
||||||
bool autoDiscoverEnabled = parentDevice->stateValue(oneWireInterfaceAutoAddStateTypeId).toBool();
|
|
||||||
ThingDescriptors descriptors;
|
ThingDescriptors descriptors;
|
||||||
foreach (Owfs::OwfsDevice oneWireDevice, oneWireDevices){
|
foreach (Owfs::OwfsDevice oneWireDevice, oneWireDevices){
|
||||||
switch (oneWireDevice.family) {
|
switch (oneWireDevice.family) {
|
||||||
|
|
@ -414,6 +434,21 @@ void IntegrationPluginOneWire::onOneWireDevicesDiscovered(QList<Owfs::OwfsDevice
|
||||||
descriptors.append(descriptor);
|
descriptors.append(descriptor);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case 0x26: {//DS2834
|
||||||
|
ThingDescriptor descriptor(temperatureHumiditySensorThingClassId, oneWireDevice.type, "One wire temperature and humidity sensor", parentDevice->id());
|
||||||
|
ParamList params;
|
||||||
|
params.append(Param(temperatureHumiditySensorThingAddressParamTypeId, oneWireDevice.address));
|
||||||
|
params.append(Param(temperatureHumiditySensorThingTypeParamTypeId, oneWireDevice.type));
|
||||||
|
foreach (Thing *existingThing, myThings().filterByThingClassId(temperatureHumiditySensorThingClassId)){
|
||||||
|
if (existingThing->paramValue(temperatureHumiditySensorThingAddressParamTypeId).toString() == oneWireDevice.address) {
|
||||||
|
descriptor.setThingId(existingThing->id());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
descriptor.setParams(params);
|
||||||
|
descriptors.append(descriptor);
|
||||||
|
break;
|
||||||
|
}
|
||||||
case 0x05: { //single channel switch
|
case 0x05: { //single channel switch
|
||||||
ThingDescriptor descriptor(singleChannelSwitchThingClassId, oneWireDevice.type, "One wire single channel switch", parentDevice->id());
|
ThingDescriptor descriptor(singleChannelSwitchThingClassId, oneWireDevice.type, "One wire single channel switch", parentDevice->id());
|
||||||
ParamList params;
|
ParamList params;
|
||||||
|
|
@ -466,14 +501,10 @@ void IntegrationPluginOneWire::onOneWireDevicesDiscovered(QList<Owfs::OwfsDevice
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (autoDiscoverEnabled) {
|
ThingDiscoveryInfo *info = m_runningDiscoveries.take(parentDevice);
|
||||||
emit autoThingsAppeared(descriptors);
|
if (info && m_runningDiscoveries.isEmpty()) {
|
||||||
} else {
|
info->addThingDescriptors(descriptors);
|
||||||
ThingDiscoveryInfo *info = m_runningDiscoveries.take(parentDevice);
|
info->finish(Thing::ThingErrorNoError);
|
||||||
if (info && m_runningDiscoveries.isEmpty()) {
|
|
||||||
info->addThingDescriptors(descriptors);
|
|
||||||
info->finish(Thing::ThingErrorNoError);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,7 @@ private:
|
||||||
QHash<Thing*, ThingDiscoveryInfo*> m_runningDiscoveries;
|
QHash<Thing*, ThingDiscoveryInfo*> m_runningDiscoveries;
|
||||||
|
|
||||||
void setupOwfsTemperatureSensor(ThingSetupInfo *info);
|
void setupOwfsTemperatureSensor(ThingSetupInfo *info);
|
||||||
|
void setupOwfsTemperatureHumiditySensor(ThingSetupInfo *info);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void onPluginTimer();
|
void onPluginTimer();
|
||||||
|
|
|
||||||
|
|
@ -31,16 +31,6 @@
|
||||||
"displayNameEvent": "Connected changed",
|
"displayNameEvent": "Connected changed",
|
||||||
"defaultValue": false,
|
"defaultValue": false,
|
||||||
"type": "bool"
|
"type": "bool"
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "64baf50e-8ed4-4526-8b92-7e4662d6fa39",
|
|
||||||
"name": "autoAdd",
|
|
||||||
"displayName": "Auto add one wire devices",
|
|
||||||
"displayNameAction": "Set auto add mode",
|
|
||||||
"displayNameEvent": "Auto add one wire devices changed",
|
|
||||||
"defaultValue": false,
|
|
||||||
"type": "bool",
|
|
||||||
"writable": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
@ -90,6 +80,64 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "39fd5605-2d8d-43ca-bee3-12636d2ce392",
|
||||||
|
"name": "temperatureHumiditySensor",
|
||||||
|
"displayName": "Temperature and Humidity Sensor",
|
||||||
|
"interfaces": ["temperaturesensor", "humiditysensor"],
|
||||||
|
"createMethods": ["discovery"],
|
||||||
|
"paramTypes": [
|
||||||
|
{
|
||||||
|
"id": "be838775-8d2a-4af3-9b65-e6059ed921fe",
|
||||||
|
"name": "address",
|
||||||
|
"displayName": "Address",
|
||||||
|
"type": "QString",
|
||||||
|
"readOnly": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3fd26103-fc3c-44ea-a343-1c46ebe601a2",
|
||||||
|
"name": "type",
|
||||||
|
"displayName": "Type",
|
||||||
|
"type": "QString",
|
||||||
|
"inputType": "TextLine",
|
||||||
|
"readOnly": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"stateTypes": [
|
||||||
|
{
|
||||||
|
"id": "813e3aba-4791-40e6-ac99-1f1cf97d397c",
|
||||||
|
"name": "connected",
|
||||||
|
"displayName": "Connected",
|
||||||
|
"displayNameEvent": "Connected changed",
|
||||||
|
"defaultValue": false,
|
||||||
|
"type": "bool"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "de6cbffa-93a2-4d31-99aa-44a335678d4b",
|
||||||
|
"name": "temperature",
|
||||||
|
"displayName": "Temperature",
|
||||||
|
"displayNameEvent": "Temperature changed",
|
||||||
|
"unit": "DegreeCelsius",
|
||||||
|
"type": "double",
|
||||||
|
"minValue": -55,
|
||||||
|
"maxValue": 125,
|
||||||
|
"defaultValue": 0,
|
||||||
|
"ioType": "analogInput"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "a74c7e14-f0ce-428b-9866-17f482ca6b77",
|
||||||
|
"name": "humidity",
|
||||||
|
"displayName": "Humidity",
|
||||||
|
"displayNameEvent": "Humidity changed",
|
||||||
|
"unit": "Percentage",
|
||||||
|
"type": "double",
|
||||||
|
"minValue": 0,
|
||||||
|
"maxValue": 100,
|
||||||
|
"defaultValue": 0,
|
||||||
|
"ioType": "analogInput"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "6db42501-5451-4aac-9525-5f886b3188e2",
|
"id": "6db42501-5451-4aac-9525-5f886b3188e2",
|
||||||
"name": "singleChannelSwitch",
|
"name": "singleChannelSwitch",
|
||||||
|
|
|
||||||
|
|
@ -182,6 +182,13 @@ double Owfs::getTemperature(const QByteArray &address)
|
||||||
return temperature.toDouble();
|
return temperature.toDouble();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double Owfs::getHumidity(const QByteArray &address)
|
||||||
|
{
|
||||||
|
QByteArray humidity = getValue(address, "humidity");
|
||||||
|
qDebug(dcOneWire()) << "Humidity" << humidity << humidity.replace(',','.').toDouble();
|
||||||
|
return humidity.toDouble();
|
||||||
|
}
|
||||||
|
|
||||||
QByteArray Owfs::getType(const QByteArray &address)
|
QByteArray Owfs::getType(const QByteArray &address)
|
||||||
{
|
{
|
||||||
QByteArray type = getValue(address, "type");
|
QByteArray type = getValue(address, "type");
|
||||||
|
|
|
||||||
|
|
@ -76,6 +76,7 @@ public:
|
||||||
bool isConnected(const QByteArray &address);
|
bool isConnected(const QByteArray &address);
|
||||||
|
|
||||||
double getTemperature(const QByteArray &address);
|
double getTemperature(const QByteArray &address);
|
||||||
|
double getHumidity(const QByteArray &address);
|
||||||
QByteArray getType(const QByteArray &address);
|
QByteArray getType(const QByteArray &address);
|
||||||
bool getSwitchOutput(const QByteArray &address, SwitchChannel channel);
|
bool getSwitchOutput(const QByteArray &address, SwitchChannel channel);
|
||||||
void setSwitchOutput(const QByteArray &address, SwitchChannel channel, bool state);
|
void setSwitchOutput(const QByteArray &address, SwitchChannel channel, bool state);
|
||||||
|
|
|
||||||
|
|
@ -9,53 +9,49 @@
|
||||||
<translation>Es wurde keine OWFS Schnittstelle initialisiert. Bitte richten Sie zuerst eine OWFS Schnittstelle ein.</translation>
|
<translation>Es wurde keine OWFS Schnittstelle initialisiert. Bitte richten Sie zuerst eine OWFS Schnittstelle ein.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../integrationpluginonewire.cpp" line="110"/>
|
<location filename="../integrationpluginonewire.cpp" line="119"/>
|
||||||
<source>All configured one wire interfaces are set up to automatically add new devices.</source>
|
|
||||||
<translation>Alle konfigurierten OWFS-Schnittstellen sind so eingerichtet, dass automatisch neue Geräte hinzugefügt werden.</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../integrationpluginonewire.cpp" line="129"/>
|
|
||||||
<source>There can only be one one wire interface per system.</source>
|
<source>There can only be one one wire interface per system.</source>
|
||||||
<extracomment>Error setting up thing</extracomment>
|
<extracomment>Error setting up thing</extracomment>
|
||||||
<translation>Es kann nur eine One-Wire-Schnittstelle pro System geben.</translation>
|
<translation>Es kann nur eine One-Wire-Schnittstelle pro System geben.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../integrationpluginonewire.cpp" line="138"/>
|
<location filename="../integrationpluginonewire.cpp" line="128"/>
|
||||||
<source>Error initializing one wire interface.</source>
|
<source>Error initializing one wire interface.</source>
|
||||||
<extracomment>Error setting up thing</extracomment>
|
<extracomment>Error setting up thing</extracomment>
|
||||||
<translation>Fehler beim Initialisieren der One-Wire-Schnittstelle.</translation>
|
<translation>Fehler beim Initialisieren der One-Wire-Schnittstelle.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../integrationpluginonewire.cpp" line="160"/>
|
<location filename="../integrationpluginonewire.cpp" line="239"/>
|
||||||
<source>No 1-Wire interface available</source>
|
<source>OWFS interface is not available.</source>
|
||||||
<translation>Keine One-Wire-Schnittstelle verfügbar</translation>
|
<translation>OWFS Schnittstelle ist nicht verfügbar.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>OneWire</name>
|
<name>OneWire</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="114"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="126"/>
|
||||||
<source>1-channel switch</source>
|
<source>1-channel switch</source>
|
||||||
<extracomment>The name of the ThingClass ({6db42501-5451-4aac-9525-5f886b3188e2})</extracomment>
|
<extracomment>The name of the ThingClass ({6db42501-5451-4aac-9525-5f886b3188e2})</extracomment>
|
||||||
<translation>1-Kanal Schalter</translation>
|
<translation>1-Kanal Schalter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="117"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="129"/>
|
||||||
<source>2-channel switch</source>
|
<source>2-channel switch</source>
|
||||||
<extracomment>The name of the ThingClass ({023f2b93-61e1-4422-97f5-3d5c14a6628f})</extracomment>
|
<extracomment>The name of the ThingClass ({023f2b93-61e1-4422-97f5-3d5c14a6628f})</extracomment>
|
||||||
<translation>2-Kanal Schalter</translation>
|
<translation>2-Kanal Schalter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="120"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="132"/>
|
||||||
<source>8-channel switch</source>
|
<source>8-channel switch</source>
|
||||||
<extracomment>The name of the ThingClass ({71691119-3bda-4424-b853-1a00f21086e1})</extracomment>
|
<extracomment>The name of the ThingClass ({71691119-3bda-4424-b853-1a00f21086e1})</extracomment>
|
||||||
<translation>8-Kanal Schalter</translation>
|
<translation>8-Kanal Schalter</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="123"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="135"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="126"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="138"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="129"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="141"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="132"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="144"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="147"/>
|
||||||
<source>Address</source>
|
<source>Address</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {e3e6e596-0cd4-42a3-8401-ccf6349314b7})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {e3e6e596-0cd4-42a3-8401-ccf6349314b7})
|
||||||
----------
|
----------
|
||||||
|
|
@ -63,29 +59,12 @@ The name of the ParamType (ThingClass: dualChannelSwitch, Type: thing, ID: {b9a1
|
||||||
----------
|
----------
|
||||||
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {c9d6b7fd-fa21-473a-b5ed-9c5227749f06})
|
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {c9d6b7fd-fa21-473a-b5ed-9c5227749f06})
|
||||||
----------
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureHumiditySensor, Type: thing, ID: {be838775-8d2a-4af3-9b65-e6059ed921fe})
|
||||||
|
----------
|
||||||
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {b4368f34-d9bb-496f-84ba-091bd4b6a332})</extracomment>
|
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {b4368f34-d9bb-496f-84ba-091bd4b6a332})</extracomment>
|
||||||
<translation>Adresse</translation>
|
<translation>Adresse</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="135"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="138"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="141"/>
|
|
||||||
<source>Auto add one wire devices</source>
|
|
||||||
<extracomment>The name of the ParamType (ThingClass: oneWireInterface, ActionType: autoAdd, ID: {64baf50e-8ed4-4526-8b92-7e4662d6fa39})
|
|
||||||
----------
|
|
||||||
The name of the ParamType (ThingClass: oneWireInterface, EventType: autoAdd, ID: {64baf50e-8ed4-4526-8b92-7e4662d6fa39})
|
|
||||||
----------
|
|
||||||
The name of the StateType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass oneWireInterface</extracomment>
|
|
||||||
<translation>Automatisches hinzufügen von One-Wire-Geräten</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="144"/>
|
|
||||||
<source>Auto add one wire devices changed</source>
|
|
||||||
<extracomment>The name of the EventType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass oneWireInterface</extracomment>
|
|
||||||
<translation>Automatisches hinzufügen von One-Wire-Geräten geändert</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="147"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="150"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="150"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="153"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="153"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="156"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="156"/>
|
||||||
|
|
@ -95,6 +74,9 @@ The name of the StateType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="168"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="168"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="171"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="171"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="174"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="174"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="177"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="180"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="183"/>
|
||||||
<source>Connected</source>
|
<source>Connected</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, EventType: connected, ID: {b99585e0-5147-46e3-9474-fba555bac68a})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, EventType: connected, ID: {b99585e0-5147-46e3-9474-fba555bac68a})
|
||||||
----------
|
----------
|
||||||
|
|
@ -108,6 +90,10 @@ The name of the ParamType (ThingClass: singleChannelSwitch, EventType: connected
|
||||||
----------
|
----------
|
||||||
The name of the StateType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
The name of the StateType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureHumiditySensor, EventType: connected, ID: {813e3aba-4791-40e6-ac99-1f1cf97d397c})
|
||||||
|
----------
|
||||||
|
The name of the StateType ({813e3aba-4791-40e6-ac99-1f1cf97d397c}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
The name of the ParamType (ThingClass: temperatureSensor, EventType: connected, ID: {32305a16-b042-4574-8bd7-ad99d9e8e5da})
|
The name of the ParamType (ThingClass: temperatureSensor, EventType: connected, ID: {32305a16-b042-4574-8bd7-ad99d9e8e5da})
|
||||||
----------
|
----------
|
||||||
The name of the StateType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
The name of the StateType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
||||||
|
|
@ -118,11 +104,12 @@ The name of the StateType ({d0ded173-c382-4ee3-8e24-3647b4e16afa}) of ThingClass
|
||||||
<translation>Verbunden</translation>
|
<translation>Verbunden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="177"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="180"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="183"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="186"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="186"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="189"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="189"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="192"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="195"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="198"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="201"/>
|
||||||
<source>Connected changed</source>
|
<source>Connected changed</source>
|
||||||
<extracomment>The name of the EventType ({b99585e0-5147-46e3-9474-fba555bac68a}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the EventType ({b99585e0-5147-46e3-9474-fba555bac68a}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -130,15 +117,17 @@ The name of the EventType ({fb6e63db-316b-4959-a349-0ff58a679f71}) of ThingClass
|
||||||
----------
|
----------
|
||||||
The name of the EventType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
The name of the EventType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
The name of the EventType ({813e3aba-4791-40e6-ac99-1f1cf97d397c}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
The name of the EventType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
The name of the EventType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
||||||
----------
|
----------
|
||||||
The name of the EventType ({d0ded173-c382-4ee3-8e24-3647b4e16afa}) of ThingClass oneWireInterface</extracomment>
|
The name of the EventType ({d0ded173-c382-4ee3-8e24-3647b4e16afa}) of ThingClass oneWireInterface</extracomment>
|
||||||
<translation>Verbunden geändert</translation>
|
<translation>Verbunden geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="192"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="204"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="195"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="207"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="198"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="210"/>
|
||||||
<source>Digital output</source>
|
<source>Digital output</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: singleChannelSwitch, ActionType: digitalOutput, ID: {ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40})
|
<extracomment>The name of the ParamType (ThingClass: singleChannelSwitch, ActionType: digitalOutput, ID: {ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40})
|
||||||
----------
|
----------
|
||||||
|
|
@ -148,12 +137,12 @@ The name of the StateType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass
|
||||||
<translation>Digitaler Ausgang</translation>
|
<translation>Digitaler Ausgang</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="201"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="204"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="207"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="210"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="213"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="213"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="216"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="216"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="219"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="222"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="225"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="228"/>
|
||||||
<source>Digital output 1</source>
|
<source>Digital output 1</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput1, ID: {78fa12c0-246c-4112-8be6-5943d3c3cda5})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput1, ID: {78fa12c0-246c-4112-8be6-5943d3c3cda5})
|
||||||
----------
|
----------
|
||||||
|
|
@ -169,8 +158,8 @@ The name of the StateType ({f8b6b4a7-355c-4580-a676-8a4d0d619ff9}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 1</translation>
|
<translation>Digitaler Ausgang 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="219"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="231"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="222"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="234"/>
|
||||||
<source>Digital output 1 changed</source>
|
<source>Digital output 1 changed</source>
|
||||||
<extracomment>The name of the EventType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the EventType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -178,12 +167,12 @@ The name of the EventType ({f8b6b4a7-355c-4580-a676-8a4d0d619ff9}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 1 geändert</translation>
|
<translation>Digitaler Ausgang 1 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="225"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="228"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="231"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="234"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="237"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="237"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="240"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="240"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="243"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="246"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="249"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="252"/>
|
||||||
<source>Digital output 2</source>
|
<source>Digital output 2</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput2, ID: {c7d2f4a8-2b13-4a48-81a8-72f4908c775b})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput2, ID: {c7d2f4a8-2b13-4a48-81a8-72f4908c775b})
|
||||||
----------
|
----------
|
||||||
|
|
@ -199,8 +188,8 @@ The name of the StateType ({82a78aed-5994-4af5-aecb-1806be5de1f3}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 2</translation>
|
<translation>Digitaler Ausgang 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="243"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="255"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="246"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="258"/>
|
||||||
<source>Digital output 2 changed</source>
|
<source>Digital output 2 changed</source>
|
||||||
<extracomment>The name of the EventType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the EventType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -208,9 +197,9 @@ The name of the EventType ({82a78aed-5994-4af5-aecb-1806be5de1f3}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 2 geändert</translation>
|
<translation>Digitaler Ausgang 2 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="249"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="261"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="252"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="264"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="255"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="267"/>
|
||||||
<source>Digital output 3</source>
|
<source>Digital output 3</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput3, ID: {4b2ac595-eba9-4364-8cd7-00ff8bccda5a})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput3, ID: {4b2ac595-eba9-4364-8cd7-00ff8bccda5a})
|
||||||
----------
|
----------
|
||||||
|
|
@ -220,15 +209,15 @@ The name of the StateType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 3</translation>
|
<translation>Digitaler Ausgang 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="258"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="270"/>
|
||||||
<source>Digital output 3 changed</source>
|
<source>Digital output 3 changed</source>
|
||||||
<extracomment>The name of the EventType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang 3 geändert</translation>
|
<translation>Digitaler Ausgang 3 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="261"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="273"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="264"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="276"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="267"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="279"/>
|
||||||
<source>Digital output 4</source>
|
<source>Digital output 4</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput4, ID: {bbbd1863-ef04-4687-803d-3c9ccdfc8d8f})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput4, ID: {bbbd1863-ef04-4687-803d-3c9ccdfc8d8f})
|
||||||
----------
|
----------
|
||||||
|
|
@ -238,15 +227,15 @@ The name of the StateType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 4</translation>
|
<translation>Digitaler Ausgang 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="270"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="282"/>
|
||||||
<source>Digital output 4 changed</source>
|
<source>Digital output 4 changed</source>
|
||||||
<extracomment>The name of the EventType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang 4 geändert</translation>
|
<translation>Digitaler Ausgang 4 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="273"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="285"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="276"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="288"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="279"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="291"/>
|
||||||
<source>Digital output 5</source>
|
<source>Digital output 5</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput5, ID: {50855d2b-a700-4030-8674-fee00cc0b4e2})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput5, ID: {50855d2b-a700-4030-8674-fee00cc0b4e2})
|
||||||
----------
|
----------
|
||||||
|
|
@ -256,15 +245,15 @@ The name of the StateType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 5</translation>
|
<translation>Digitaler Ausgang 5</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="282"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="294"/>
|
||||||
<source>Digital output 5 changed</source>
|
<source>Digital output 5 changed</source>
|
||||||
<extracomment>The name of the EventType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang 5 geändert</translation>
|
<translation>Digitaler Ausgang 5 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="285"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="297"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="288"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="300"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="291"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="303"/>
|
||||||
<source>Digital output 6</source>
|
<source>Digital output 6</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput6, ID: {a91ce593-09ba-4754-8a2e-e3f507313585})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput6, ID: {a91ce593-09ba-4754-8a2e-e3f507313585})
|
||||||
----------
|
----------
|
||||||
|
|
@ -274,15 +263,15 @@ The name of the StateType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 6</translation>
|
<translation>Digitaler Ausgang 6</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="294"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="306"/>
|
||||||
<source>Digital output 6 changed</source>
|
<source>Digital output 6 changed</source>
|
||||||
<extracomment>The name of the EventType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang 6 geändert</translation>
|
<translation>Digitaler Ausgang 6 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="297"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="309"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="300"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="312"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="303"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="315"/>
|
||||||
<source>Digital output 7</source>
|
<source>Digital output 7</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput7, ID: {5f46047c-b00d-486f-b169-b738fbc89cdb})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput7, ID: {5f46047c-b00d-486f-b169-b738fbc89cdb})
|
||||||
----------
|
----------
|
||||||
|
|
@ -292,15 +281,15 @@ The name of the StateType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 7</translation>
|
<translation>Digitaler Ausgang 7</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="306"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="318"/>
|
||||||
<source>Digital output 7 changed</source>
|
<source>Digital output 7 changed</source>
|
||||||
<extracomment>The name of the EventType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang 7 geändert</translation>
|
<translation>Digitaler Ausgang 7 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="309"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="321"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="312"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="324"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="315"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="327"/>
|
||||||
<source>Digital output 8</source>
|
<source>Digital output 8</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput8, ID: {63334a17-0847-4f53-8007-1b5e72b88aa8})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput8, ID: {63334a17-0847-4f53-8007-1b5e72b88aa8})
|
||||||
----------
|
----------
|
||||||
|
|
@ -310,56 +299,65 @@ The name of the StateType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass
|
||||||
<translation>Digitaler Ausgang 8</translation>
|
<translation>Digitaler Ausgang 8</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="318"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="330"/>
|
||||||
<source>Digital output 8 changed</source>
|
<source>Digital output 8 changed</source>
|
||||||
<extracomment>The name of the EventType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang 8 geändert</translation>
|
<translation>Digitaler Ausgang 8 geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="321"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="333"/>
|
||||||
<source>Digital output changed</source>
|
<source>Digital output changed</source>
|
||||||
<extracomment>The name of the EventType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
||||||
<translation>Digitaler Ausgang geändert</translation>
|
<translation>Digitaler Ausgang geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="324"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="336"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="339"/>
|
||||||
|
<source>Humidity</source>
|
||||||
|
<extracomment>The name of the ParamType (ThingClass: temperatureHumiditySensor, EventType: humidity, ID: {a74c7e14-f0ce-428b-9866-17f482ca6b77})
|
||||||
|
----------
|
||||||
|
The name of the StateType ({a74c7e14-f0ce-428b-9866-17f482ca6b77}) of ThingClass temperatureHumiditySensor</extracomment>
|
||||||
|
<translation>Luftfeuchte</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="342"/>
|
||||||
|
<source>Humidity changed</source>
|
||||||
|
<extracomment>The name of the EventType ({a74c7e14-f0ce-428b-9866-17f482ca6b77}) of ThingClass temperatureHumiditySensor</extracomment>
|
||||||
|
<translation>Luftfeuchte geändert</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="345"/>
|
||||||
<source>OWFS init arguments</source>
|
<source>OWFS init arguments</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: oneWireInterface, Type: thing, ID: {a0e773ff-fd19-499e-96f0-830168229cd3})</extracomment>
|
<extracomment>The name of the ParamType (ThingClass: oneWireInterface, Type: thing, ID: {a0e773ff-fd19-499e-96f0-830168229cd3})</extracomment>
|
||||||
<translation>OWFS-Init-Argumente</translation>
|
<translation>OWFS-Init-Argumente</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="327"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="348"/>
|
||||||
<source>OWFS interface</source>
|
<source>OWFS interface</source>
|
||||||
<extracomment>The name of the ThingClass ({c36c68d9-6182-4ae1-972d-b8b5e0cf185f})</extracomment>
|
<extracomment>The name of the ThingClass ({c36c68d9-6182-4ae1-972d-b8b5e0cf185f})</extracomment>
|
||||||
<translation>OWFS Schnittstelle</translation>
|
<translation>OWFS Schnittstelle</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="330"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="351"/>
|
||||||
<source>One Wire</source>
|
<source>One Wire</source>
|
||||||
<extracomment>The name of the plugin OneWire ({2c697fb7-0645-466d-9cb9-aa1922c85bee})</extracomment>
|
<extracomment>The name of the plugin OneWire ({2c697fb7-0645-466d-9cb9-aa1922c85bee})</extracomment>
|
||||||
<translation>One Wire</translation>
|
<translation>One Wire</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="333"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="354"/>
|
||||||
<source>One wire</source>
|
<source>One wire</source>
|
||||||
<extracomment>The name of the vendor ({cecc5fae-29cf-40c0-b1f8-0af2dc8e8a63})</extracomment>
|
<extracomment>The name of the vendor ({cecc5fae-29cf-40c0-b1f8-0af2dc8e8a63})</extracomment>
|
||||||
<translation>One Wire</translation>
|
<translation>One Wire</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="336"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="357"/>
|
||||||
<source>Set auto add mode</source>
|
|
||||||
<extracomment>The name of the ActionType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass oneWireInterface</extracomment>
|
|
||||||
<translation>Setze automatischen Add-Modus</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="339"/>
|
|
||||||
<source>Set digital output</source>
|
<source>Set digital output</source>
|
||||||
<extracomment>The name of the ActionType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang</translation>
|
<translation>Setze digitalen Ausgang</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="342"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="360"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="345"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="363"/>
|
||||||
<source>Set digital output 1</source>
|
<source>Set digital output 1</source>
|
||||||
<extracomment>The name of the ActionType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the ActionType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -367,8 +365,8 @@ The name of the ActionType ({f8b6b4a7-355c-4580-a676-8a4d0d619ff9}) of ThingClas
|
||||||
<translation>Setze digitalen Ausgang 1</translation>
|
<translation>Setze digitalen Ausgang 1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="348"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="366"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="351"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="369"/>
|
||||||
<source>Set digital output 2</source>
|
<source>Set digital output 2</source>
|
||||||
<extracomment>The name of the ActionType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the ActionType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -376,67 +374,83 @@ The name of the ActionType ({82a78aed-5994-4af5-aecb-1806be5de1f3}) of ThingClas
|
||||||
<translation>Setze digitalen Ausgang 2</translation>
|
<translation>Setze digitalen Ausgang 2</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="354"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="372"/>
|
||||||
<source>Set digital output 3</source>
|
<source>Set digital output 3</source>
|
||||||
<extracomment>The name of the ActionType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang 3</translation>
|
<translation>Setze digitalen Ausgang 3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="357"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="375"/>
|
||||||
<source>Set digital output 4</source>
|
<source>Set digital output 4</source>
|
||||||
<extracomment>The name of the ActionType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang 4</translation>
|
<translation>Setze digitalen Ausgang 4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="360"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="378"/>
|
||||||
<source>Set digital output 5</source>
|
<source>Set digital output 5</source>
|
||||||
<extracomment>The name of the ActionType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang 5</translation>
|
<translation>Setze digitalen Ausgang 5</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="363"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="381"/>
|
||||||
<source>Set digital output 6</source>
|
<source>Set digital output 6</source>
|
||||||
<extracomment>The name of the ActionType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang 6</translation>
|
<translation>Setze digitalen Ausgang 6</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="366"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="384"/>
|
||||||
<source>Set digital output 7</source>
|
<source>Set digital output 7</source>
|
||||||
<extracomment>The name of the ActionType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang 7</translation>
|
<translation>Setze digitalen Ausgang 7</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="369"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="387"/>
|
||||||
<source>Set digital output 8</source>
|
<source>Set digital output 8</source>
|
||||||
<extracomment>The name of the ActionType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation>Setze digitalen Ausgang 8</translation>
|
<translation>Setze digitalen Ausgang 8</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="372"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="390"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="375"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="393"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="396"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="399"/>
|
||||||
<source>Temperature</source>
|
<source>Temperature</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: temperatureSensor, EventType: temperature, ID: {b04ee2a5-9b27-4ffc-9e12-7e05f5a41690})
|
<extracomment>The name of the ParamType (ThingClass: temperatureHumiditySensor, EventType: temperature, ID: {de6cbffa-93a2-4d31-99aa-44a335678d4b})
|
||||||
|
----------
|
||||||
|
The name of the StateType ({de6cbffa-93a2-4d31-99aa-44a335678d4b}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureSensor, EventType: temperature, ID: {b04ee2a5-9b27-4ffc-9e12-7e05f5a41690})
|
||||||
----------
|
----------
|
||||||
The name of the StateType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
The name of the StateType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
||||||
<translation>Temperatur</translation>
|
<translation>Temperatur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="378"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="402"/>
|
||||||
<source>Temperature Sensor</source>
|
<source>Temperature Sensor</source>
|
||||||
<extracomment>The name of the ThingClass ({e13beb24-953c-48b3-9262-7cde31d42ef5})</extracomment>
|
<extracomment>The name of the ThingClass ({e13beb24-953c-48b3-9262-7cde31d42ef5})</extracomment>
|
||||||
<translation>Termperatursensor</translation>
|
<translation>Termperatursensor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="381"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="405"/>
|
||||||
|
<source>Temperature and Humidity Sensor</source>
|
||||||
|
<extracomment>The name of the ThingClass ({39fd5605-2d8d-43ca-bee3-12636d2ce392})</extracomment>
|
||||||
|
<translation>Termperatur- und Luftfeuchtesensor</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="408"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="411"/>
|
||||||
<source>Temperature changed</source>
|
<source>Temperature changed</source>
|
||||||
<extracomment>The name of the EventType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
<extracomment>The name of the EventType ({de6cbffa-93a2-4d31-99aa-44a335678d4b}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
|
The name of the EventType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
||||||
<translation>Temperatur geändert</translation>
|
<translation>Temperatur geändert</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="384"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="414"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="387"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="417"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="390"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="420"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="393"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="423"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="426"/>
|
||||||
<source>Type</source>
|
<source>Type</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {34c8f771-4141-4183-9eaf-becbaf362ac8})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {34c8f771-4141-4183-9eaf-becbaf362ac8})
|
||||||
----------
|
----------
|
||||||
|
|
@ -444,6 +458,8 @@ The name of the ParamType (ThingClass: dualChannelSwitch, Type: thing, ID: {b71e
|
||||||
----------
|
----------
|
||||||
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {6efc8cb6-81ae-45c0-8910-708401d1ba68})
|
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {6efc8cb6-81ae-45c0-8910-708401d1ba68})
|
||||||
----------
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureHumiditySensor, Type: thing, ID: {3fd26103-fc3c-44ea-a343-1c46ebe601a2})
|
||||||
|
----------
|
||||||
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {5005822d-6a32-4bb8-9b77-f79da7382f76})</extracomment>
|
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {5005822d-6a32-4bb8-9b77-f79da7382f76})</extracomment>
|
||||||
<translation>Typ</translation>
|
<translation>Typ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
||||||
|
|
@ -9,53 +9,49 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../integrationpluginonewire.cpp" line="110"/>
|
<location filename="../integrationpluginonewire.cpp" line="119"/>
|
||||||
<source>All configured one wire interfaces are set up to automatically add new devices.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../integrationpluginonewire.cpp" line="129"/>
|
|
||||||
<source>There can only be one one wire interface per system.</source>
|
<source>There can only be one one wire interface per system.</source>
|
||||||
<extracomment>Error setting up thing</extracomment>
|
<extracomment>Error setting up thing</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../integrationpluginonewire.cpp" line="138"/>
|
<location filename="../integrationpluginonewire.cpp" line="128"/>
|
||||||
<source>Error initializing one wire interface.</source>
|
<source>Error initializing one wire interface.</source>
|
||||||
<extracomment>Error setting up thing</extracomment>
|
<extracomment>Error setting up thing</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../integrationpluginonewire.cpp" line="160"/>
|
<location filename="../integrationpluginonewire.cpp" line="239"/>
|
||||||
<source>No 1-Wire interface available</source>
|
<source>OWFS interface is not available.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>OneWire</name>
|
<name>OneWire</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="114"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="126"/>
|
||||||
<source>1-channel switch</source>
|
<source>1-channel switch</source>
|
||||||
<extracomment>The name of the ThingClass ({6db42501-5451-4aac-9525-5f886b3188e2})</extracomment>
|
<extracomment>The name of the ThingClass ({6db42501-5451-4aac-9525-5f886b3188e2})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="117"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="129"/>
|
||||||
<source>2-channel switch</source>
|
<source>2-channel switch</source>
|
||||||
<extracomment>The name of the ThingClass ({023f2b93-61e1-4422-97f5-3d5c14a6628f})</extracomment>
|
<extracomment>The name of the ThingClass ({023f2b93-61e1-4422-97f5-3d5c14a6628f})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="120"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="132"/>
|
||||||
<source>8-channel switch</source>
|
<source>8-channel switch</source>
|
||||||
<extracomment>The name of the ThingClass ({71691119-3bda-4424-b853-1a00f21086e1})</extracomment>
|
<extracomment>The name of the ThingClass ({71691119-3bda-4424-b853-1a00f21086e1})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="123"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="135"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="126"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="138"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="129"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="141"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="132"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="144"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="147"/>
|
||||||
<source>Address</source>
|
<source>Address</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {e3e6e596-0cd4-42a3-8401-ccf6349314b7})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {e3e6e596-0cd4-42a3-8401-ccf6349314b7})
|
||||||
----------
|
----------
|
||||||
|
|
@ -63,29 +59,12 @@ The name of the ParamType (ThingClass: dualChannelSwitch, Type: thing, ID: {b9a1
|
||||||
----------
|
----------
|
||||||
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {c9d6b7fd-fa21-473a-b5ed-9c5227749f06})
|
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {c9d6b7fd-fa21-473a-b5ed-9c5227749f06})
|
||||||
----------
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureHumiditySensor, Type: thing, ID: {be838775-8d2a-4af3-9b65-e6059ed921fe})
|
||||||
|
----------
|
||||||
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {b4368f34-d9bb-496f-84ba-091bd4b6a332})</extracomment>
|
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {b4368f34-d9bb-496f-84ba-091bd4b6a332})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="135"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="138"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="141"/>
|
|
||||||
<source>Auto add one wire devices</source>
|
|
||||||
<extracomment>The name of the ParamType (ThingClass: oneWireInterface, ActionType: autoAdd, ID: {64baf50e-8ed4-4526-8b92-7e4662d6fa39})
|
|
||||||
----------
|
|
||||||
The name of the ParamType (ThingClass: oneWireInterface, EventType: autoAdd, ID: {64baf50e-8ed4-4526-8b92-7e4662d6fa39})
|
|
||||||
----------
|
|
||||||
The name of the StateType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass oneWireInterface</extracomment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="144"/>
|
|
||||||
<source>Auto add one wire devices changed</source>
|
|
||||||
<extracomment>The name of the EventType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass oneWireInterface</extracomment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="147"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="150"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="150"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="153"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="153"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="156"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="156"/>
|
||||||
|
|
@ -95,6 +74,9 @@ The name of the StateType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="168"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="168"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="171"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="171"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="174"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="174"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="177"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="180"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="183"/>
|
||||||
<source>Connected</source>
|
<source>Connected</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, EventType: connected, ID: {b99585e0-5147-46e3-9474-fba555bac68a})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, EventType: connected, ID: {b99585e0-5147-46e3-9474-fba555bac68a})
|
||||||
----------
|
----------
|
||||||
|
|
@ -108,6 +90,10 @@ The name of the ParamType (ThingClass: singleChannelSwitch, EventType: connected
|
||||||
----------
|
----------
|
||||||
The name of the StateType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
The name of the StateType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureHumiditySensor, EventType: connected, ID: {813e3aba-4791-40e6-ac99-1f1cf97d397c})
|
||||||
|
----------
|
||||||
|
The name of the StateType ({813e3aba-4791-40e6-ac99-1f1cf97d397c}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
The name of the ParamType (ThingClass: temperatureSensor, EventType: connected, ID: {32305a16-b042-4574-8bd7-ad99d9e8e5da})
|
The name of the ParamType (ThingClass: temperatureSensor, EventType: connected, ID: {32305a16-b042-4574-8bd7-ad99d9e8e5da})
|
||||||
----------
|
----------
|
||||||
The name of the StateType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
The name of the StateType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
||||||
|
|
@ -118,11 +104,12 @@ The name of the StateType ({d0ded173-c382-4ee3-8e24-3647b4e16afa}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="177"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="180"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="183"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="186"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="186"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="189"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="189"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="192"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="195"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="198"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="201"/>
|
||||||
<source>Connected changed</source>
|
<source>Connected changed</source>
|
||||||
<extracomment>The name of the EventType ({b99585e0-5147-46e3-9474-fba555bac68a}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the EventType ({b99585e0-5147-46e3-9474-fba555bac68a}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -130,15 +117,17 @@ The name of the EventType ({fb6e63db-316b-4959-a349-0ff58a679f71}) of ThingClass
|
||||||
----------
|
----------
|
||||||
The name of the EventType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
The name of the EventType ({16bae8e8-bfe1-4648-9018-f6ce610f4236}) of ThingClass singleChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
The name of the EventType ({813e3aba-4791-40e6-ac99-1f1cf97d397c}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
The name of the EventType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
The name of the EventType ({32305a16-b042-4574-8bd7-ad99d9e8e5da}) of ThingClass temperatureSensor
|
||||||
----------
|
----------
|
||||||
The name of the EventType ({d0ded173-c382-4ee3-8e24-3647b4e16afa}) of ThingClass oneWireInterface</extracomment>
|
The name of the EventType ({d0ded173-c382-4ee3-8e24-3647b4e16afa}) of ThingClass oneWireInterface</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="192"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="204"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="195"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="207"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="198"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="210"/>
|
||||||
<source>Digital output</source>
|
<source>Digital output</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: singleChannelSwitch, ActionType: digitalOutput, ID: {ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40})
|
<extracomment>The name of the ParamType (ThingClass: singleChannelSwitch, ActionType: digitalOutput, ID: {ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40})
|
||||||
----------
|
----------
|
||||||
|
|
@ -148,12 +137,12 @@ The name of the StateType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="201"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="204"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="207"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="210"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="213"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="213"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="216"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="216"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="219"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="222"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="225"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="228"/>
|
||||||
<source>Digital output 1</source>
|
<source>Digital output 1</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput1, ID: {78fa12c0-246c-4112-8be6-5943d3c3cda5})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput1, ID: {78fa12c0-246c-4112-8be6-5943d3c3cda5})
|
||||||
----------
|
----------
|
||||||
|
|
@ -169,8 +158,8 @@ The name of the StateType ({f8b6b4a7-355c-4580-a676-8a4d0d619ff9}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="219"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="231"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="222"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="234"/>
|
||||||
<source>Digital output 1 changed</source>
|
<source>Digital output 1 changed</source>
|
||||||
<extracomment>The name of the EventType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the EventType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -178,12 +167,12 @@ The name of the EventType ({f8b6b4a7-355c-4580-a676-8a4d0d619ff9}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="225"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="228"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="231"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="234"/>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="237"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="237"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="240"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="240"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="243"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="246"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="249"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="252"/>
|
||||||
<source>Digital output 2</source>
|
<source>Digital output 2</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput2, ID: {c7d2f4a8-2b13-4a48-81a8-72f4908c775b})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput2, ID: {c7d2f4a8-2b13-4a48-81a8-72f4908c775b})
|
||||||
----------
|
----------
|
||||||
|
|
@ -199,8 +188,8 @@ The name of the StateType ({82a78aed-5994-4af5-aecb-1806be5de1f3}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="243"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="255"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="246"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="258"/>
|
||||||
<source>Digital output 2 changed</source>
|
<source>Digital output 2 changed</source>
|
||||||
<extracomment>The name of the EventType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the EventType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -208,9 +197,9 @@ The name of the EventType ({82a78aed-5994-4af5-aecb-1806be5de1f3}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="249"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="261"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="252"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="264"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="255"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="267"/>
|
||||||
<source>Digital output 3</source>
|
<source>Digital output 3</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput3, ID: {4b2ac595-eba9-4364-8cd7-00ff8bccda5a})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput3, ID: {4b2ac595-eba9-4364-8cd7-00ff8bccda5a})
|
||||||
----------
|
----------
|
||||||
|
|
@ -220,15 +209,15 @@ The name of the StateType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="258"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="270"/>
|
||||||
<source>Digital output 3 changed</source>
|
<source>Digital output 3 changed</source>
|
||||||
<extracomment>The name of the EventType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="261"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="273"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="264"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="276"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="267"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="279"/>
|
||||||
<source>Digital output 4</source>
|
<source>Digital output 4</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput4, ID: {bbbd1863-ef04-4687-803d-3c9ccdfc8d8f})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput4, ID: {bbbd1863-ef04-4687-803d-3c9ccdfc8d8f})
|
||||||
----------
|
----------
|
||||||
|
|
@ -238,15 +227,15 @@ The name of the StateType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="270"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="282"/>
|
||||||
<source>Digital output 4 changed</source>
|
<source>Digital output 4 changed</source>
|
||||||
<extracomment>The name of the EventType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="273"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="285"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="276"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="288"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="279"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="291"/>
|
||||||
<source>Digital output 5</source>
|
<source>Digital output 5</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput5, ID: {50855d2b-a700-4030-8674-fee00cc0b4e2})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput5, ID: {50855d2b-a700-4030-8674-fee00cc0b4e2})
|
||||||
----------
|
----------
|
||||||
|
|
@ -256,15 +245,15 @@ The name of the StateType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="282"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="294"/>
|
||||||
<source>Digital output 5 changed</source>
|
<source>Digital output 5 changed</source>
|
||||||
<extracomment>The name of the EventType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="285"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="297"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="288"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="300"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="291"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="303"/>
|
||||||
<source>Digital output 6</source>
|
<source>Digital output 6</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput6, ID: {a91ce593-09ba-4754-8a2e-e3f507313585})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput6, ID: {a91ce593-09ba-4754-8a2e-e3f507313585})
|
||||||
----------
|
----------
|
||||||
|
|
@ -274,15 +263,15 @@ The name of the StateType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="294"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="306"/>
|
||||||
<source>Digital output 6 changed</source>
|
<source>Digital output 6 changed</source>
|
||||||
<extracomment>The name of the EventType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="297"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="309"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="300"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="312"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="303"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="315"/>
|
||||||
<source>Digital output 7</source>
|
<source>Digital output 7</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput7, ID: {5f46047c-b00d-486f-b169-b738fbc89cdb})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput7, ID: {5f46047c-b00d-486f-b169-b738fbc89cdb})
|
||||||
----------
|
----------
|
||||||
|
|
@ -292,15 +281,15 @@ The name of the StateType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="306"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="318"/>
|
||||||
<source>Digital output 7 changed</source>
|
<source>Digital output 7 changed</source>
|
||||||
<extracomment>The name of the EventType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="309"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="321"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="312"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="324"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="315"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="327"/>
|
||||||
<source>Digital output 8</source>
|
<source>Digital output 8</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput8, ID: {63334a17-0847-4f53-8007-1b5e72b88aa8})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, ActionType: digitalOutput8, ID: {63334a17-0847-4f53-8007-1b5e72b88aa8})
|
||||||
----------
|
----------
|
||||||
|
|
@ -310,56 +299,65 @@ The name of the StateType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="318"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="330"/>
|
||||||
<source>Digital output 8 changed</source>
|
<source>Digital output 8 changed</source>
|
||||||
<extracomment>The name of the EventType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="321"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="333"/>
|
||||||
<source>Digital output changed</source>
|
<source>Digital output changed</source>
|
||||||
<extracomment>The name of the EventType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
<extracomment>The name of the EventType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="324"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="336"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="339"/>
|
||||||
|
<source>Humidity</source>
|
||||||
|
<extracomment>The name of the ParamType (ThingClass: temperatureHumiditySensor, EventType: humidity, ID: {a74c7e14-f0ce-428b-9866-17f482ca6b77})
|
||||||
|
----------
|
||||||
|
The name of the StateType ({a74c7e14-f0ce-428b-9866-17f482ca6b77}) of ThingClass temperatureHumiditySensor</extracomment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="342"/>
|
||||||
|
<source>Humidity changed</source>
|
||||||
|
<extracomment>The name of the EventType ({a74c7e14-f0ce-428b-9866-17f482ca6b77}) of ThingClass temperatureHumiditySensor</extracomment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="345"/>
|
||||||
<source>OWFS init arguments</source>
|
<source>OWFS init arguments</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: oneWireInterface, Type: thing, ID: {a0e773ff-fd19-499e-96f0-830168229cd3})</extracomment>
|
<extracomment>The name of the ParamType (ThingClass: oneWireInterface, Type: thing, ID: {a0e773ff-fd19-499e-96f0-830168229cd3})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="327"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="348"/>
|
||||||
<source>OWFS interface</source>
|
<source>OWFS interface</source>
|
||||||
<extracomment>The name of the ThingClass ({c36c68d9-6182-4ae1-972d-b8b5e0cf185f})</extracomment>
|
<extracomment>The name of the ThingClass ({c36c68d9-6182-4ae1-972d-b8b5e0cf185f})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="330"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="351"/>
|
||||||
<source>One Wire</source>
|
<source>One Wire</source>
|
||||||
<extracomment>The name of the plugin OneWire ({2c697fb7-0645-466d-9cb9-aa1922c85bee})</extracomment>
|
<extracomment>The name of the plugin OneWire ({2c697fb7-0645-466d-9cb9-aa1922c85bee})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="333"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="354"/>
|
||||||
<source>One wire</source>
|
<source>One wire</source>
|
||||||
<extracomment>The name of the vendor ({cecc5fae-29cf-40c0-b1f8-0af2dc8e8a63})</extracomment>
|
<extracomment>The name of the vendor ({cecc5fae-29cf-40c0-b1f8-0af2dc8e8a63})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="336"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="357"/>
|
||||||
<source>Set auto add mode</source>
|
|
||||||
<extracomment>The name of the ActionType ({64baf50e-8ed4-4526-8b92-7e4662d6fa39}) of ThingClass oneWireInterface</extracomment>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="339"/>
|
|
||||||
<source>Set digital output</source>
|
<source>Set digital output</source>
|
||||||
<extracomment>The name of the ActionType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({ca10a9fd-e4e0-4608-a2d2-6a4ce9644f40}) of ThingClass singleChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="342"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="360"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="345"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="363"/>
|
||||||
<source>Set digital output 1</source>
|
<source>Set digital output 1</source>
|
||||||
<extracomment>The name of the ActionType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the ActionType ({78fa12c0-246c-4112-8be6-5943d3c3cda5}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -367,8 +365,8 @@ The name of the ActionType ({f8b6b4a7-355c-4580-a676-8a4d0d619ff9}) of ThingClas
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="348"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="366"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="351"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="369"/>
|
||||||
<source>Set digital output 2</source>
|
<source>Set digital output 2</source>
|
||||||
<extracomment>The name of the ActionType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
<extracomment>The name of the ActionType ({c7d2f4a8-2b13-4a48-81a8-72f4908c775b}) of ThingClass eightChannelSwitch
|
||||||
----------
|
----------
|
||||||
|
|
@ -376,67 +374,83 @@ The name of the ActionType ({82a78aed-5994-4af5-aecb-1806be5de1f3}) of ThingClas
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="354"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="372"/>
|
||||||
<source>Set digital output 3</source>
|
<source>Set digital output 3</source>
|
||||||
<extracomment>The name of the ActionType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({4b2ac595-eba9-4364-8cd7-00ff8bccda5a}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="357"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="375"/>
|
||||||
<source>Set digital output 4</source>
|
<source>Set digital output 4</source>
|
||||||
<extracomment>The name of the ActionType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({bbbd1863-ef04-4687-803d-3c9ccdfc8d8f}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="360"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="378"/>
|
||||||
<source>Set digital output 5</source>
|
<source>Set digital output 5</source>
|
||||||
<extracomment>The name of the ActionType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({50855d2b-a700-4030-8674-fee00cc0b4e2}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="363"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="381"/>
|
||||||
<source>Set digital output 6</source>
|
<source>Set digital output 6</source>
|
||||||
<extracomment>The name of the ActionType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({a91ce593-09ba-4754-8a2e-e3f507313585}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="366"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="384"/>
|
||||||
<source>Set digital output 7</source>
|
<source>Set digital output 7</source>
|
||||||
<extracomment>The name of the ActionType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({5f46047c-b00d-486f-b169-b738fbc89cdb}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="369"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="387"/>
|
||||||
<source>Set digital output 8</source>
|
<source>Set digital output 8</source>
|
||||||
<extracomment>The name of the ActionType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
<extracomment>The name of the ActionType ({63334a17-0847-4f53-8007-1b5e72b88aa8}) of ThingClass eightChannelSwitch</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="372"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="390"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="375"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="393"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="396"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="399"/>
|
||||||
<source>Temperature</source>
|
<source>Temperature</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: temperatureSensor, EventType: temperature, ID: {b04ee2a5-9b27-4ffc-9e12-7e05f5a41690})
|
<extracomment>The name of the ParamType (ThingClass: temperatureHumiditySensor, EventType: temperature, ID: {de6cbffa-93a2-4d31-99aa-44a335678d4b})
|
||||||
|
----------
|
||||||
|
The name of the StateType ({de6cbffa-93a2-4d31-99aa-44a335678d4b}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureSensor, EventType: temperature, ID: {b04ee2a5-9b27-4ffc-9e12-7e05f5a41690})
|
||||||
----------
|
----------
|
||||||
The name of the StateType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
The name of the StateType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="378"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="402"/>
|
||||||
<source>Temperature Sensor</source>
|
<source>Temperature Sensor</source>
|
||||||
<extracomment>The name of the ThingClass ({e13beb24-953c-48b3-9262-7cde31d42ef5})</extracomment>
|
<extracomment>The name of the ThingClass ({e13beb24-953c-48b3-9262-7cde31d42ef5})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="381"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="405"/>
|
||||||
<source>Temperature changed</source>
|
<source>Temperature and Humidity Sensor</source>
|
||||||
<extracomment>The name of the EventType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
<extracomment>The name of the ThingClass ({39fd5605-2d8d-43ca-bee3-12636d2ce392})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="384"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="408"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="387"/>
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="411"/>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="390"/>
|
<source>Temperature changed</source>
|
||||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="393"/>
|
<extracomment>The name of the EventType ({de6cbffa-93a2-4d31-99aa-44a335678d4b}) of ThingClass temperatureHumiditySensor
|
||||||
|
----------
|
||||||
|
The name of the EventType ({b04ee2a5-9b27-4ffc-9e12-7e05f5a41690}) of ThingClass temperatureSensor</extracomment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="414"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="417"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="420"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="423"/>
|
||||||
|
<location filename="../../../build-nymea-plugins-Desktop-Debug/onewire/plugininfo.h" line="426"/>
|
||||||
<source>Type</source>
|
<source>Type</source>
|
||||||
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {34c8f771-4141-4183-9eaf-becbaf362ac8})
|
<extracomment>The name of the ParamType (ThingClass: eightChannelSwitch, Type: thing, ID: {34c8f771-4141-4183-9eaf-becbaf362ac8})
|
||||||
----------
|
----------
|
||||||
|
|
@ -444,6 +458,8 @@ The name of the ParamType (ThingClass: dualChannelSwitch, Type: thing, ID: {b71e
|
||||||
----------
|
----------
|
||||||
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {6efc8cb6-81ae-45c0-8910-708401d1ba68})
|
The name of the ParamType (ThingClass: singleChannelSwitch, Type: thing, ID: {6efc8cb6-81ae-45c0-8910-708401d1ba68})
|
||||||
----------
|
----------
|
||||||
|
The name of the ParamType (ThingClass: temperatureHumiditySensor, Type: thing, ID: {3fd26103-fc3c-44ea-a343-1c46ebe601a2})
|
||||||
|
----------
|
||||||
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {5005822d-6a32-4bb8-9b77-f79da7382f76})</extracomment>
|
The name of the ParamType (ThingClass: temperatureSensor, Type: thing, ID: {5005822d-6a32-4bb8-9b77-f79da7382f76})</extracomment>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue