added voltage and current for all phases
This commit is contained in:
parent
78aee3cbb6
commit
3d0dd6839b
@ -34,8 +34,12 @@
|
||||
#include "registerdescriptor.h"
|
||||
|
||||
static const QHash<ModbusRegisterType, ModbusRegisterDescriptor> sdm630RegisterMap {
|
||||
{ModbusRegisterType::Voltage, ModbusRegisterDescriptor(30043, 4, 2, "V", "float")}, //Average line to neutral volts
|
||||
{ModbusRegisterType::Current, ModbusRegisterDescriptor(30047, 4, 2, "A", "float")}, //Average line current
|
||||
{ModbusRegisterType::VoltageL1, ModbusRegisterDescriptor(30001, 4, 2, "V", "float")},
|
||||
{ModbusRegisterType::VoltageL2, ModbusRegisterDescriptor(30003, 4, 2, "V", "float")},
|
||||
{ModbusRegisterType::VoltageL3, ModbusRegisterDescriptor(30005, 4, 2, "V", "float")},
|
||||
{ModbusRegisterType::CurrentL1, ModbusRegisterDescriptor(30007, 4, 2, "A", "float")},
|
||||
{ModbusRegisterType::CurrentL2, ModbusRegisterDescriptor(30009, 4, 2, "A", "float")},
|
||||
{ModbusRegisterType::CurrentL3, ModbusRegisterDescriptor(30011, 4, 2, "A", "float")},
|
||||
{ModbusRegisterType::ActivePower, ModbusRegisterDescriptor(30053, 4, 2, "W", "float")}, //Total system power
|
||||
{ModbusRegisterType::Frequency, ModbusRegisterDescriptor(30071, 4, 2, "Hz", "float")},
|
||||
{ModbusRegisterType::PowerFactor, ModbusRegisterDescriptor(30067, 4, 2, "Degree", "float")}, //Total system phase angle
|
||||
|
||||
@ -42,11 +42,6 @@ EnergyMeter::EnergyMeter(ModbusRtuMaster *modbusMaster, int slaveAddress, const
|
||||
|
||||
}
|
||||
|
||||
bool EnergyMeter::init()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
QUuid EnergyMeter::modbusRtuMasterUuid()
|
||||
{
|
||||
return m_modbusRtuMaster->modbusUuid();
|
||||
@ -57,78 +52,67 @@ bool EnergyMeter::connected()
|
||||
return m_connected;
|
||||
}
|
||||
|
||||
bool EnergyMeter::getVoltage()
|
||||
bool EnergyMeter::getVoltageL1()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::Voltage))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::Voltage);
|
||||
getRegister(ModbusRegisterType::Voltage, descriptor);
|
||||
return true;
|
||||
return getRegister(ModbusRegisterType::VoltageL1);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getCurrent()
|
||||
bool EnergyMeter::getVoltageL2()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::Current))
|
||||
return false;
|
||||
return getRegister(ModbusRegisterType::VoltageL2);
|
||||
}
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::Current);
|
||||
getRegister(ModbusRegisterType::Current, descriptor);
|
||||
return true;
|
||||
bool EnergyMeter::getVoltageL3()
|
||||
{
|
||||
return getRegister(ModbusRegisterType::VoltageL3);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getCurrentL1()
|
||||
{
|
||||
return getRegister(ModbusRegisterType::CurrentL1);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getCurrentL2()
|
||||
{
|
||||
return getRegister(ModbusRegisterType::CurrentL2);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getCurrentL3()
|
||||
{
|
||||
return getRegister(ModbusRegisterType::CurrentL3);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getFrequency()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::Frequency))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::Frequency);
|
||||
getRegister(ModbusRegisterType::Frequency, descriptor);
|
||||
return true;
|
||||
return getRegister(ModbusRegisterType::Frequency);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getPowerFactor()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::PowerFactor))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::PowerFactor);
|
||||
getRegister(ModbusRegisterType::PowerFactor, descriptor);
|
||||
return true;
|
||||
return getRegister(ModbusRegisterType::PowerFactor);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getActivePower()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::ActivePower))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::ActivePower);
|
||||
getRegister(ModbusRegisterType::ActivePower, descriptor);
|
||||
return true;
|
||||
return getRegister(ModbusRegisterType::ActivePower);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getEnergyProduced()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::EnergyProduced))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::EnergyProduced);
|
||||
getRegister(ModbusRegisterType::EnergyProduced, descriptor);
|
||||
return true;
|
||||
return getRegister(ModbusRegisterType::EnergyProduced);
|
||||
}
|
||||
|
||||
bool EnergyMeter::getEnergyConsumed()
|
||||
{
|
||||
if (!m_modbusRegisters.contains(ModbusRegisterType::EnergyConsumed))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(ModbusRegisterType::EnergyConsumed);
|
||||
getRegister(ModbusRegisterType::EnergyConsumed, descriptor);
|
||||
return true;
|
||||
return getRegister(ModbusRegisterType::EnergyConsumed);
|
||||
}
|
||||
|
||||
void EnergyMeter::getRegister(ModbusRegisterType type, ModbusRegisterDescriptor descriptor)
|
||||
bool EnergyMeter::getRegister(ModbusRegisterType type)
|
||||
{
|
||||
if (!m_modbusRegisters.contains(type))
|
||||
return false;
|
||||
|
||||
ModbusRegisterDescriptor descriptor = m_modbusRegisters.value(type);
|
||||
|
||||
ModbusRtuReply *reply = nullptr;
|
||||
if (descriptor.functionCode() == 3){
|
||||
@ -164,16 +148,36 @@ void EnergyMeter::getRegister(ModbusRegisterType type, ModbusRegisterDescriptor
|
||||
return;
|
||||
}
|
||||
|
||||
if (type == ModbusRegisterType::Voltage) {
|
||||
if (type == ModbusRegisterType::VoltageL1) {
|
||||
if (descriptor.unit() == "mV")
|
||||
value.f /= 1000.00;
|
||||
|
||||
emit voltageReceived(value.f);
|
||||
} else if (type == ModbusRegisterType::Current) {
|
||||
emit voltageL1Received(value.f);
|
||||
} else if (type == ModbusRegisterType::VoltageL2) {
|
||||
if (descriptor.unit() == "mV")
|
||||
value.f /= 1000.00;
|
||||
|
||||
emit voltageL2Received(value.f);
|
||||
} else if (type == ModbusRegisterType::VoltageL3) {
|
||||
if (descriptor.unit() == "mV")
|
||||
value.f /= 1000.00;
|
||||
|
||||
emit voltageL3Received(value.f);
|
||||
} else if (type == ModbusRegisterType::CurrentL1) {
|
||||
if (descriptor.unit() == "mA")
|
||||
value.f /= 1000.00;
|
||||
|
||||
emit currentReceived(value.f);
|
||||
emit currentL1Received(value.f);
|
||||
} else if (type == ModbusRegisterType::CurrentL2) {
|
||||
if (descriptor.unit() == "mA")
|
||||
value.f /= 1000.00;
|
||||
|
||||
emit currentL2Received(value.f);
|
||||
} else if (type == ModbusRegisterType::CurrentL3) {
|
||||
if (descriptor.unit() == "mA")
|
||||
value.f /= 1000.00;
|
||||
|
||||
emit currentL3Received(value.f);
|
||||
} else if (type == ModbusRegisterType::ActivePower) {
|
||||
if (descriptor.unit() == "kW") {
|
||||
value.f *= 1000;
|
||||
@ -197,5 +201,6 @@ void EnergyMeter::getRegister(ModbusRegisterType type, ModbusRegisterDescriptor
|
||||
emit producedEnergyReceived(value.f);
|
||||
}
|
||||
});
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@ -42,12 +42,15 @@ class EnergyMeter : public QObject
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit EnergyMeter(ModbusRtuMaster *modbusMaster, int slaveAddress, const QHash<ModbusRegisterType, ModbusRegisterDescriptor> &modbusRegisters, QObject *parent = nullptr);
|
||||
bool init();
|
||||
|
||||
QUuid modbusRtuMasterUuid();
|
||||
bool connected();
|
||||
bool getVoltage();
|
||||
bool getCurrent();
|
||||
bool getVoltageL1();
|
||||
bool getVoltageL2();
|
||||
bool getVoltageL3();
|
||||
bool getCurrentL1();
|
||||
bool getCurrentL2();
|
||||
bool getCurrentL3();
|
||||
bool getFrequency();
|
||||
bool getPowerFactor();
|
||||
bool getActivePower();
|
||||
@ -68,13 +71,17 @@ private:
|
||||
|
||||
QHash<ModbusRegisterType, ModbusRegisterDescriptor> m_modbusRegisters;
|
||||
|
||||
void getRegister(ModbusRegisterType type, ModbusRegisterDescriptor descriptor);
|
||||
bool getRegister(ModbusRegisterType type);
|
||||
|
||||
signals:
|
||||
void connectedChanged(bool connected);
|
||||
|
||||
void voltageReceived(double voltage);
|
||||
void currentReceived(double current);
|
||||
void voltageL1Received(double voltage);
|
||||
void voltageL2Received(double voltage);
|
||||
void voltageL3Received(double voltage);
|
||||
void currentL1Received(double current);
|
||||
void currentL2Received(double current);
|
||||
void currentL3Received(double current);
|
||||
void frequencyReceived(double freqeuncy);
|
||||
void activePowerReceived(double power);
|
||||
void powerFactorReceived(double powerFactor);
|
||||
|
||||
@ -33,8 +33,12 @@
|
||||
#include "registerdescriptor.h"
|
||||
|
||||
static const QHash<ModbusRegisterType, ModbusRegisterDescriptor> pro380RegisterMap {
|
||||
{ModbusRegisterType::Voltage, ModbusRegisterDescriptor(0x5002, 3, 2, "V", "float")}, //L1 Voltage
|
||||
{ModbusRegisterType::Current, ModbusRegisterDescriptor(0x500C, 3, 2, "A", "float")}, //L1 Current
|
||||
{ModbusRegisterType::VoltageL1, ModbusRegisterDescriptor(0x5002, 3, 2, "V", "float")}, //L1 Voltage
|
||||
{ModbusRegisterType::VoltageL2, ModbusRegisterDescriptor(0x5004, 3, 2, "V", "float")}, //L2 Voltage
|
||||
{ModbusRegisterType::VoltageL3, ModbusRegisterDescriptor(0x5006, 3, 2, "V", "float")}, //L3 Voltage
|
||||
{ModbusRegisterType::CurrentL1, ModbusRegisterDescriptor(0x500C, 3, 2, "A", "float")}, //L1 Current
|
||||
{ModbusRegisterType::CurrentL2, ModbusRegisterDescriptor(0x500E, 3, 2, "A", "float")}, //L2 Current
|
||||
{ModbusRegisterType::CurrentL3, ModbusRegisterDescriptor(0x5010, 3, 2, "A", "float")}, //L3 Current
|
||||
{ModbusRegisterType::ActivePower, ModbusRegisterDescriptor(0x5012, 3, 2, "kW", "float")}, //Total active power
|
||||
{ModbusRegisterType::Frequency, ModbusRegisterDescriptor(0x5008, 3, 2, "Hz", "float")},
|
||||
{ModbusRegisterType::PowerFactor, ModbusRegisterDescriptor(0x502A, 3, 2, "Degree", "float")},
|
||||
|
||||
@ -50,11 +50,23 @@ IntegrationPluginEnergyMeters::IntegrationPluginEnergyMeters()
|
||||
m_connectionStateTypeIds.insert(pro380ThingClassId, pro380ConnectedStateTypeId);
|
||||
m_connectionStateTypeIds.insert(sdm630ThingClassId, sdm630ConnectedStateTypeId);
|
||||
|
||||
m_voltageStateTypeIds.insert(pro380ThingClassId, pro380VoltageStateTypeId);
|
||||
m_voltageStateTypeIds.insert(sdm630ThingClassId, sdm630VoltageStateTypeId);
|
||||
m_voltageL1StateTypeIds.insert(pro380ThingClassId, pro380VoltageL1StateTypeId);
|
||||
m_voltageL1StateTypeIds.insert(sdm630ThingClassId, sdm630VoltageL1StateTypeId);
|
||||
|
||||
m_currentStateTypeIds.insert(pro380ThingClassId, pro380CurrentStateTypeId);
|
||||
m_currentStateTypeIds.insert(sdm630ThingClassId, sdm630CurrentStateTypeId);
|
||||
m_voltageL2StateTypeIds.insert(pro380ThingClassId, pro380VoltageL2StateTypeId);
|
||||
m_voltageL2StateTypeIds.insert(sdm630ThingClassId, sdm630VoltageL2StateTypeId);
|
||||
|
||||
m_voltageL3StateTypeIds.insert(pro380ThingClassId, pro380VoltageL3StateTypeId);
|
||||
m_voltageL3StateTypeIds.insert(sdm630ThingClassId, sdm630VoltageL3StateTypeId);
|
||||
|
||||
m_currentL1StateTypeIds.insert(pro380ThingClassId, pro380CurrentL1StateTypeId);
|
||||
m_currentL1StateTypeIds.insert(sdm630ThingClassId, sdm630CurrentL1StateTypeId);
|
||||
|
||||
m_currentL2StateTypeIds.insert(pro380ThingClassId, pro380CurrentL2StateTypeId);
|
||||
m_currentL2StateTypeIds.insert(sdm630ThingClassId, sdm630CurrentL2StateTypeId);
|
||||
|
||||
m_currentL3StateTypeIds.insert(pro380ThingClassId, pro380CurrentL3StateTypeId);
|
||||
m_currentL3StateTypeIds.insert(sdm630ThingClassId, sdm630CurrentL3StateTypeId);
|
||||
|
||||
m_activePowerStateTypeIds.insert(pro380ThingClassId, pro380CurrentPowerEventTypeId);
|
||||
m_activePowerStateTypeIds.insert(sdm630ThingClassId, sdm630CurrentPowerStateTypeId);
|
||||
@ -159,8 +171,12 @@ void IntegrationPluginEnergyMeters::setupThing(ThingSetupInfo *info)
|
||||
connect(meter, &EnergyMeter::consumedEnergyReceived, info, [this, info, meter] {
|
||||
qCDebug(dcEnergyMeters()) << "Reply received, setup finished";
|
||||
connect(meter, &EnergyMeter::connectedChanged, this, &IntegrationPluginEnergyMeters::onConnectionStateChanged);
|
||||
connect(meter, &EnergyMeter::voltageReceived, this, &IntegrationPluginEnergyMeters::onVoltageReceived);
|
||||
connect(meter, &EnergyMeter::currentReceived, this, &IntegrationPluginEnergyMeters::onCurrentReceived);
|
||||
connect(meter, &EnergyMeter::voltageL1Received, this, &IntegrationPluginEnergyMeters::onVoltageL1Received);
|
||||
connect(meter, &EnergyMeter::voltageL2Received, this, &IntegrationPluginEnergyMeters::onVoltageL2Received);
|
||||
connect(meter, &EnergyMeter::voltageL3Received, this, &IntegrationPluginEnergyMeters::onVoltageL3Received);
|
||||
connect(meter, &EnergyMeter::currentL1Received, this, &IntegrationPluginEnergyMeters::onCurrentL1Received);
|
||||
connect(meter, &EnergyMeter::currentL2Received, this, &IntegrationPluginEnergyMeters::onCurrentL2Received);
|
||||
connect(meter, &EnergyMeter::currentL3Received, this, &IntegrationPluginEnergyMeters::onCurrentL3Received);
|
||||
connect(meter, &EnergyMeter::activePowerReceived, this, &IntegrationPluginEnergyMeters::onActivePowerReceived);
|
||||
connect(meter, &EnergyMeter::powerFactorReceived, this, &IntegrationPluginEnergyMeters::onPowerFactorReceived);
|
||||
connect(meter, &EnergyMeter::frequencyReceived, this, &IntegrationPluginEnergyMeters::onFrequencyReceived);
|
||||
@ -228,7 +244,7 @@ void IntegrationPluginEnergyMeters::startUpdateCycle(EnergyMeter *meter)
|
||||
}
|
||||
}
|
||||
m_updateCycleInProgress.insert(meter, true);
|
||||
meter->getVoltage();
|
||||
meter->getVoltageL1();
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::updateCycleFinished(EnergyMeter *meter)
|
||||
@ -254,18 +270,62 @@ void IntegrationPluginEnergyMeters::onConnectionStateChanged(bool status)
|
||||
thing->setStateValue(m_connectionStateTypeIds.value(thing->thingClassId()), status);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onVoltageReceived(double voltage)
|
||||
void IntegrationPluginEnergyMeters::onVoltageL1Received(double voltage)
|
||||
{
|
||||
EnergyMeter *meter = static_cast<EnergyMeter *>(sender());
|
||||
Thing *thing = m_energyMeters.key(meter);
|
||||
if (!thing)
|
||||
return;
|
||||
|
||||
meter->getCurrent();
|
||||
thing->setStateValue(m_voltageStateTypeIds.value(thing->thingClassId()), voltage);
|
||||
meter->getVoltageL2();
|
||||
thing->setStateValue(m_voltageL1StateTypeIds.value(thing->thingClassId()), voltage);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onCurrentReceived(double current)
|
||||
void IntegrationPluginEnergyMeters::onVoltageL2Received(double voltage)
|
||||
{
|
||||
EnergyMeter *meter = static_cast<EnergyMeter *>(sender());
|
||||
Thing *thing = m_energyMeters.key(meter);
|
||||
if (!thing)
|
||||
return;
|
||||
|
||||
meter->getVoltageL3();
|
||||
thing->setStateValue(m_voltageL2StateTypeIds.value(thing->thingClassId()), voltage);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onVoltageL3Received(double voltage)
|
||||
{
|
||||
EnergyMeter *meter = static_cast<EnergyMeter *>(sender());
|
||||
Thing *thing = m_energyMeters.key(meter);
|
||||
if (!thing)
|
||||
return;
|
||||
|
||||
meter->getCurrentL1();
|
||||
thing->setStateValue(m_voltageL3StateTypeIds.value(thing->thingClassId()), voltage);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onCurrentL1Received(double current)
|
||||
{
|
||||
EnergyMeter *meter = static_cast<EnergyMeter *>(sender());
|
||||
Thing *thing = m_energyMeters.key(meter);
|
||||
if (!thing)
|
||||
return;
|
||||
|
||||
meter->getCurrentL2();
|
||||
thing->setStateValue(m_currentL1StateTypeIds.value(thing->thingClassId()), current);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onCurrentL2Received(double current)
|
||||
{
|
||||
EnergyMeter *meter = static_cast<EnergyMeter *>(sender());
|
||||
Thing *thing = m_energyMeters.key(meter);
|
||||
if (!thing)
|
||||
return;
|
||||
|
||||
meter->getCurrentL3();
|
||||
thing->setStateValue(m_currentL2StateTypeIds.value(thing->thingClassId()), current);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onCurrentL3Received(double current)
|
||||
{
|
||||
EnergyMeter *meter = static_cast<EnergyMeter *>(sender());
|
||||
Thing *thing = m_energyMeters.key(meter);
|
||||
@ -273,7 +333,7 @@ void IntegrationPluginEnergyMeters::onCurrentReceived(double current)
|
||||
return;
|
||||
|
||||
meter->getActivePower();
|
||||
thing->setStateValue(m_currentStateTypeIds.value(thing->thingClassId()), current);
|
||||
thing->setStateValue(m_currentL3StateTypeIds.value(thing->thingClassId()), current);
|
||||
}
|
||||
|
||||
void IntegrationPluginEnergyMeters::onActivePowerReceived(double power)
|
||||
|
||||
@ -58,8 +58,12 @@ public:
|
||||
private:
|
||||
PluginTimer *m_reconnectTimer = nullptr;
|
||||
QHash<ThingClassId, StateTypeId> m_connectionStateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_voltageStateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_currentStateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_voltageL1StateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_voltageL2StateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_voltageL3StateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_currentL1StateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_currentL2StateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_currentL3StateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_activePowerStateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_frequencyStateTypeIds;
|
||||
QHash<ThingClassId, StateTypeId> m_powerFactorStateTypeIds;
|
||||
@ -80,8 +84,12 @@ private:
|
||||
|
||||
private slots:
|
||||
void onConnectionStateChanged(bool status);
|
||||
void onVoltageReceived(double voltage);
|
||||
void onCurrentReceived(double current);
|
||||
void onVoltageL1Received(double voltage);
|
||||
void onVoltageL2Received(double voltage);
|
||||
void onVoltageL3Received(double voltage);
|
||||
void onCurrentL1Received(double current);
|
||||
void onCurrentL2Received(double current);
|
||||
void onCurrentL3Received(double current);
|
||||
void onActivePowerReceived(double power);
|
||||
void onFrequencyReceived(double frequency);
|
||||
void onPowerFactorReceived(double powerFactor);
|
||||
|
||||
@ -63,18 +63,54 @@
|
||||
},
|
||||
{
|
||||
"id": "04dba21a-7447-46b9-b9ae-095e5769e511",
|
||||
"name": "voltage",
|
||||
"displayName": "Voltage",
|
||||
"displayNameEvent": "Voltage changed",
|
||||
"name": "voltageL1",
|
||||
"displayName": "Voltage L1",
|
||||
"displayNameEvent": "Voltage L1 changed",
|
||||
"type": "double",
|
||||
"unit": "Volt",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "270d0c34-0a0c-4655-985f-faad6efd1afd",
|
||||
"name": "voltageL2",
|
||||
"displayName": "Voltage L2",
|
||||
"displayNameEvent": "Voltage L2 changed",
|
||||
"type": "double",
|
||||
"unit": "Volt",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "a1da8cfd-37cc-4c87-b857-e942cd90daec",
|
||||
"name": "voltageL3",
|
||||
"displayName": "Voltage L3",
|
||||
"displayNameEvent": "Voltage L3 changed",
|
||||
"type": "double",
|
||||
"unit": "Volt",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "1e077a3b-2dab-4ec4-ae96-ab49a564fe31",
|
||||
"name": "current",
|
||||
"displayName": "Current",
|
||||
"displayNameEvent": "Current changed",
|
||||
"name": "currentL1",
|
||||
"displayName": "Current L1",
|
||||
"displayNameEvent": "Current L1 changed",
|
||||
"type": "double",
|
||||
"unit": "Ampere",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "d2f54061-0807-47de-944c-68c8118ece91",
|
||||
"name": "currentL2",
|
||||
"displayName": "Current L2",
|
||||
"displayNameEvent": "Current L2 changed",
|
||||
"type": "double",
|
||||
"unit": "Ampere",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "610b20fb-2718-4f02-ac6e-12a9ef8c7615",
|
||||
"name": "currentL3",
|
||||
"displayName": "Current L3",
|
||||
"displayNameEvent": "Current L3 changed",
|
||||
"type": "double",
|
||||
"unit": "Ampere",
|
||||
"defaultValue": 0
|
||||
@ -175,19 +211,55 @@
|
||||
"defaultValue": false
|
||||
},
|
||||
{
|
||||
"id": "4636ec5c-fcb9-45b7-ad68-2818cb615ce1",
|
||||
"name": "voltage",
|
||||
"displayName": "Voltage",
|
||||
"displayNameEvent": "Voltage changed",
|
||||
"id": "db018146-0441-4dc0-9834-6d43ebaf8311",
|
||||
"name": "voltageL1",
|
||||
"displayName": "Voltage L1",
|
||||
"displayNameEvent": "Voltage L1 changed",
|
||||
"type": "double",
|
||||
"unit": "Volt",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "96bc65ce-5bde-4a69-9ebf-711d65c6501c",
|
||||
"name": "current",
|
||||
"displayName": "Current",
|
||||
"displayNameEvent": "Current changed",
|
||||
"id": "406f6d02-d5eb-49b3-87da-3247568e6054",
|
||||
"name": "voltageL2",
|
||||
"displayName": "Voltage L2",
|
||||
"displayNameEvent": "Voltage L2 changed",
|
||||
"type": "double",
|
||||
"unit": "Volt",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "ace6294d-deaa-4d9a-af78-d64379bcb229",
|
||||
"name": "voltageL3",
|
||||
"displayName": "Voltage L3",
|
||||
"displayNameEvent": "Voltage L3 changed",
|
||||
"type": "double",
|
||||
"unit": "Volt",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "4baf1d08-5ffa-49cf-95ef-9527b0c6f081",
|
||||
"name": "currentL1",
|
||||
"displayName": "Current L1",
|
||||
"displayNameEvent": "Current L1 changed",
|
||||
"type": "double",
|
||||
"unit": "Ampere",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "99e47d06-0a6a-4bfd-b164-61ecb6ba2818",
|
||||
"name": "currentL2",
|
||||
"displayName": "Current L2",
|
||||
"displayNameEvent": "Current L2 changed",
|
||||
"type": "double",
|
||||
"unit": "Ampere",
|
||||
"defaultValue": 0
|
||||
},
|
||||
{
|
||||
"id": "4a092a66-352d-4d60-90ab-6ac5f58b92fe",
|
||||
"name": "currentL3",
|
||||
"displayName": "Current L3",
|
||||
"displayNameEvent": "Current L3 changed",
|
||||
"type": "double",
|
||||
"unit": "Ampere",
|
||||
"defaultValue": 0
|
||||
|
||||
@ -35,8 +35,12 @@
|
||||
#include <QHash>
|
||||
|
||||
enum ModbusRegisterType {
|
||||
Voltage,
|
||||
Current,
|
||||
VoltageL1,
|
||||
VoltageL2,
|
||||
VoltageL3,
|
||||
CurrentL1,
|
||||
CurrentL2,
|
||||
CurrentL3,
|
||||
ActivePower,
|
||||
Frequency,
|
||||
PowerFactor,
|
||||
|
||||
@ -4,10 +4,10 @@
|
||||
<context>
|
||||
<name>EnergyMeters</name>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="85"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="88"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="94"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="118"/>
|
||||
<source>Active power</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentPower, ID: {c824e97b-a6d1-4030-9d7a-00af6fb8e1c3})
|
||||
----------
|
||||
@ -19,8 +19,8 @@ The name of the StateType ({464eff60-11c2-46b7-98f5-1aa8172e5a2d}) of ThingClass
|
||||
<translation>Leistung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="97"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="100"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="124"/>
|
||||
<source>Active power changed</source>
|
||||
<extracomment>The name of the EventType ({c824e97b-a6d1-4030-9d7a-00af6fb8e1c3}) of ThingClass sdm630
|
||||
----------
|
||||
@ -28,16 +28,16 @@ The name of the EventType ({464eff60-11c2-46b7-98f5-1aa8172e5a2d}) of ThingClass
|
||||
<translation>Leistung geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="103"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="127"/>
|
||||
<source>B+G e-tech</source>
|
||||
<extracomment>The name of the vendor ({215035fe-95e8-43d8-a52e-0a31b787d902})</extracomment>
|
||||
<translation>B+G e-tech</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="106"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="133"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="139"/>
|
||||
<source>Connected</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: connected, ID: {8050bd0b-1dad-4a7e-b632-c71ead3c9f8b})
|
||||
----------
|
||||
@ -49,8 +49,8 @@ The name of the StateType ({7f9bc504-0882-4b86-83b1-42fa345acfd9}) of ThingClass
|
||||
<translation>Verbunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="118"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="142"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="145"/>
|
||||
<source>Connected changed</source>
|
||||
<extracomment>The name of the EventType ({8050bd0b-1dad-4a7e-b632-c71ead3c9f8b}) of ThingClass sdm630
|
||||
----------
|
||||
@ -58,40 +58,88 @@ The name of the EventType ({7f9bc504-0882-4b86-83b1-42fa345acfd9}) of ThingClass
|
||||
<translation>Verbunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="124"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="127"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="133"/>
|
||||
<source>Current</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: current, ID: {96bc65ce-5bde-4a69-9ebf-711d65c6501c})
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="157"/>
|
||||
<source>Current L1</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentL1, ID: {4baf1d08-5ffa-49cf-95ef-9527b0c6f081})
|
||||
----------
|
||||
The name of the StateType ({96bc65ce-5bde-4a69-9ebf-711d65c6501c}) of ThingClass sdm630
|
||||
The name of the StateType ({4baf1d08-5ffa-49cf-95ef-9527b0c6f081}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: current, ID: {1e077a3b-2dab-4ec4-ae96-ab49a564fe31})
|
||||
The name of the ParamType (ThingClass: pro380, EventType: currentL1, ID: {1e077a3b-2dab-4ec4-ae96-ab49a564fe31})
|
||||
----------
|
||||
The name of the StateType ({1e077a3b-2dab-4ec4-ae96-ab49a564fe31}) of ThingClass pro380</extracomment>
|
||||
<translation>Strom</translation>
|
||||
<translation>Strom L1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="139"/>
|
||||
<source>Current changed</source>
|
||||
<extracomment>The name of the EventType ({96bc65ce-5bde-4a69-9ebf-711d65c6501c}) of ThingClass sdm630
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="163"/>
|
||||
<source>Current L1 changed</source>
|
||||
<extracomment>The name of the EventType ({4baf1d08-5ffa-49cf-95ef-9527b0c6f081}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({1e077a3b-2dab-4ec4-ae96-ab49a564fe31}) of ThingClass pro380</extracomment>
|
||||
<translation>Strom geändert</translation>
|
||||
<translation>Strom L1 geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="142"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="175"/>
|
||||
<source>Current L2</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentL2, ID: {99e47d06-0a6a-4bfd-b164-61ecb6ba2818})
|
||||
----------
|
||||
The name of the StateType ({99e47d06-0a6a-4bfd-b164-61ecb6ba2818}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: currentL2, ID: {d2f54061-0807-47de-944c-68c8118ece91})
|
||||
----------
|
||||
The name of the StateType ({d2f54061-0807-47de-944c-68c8118ece91}) of ThingClass pro380</extracomment>
|
||||
<translation>Strom L2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="181"/>
|
||||
<source>Current L2 changed</source>
|
||||
<extracomment>The name of the EventType ({99e47d06-0a6a-4bfd-b164-61ecb6ba2818}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({d2f54061-0807-47de-944c-68c8118ece91}) of ThingClass pro380</extracomment>
|
||||
<translation>Strom L2 geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="193"/>
|
||||
<source>Current L3</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentL3, ID: {4a092a66-352d-4d60-90ab-6ac5f58b92fe})
|
||||
----------
|
||||
The name of the StateType ({4a092a66-352d-4d60-90ab-6ac5f58b92fe}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: currentL3, ID: {610b20fb-2718-4f02-ac6e-12a9ef8c7615})
|
||||
----------
|
||||
The name of the StateType ({610b20fb-2718-4f02-ac6e-12a9ef8c7615}) of ThingClass pro380</extracomment>
|
||||
<translation>Strom L3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="196"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="199"/>
|
||||
<source>Current L3 changed</source>
|
||||
<extracomment>The name of the EventType ({4a092a66-352d-4d60-90ab-6ac5f58b92fe}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({610b20fb-2718-4f02-ac6e-12a9ef8c7615}) of ThingClass pro380</extracomment>
|
||||
<translation>Strom L3 geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="202"/>
|
||||
<source>EnergyMeters</source>
|
||||
<extracomment>The name of the plugin EnergyMeters ({56e95111-fb6b-4f63-9a0a-a5ee001e89ed})</extracomment>
|
||||
<translation>Energiezähler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="145"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="205"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="208"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="211"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="214"/>
|
||||
<source>Frequency</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: frequency, ID: {ab24f26c-dc15-4ec3-8d76-06a48285440b})
|
||||
----------
|
||||
@ -103,8 +151,8 @@ The name of the StateType ({bb6fd00c-3bbb-4977-bb8a-96787bb6f5c5}) of ThingClass
|
||||
<translation>Frequenz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="217"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="220"/>
|
||||
<source>Frequency changed</source>
|
||||
<extracomment>The name of the EventType ({ab24f26c-dc15-4ec3-8d76-06a48285440b}) of ThingClass sdm630
|
||||
----------
|
||||
@ -112,8 +160,8 @@ The name of the EventType ({bb6fd00c-3bbb-4977-bb8a-96787bb6f5c5}) of ThingClass
|
||||
<translation>Frequenz geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="223"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="226"/>
|
||||
<source>Modbus RTU master</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, Type: thing, ID: {d90e9292-d03c-4f2a-957e-5d965018c9c9})
|
||||
----------
|
||||
@ -121,8 +169,8 @@ The name of the ParamType (ThingClass: pro380, Type: thing, ID: {6cdbec8c-21b9-4
|
||||
<translation>Modbus RTU Master</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="229"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="232"/>
|
||||
<source>Modbus slave address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, Type: thing, ID: {ac77ea98-b006-486e-a3e8-b30a483f26c1})
|
||||
----------
|
||||
@ -130,16 +178,16 @@ The name of the ParamType (ThingClass: pro380, Type: thing, ID: {c75b2c31-6ec3-4
|
||||
<translation>Modbus Slave-Adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="175"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="235"/>
|
||||
<source>PRO380-Mod</source>
|
||||
<extracomment>The name of the ThingClass ({d7c6440b-54f9-4cc0-a96b-9bb7304b3e77})</extracomment>
|
||||
<translation>PRO380-Mod</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="181"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="238"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="241"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="244"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="247"/>
|
||||
<source>Power factor</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: powerFactor, ID: {31b9032f-f994-472b-94bd-44f9fb094801})
|
||||
----------
|
||||
@ -151,8 +199,8 @@ The name of the StateType ({cdb34487-3d9b-492a-8c33-802f32a2e90e}) of ThingClass
|
||||
<translation>Leistungsfaktor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="193"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="250"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="253"/>
|
||||
<source>Power factor changed</source>
|
||||
<extracomment>The name of the EventType ({31b9032f-f994-472b-94bd-44f9fb094801}) of ThingClass sdm630
|
||||
----------
|
||||
@ -160,14 +208,14 @@ The name of the EventType ({cdb34487-3d9b-492a-8c33-802f32a2e90e}) of ThingClass
|
||||
<translation>Leistungsfaktor geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="196"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="256"/>
|
||||
<source>SDM630Modbus</source>
|
||||
<extracomment>The name of the ThingClass ({f37597bb-35fe-48f2-9617-343dd54c0903})</extracomment>
|
||||
<translation>SDM630Modbus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="199"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="202"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="259"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="262"/>
|
||||
<source>Slave address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, Type: discovery, ID: {6ab43559-53ec-47ba-b8a0-8d3b7f8d90c2})
|
||||
----------
|
||||
@ -175,10 +223,10 @@ The name of the ParamType (ThingClass: pro380, Type: discovery, ID: {a29f37f6-b3
|
||||
<translation>Slave-Adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="205"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="208"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="211"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="214"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="265"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="268"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="271"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="274"/>
|
||||
<source>Total energy consumed</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: totalEnergyConsumed, ID: {98d858a8-22e8-4262-b5c7-25bb027942ad})
|
||||
----------
|
||||
@ -190,8 +238,8 @@ The name of the StateType ({f18fd596-b47f-44be-a0f0-6ca44369ebf5}) of ThingClass
|
||||
<translation>Gesamte verbrauchte Energy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="217"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="220"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="277"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="280"/>
|
||||
<source>Total energy consumed changed</source>
|
||||
<extracomment>The name of the EventType ({98d858a8-22e8-4262-b5c7-25bb027942ad}) of ThingClass sdm630
|
||||
----------
|
||||
@ -199,10 +247,10 @@ The name of the EventType ({f18fd596-b47f-44be-a0f0-6ca44369ebf5}) of ThingClass
|
||||
<translation>Gesamte verbrauchte Energie geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="223"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="226"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="229"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="232"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="283"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="286"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="289"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="292"/>
|
||||
<source>Total energy produced</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: totalEnergyProduced, ID: {e469b3ff-a4c2-42da-af35-ccafaef214af})
|
||||
----------
|
||||
@ -214,8 +262,8 @@ The name of the StateType ({112911c9-14e0-4c83-ac92-f2ceb3bdecdf}) of ThingClass
|
||||
<translation>Gesamte produzierte Energie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="235"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="238"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="295"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="298"/>
|
||||
<source>Total energy produced changed</source>
|
||||
<extracomment>The name of the EventType ({e469b3ff-a4c2-42da-af35-ccafaef214af}) of ThingClass sdm630
|
||||
----------
|
||||
@ -223,37 +271,85 @@ The name of the EventType ({112911c9-14e0-4c83-ac92-f2ceb3bdecdf}) of ThingClass
|
||||
<translation>Gesamte produzierte Energie geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="241"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="301"/>
|
||||
<source>Update interval</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: energyMeters, Type: plugin, ID: {eaa84c3c-06b8-4642-a40b-c2efbe6aae66})</extracomment>
|
||||
<translation>Updateintervall</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="244"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="247"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="250"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="253"/>
|
||||
<source>Voltage</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltage, ID: {4636ec5c-fcb9-45b7-ad68-2818cb615ce1})
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="304"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="307"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="310"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="313"/>
|
||||
<source>Voltage L1</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltageL1, ID: {db018146-0441-4dc0-9834-6d43ebaf8311})
|
||||
----------
|
||||
The name of the StateType ({4636ec5c-fcb9-45b7-ad68-2818cb615ce1}) of ThingClass sdm630
|
||||
The name of the StateType ({db018146-0441-4dc0-9834-6d43ebaf8311}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltage, ID: {04dba21a-7447-46b9-b9ae-095e5769e511})
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltageL1, ID: {04dba21a-7447-46b9-b9ae-095e5769e511})
|
||||
----------
|
||||
The name of the StateType ({04dba21a-7447-46b9-b9ae-095e5769e511}) of ThingClass pro380</extracomment>
|
||||
<translation>Spannung</translation>
|
||||
<translation>Spannung L1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="256"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="259"/>
|
||||
<source>Voltage changed</source>
|
||||
<extracomment>The name of the EventType ({4636ec5c-fcb9-45b7-ad68-2818cb615ce1}) of ThingClass sdm630
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="316"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="319"/>
|
||||
<source>Voltage L1 changed</source>
|
||||
<extracomment>The name of the EventType ({db018146-0441-4dc0-9834-6d43ebaf8311}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({04dba21a-7447-46b9-b9ae-095e5769e511}) of ThingClass pro380</extracomment>
|
||||
<translation>Spannung geändert</translation>
|
||||
<translation>Spannung L1 geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="262"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="322"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="325"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="328"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="331"/>
|
||||
<source>Voltage L2</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltageL2, ID: {406f6d02-d5eb-49b3-87da-3247568e6054})
|
||||
----------
|
||||
The name of the StateType ({406f6d02-d5eb-49b3-87da-3247568e6054}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltageL2, ID: {270d0c34-0a0c-4655-985f-faad6efd1afd})
|
||||
----------
|
||||
The name of the StateType ({270d0c34-0a0c-4655-985f-faad6efd1afd}) of ThingClass pro380</extracomment>
|
||||
<translation>Spannung L2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="334"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="337"/>
|
||||
<source>Voltage L2 changed</source>
|
||||
<extracomment>The name of the EventType ({406f6d02-d5eb-49b3-87da-3247568e6054}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({270d0c34-0a0c-4655-985f-faad6efd1afd}) of ThingClass pro380</extracomment>
|
||||
<translation>Spannung L2 geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="340"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="343"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="346"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="349"/>
|
||||
<source>Voltage L3</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltageL3, ID: {ace6294d-deaa-4d9a-af78-d64379bcb229})
|
||||
----------
|
||||
The name of the StateType ({ace6294d-deaa-4d9a-af78-d64379bcb229}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltageL3, ID: {a1da8cfd-37cc-4c87-b857-e942cd90daec})
|
||||
----------
|
||||
The name of the StateType ({a1da8cfd-37cc-4c87-b857-e942cd90daec}) of ThingClass pro380</extracomment>
|
||||
<translation>Spannung L3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="352"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="355"/>
|
||||
<source>Voltage L3 changed</source>
|
||||
<extracomment>The name of the EventType ({ace6294d-deaa-4d9a-af78-d64379bcb229}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({a1da8cfd-37cc-4c87-b857-e942cd90daec}) of ThingClass pro380</extracomment>
|
||||
<translation>Spannung L3 geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="358"/>
|
||||
<source>inepro Metering</source>
|
||||
<extracomment>The name of the vendor ({64f4df0f-18ce-409c-bf32-84a086c691ca})</extracomment>
|
||||
<translation>inepro Metering</translation>
|
||||
@ -262,22 +358,32 @@ The name of the EventType ({04dba21a-7447-46b9-b9ae-095e5769e511}) of ThingClass
|
||||
<context>
|
||||
<name>IntegrationPluginEnergyMeters</name>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="102"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="116"/>
|
||||
<source>No Modbus RTU interface available.</source>
|
||||
<translation>Keine Modbus RTU Schnittstelle verfügbar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="109"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="123"/>
|
||||
<source>Modbus slave address must be between 1 and 254</source>
|
||||
<translation>Die Modbus-Slave-Adresse muss zwischen 1 und 254 liegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="145"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="131"/>
|
||||
<source>Energy meter</source>
|
||||
<translation>Energiezähler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="131"/>
|
||||
<source>Slave address </source>
|
||||
<translation>Slave-Adresse</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="159"/>
|
||||
<source>Slave address not valid, must be between 1 and 254</source>
|
||||
<translation>Die Slave-Adresse ist ungültig, sie muss zwischen 1 und 254 liegen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="151"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="165"/>
|
||||
<source>Modbus RTU resource not available.</source>
|
||||
<translation>Modbus RTU Schnittstelle nicht verfügbar</translation>
|
||||
</message>
|
||||
|
||||
@ -4,10 +4,10 @@
|
||||
<context>
|
||||
<name>EnergyMeters</name>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="85"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="88"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="94"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="118"/>
|
||||
<source>Active power</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentPower, ID: {c824e97b-a6d1-4030-9d7a-00af6fb8e1c3})
|
||||
----------
|
||||
@ -19,8 +19,8 @@ The name of the StateType ({464eff60-11c2-46b7-98f5-1aa8172e5a2d}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="97"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="100"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="124"/>
|
||||
<source>Active power changed</source>
|
||||
<extracomment>The name of the EventType ({c824e97b-a6d1-4030-9d7a-00af6fb8e1c3}) of ThingClass sdm630
|
||||
----------
|
||||
@ -28,16 +28,16 @@ The name of the EventType ({464eff60-11c2-46b7-98f5-1aa8172e5a2d}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="103"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="127"/>
|
||||
<source>B+G e-tech</source>
|
||||
<extracomment>The name of the vendor ({215035fe-95e8-43d8-a52e-0a31b787d902})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="106"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="133"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="139"/>
|
||||
<source>Connected</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: connected, ID: {8050bd0b-1dad-4a7e-b632-c71ead3c9f8b})
|
||||
----------
|
||||
@ -49,8 +49,8 @@ The name of the StateType ({7f9bc504-0882-4b86-83b1-42fa345acfd9}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="118"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="142"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="145"/>
|
||||
<source>Connected changed</source>
|
||||
<extracomment>The name of the EventType ({8050bd0b-1dad-4a7e-b632-c71ead3c9f8b}) of ThingClass sdm630
|
||||
----------
|
||||
@ -58,40 +58,88 @@ The name of the EventType ({7f9bc504-0882-4b86-83b1-42fa345acfd9}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="124"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="127"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="133"/>
|
||||
<source>Current</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: current, ID: {96bc65ce-5bde-4a69-9ebf-711d65c6501c})
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="157"/>
|
||||
<source>Current L1</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentL1, ID: {4baf1d08-5ffa-49cf-95ef-9527b0c6f081})
|
||||
----------
|
||||
The name of the StateType ({96bc65ce-5bde-4a69-9ebf-711d65c6501c}) of ThingClass sdm630
|
||||
The name of the StateType ({4baf1d08-5ffa-49cf-95ef-9527b0c6f081}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: current, ID: {1e077a3b-2dab-4ec4-ae96-ab49a564fe31})
|
||||
The name of the ParamType (ThingClass: pro380, EventType: currentL1, ID: {1e077a3b-2dab-4ec4-ae96-ab49a564fe31})
|
||||
----------
|
||||
The name of the StateType ({1e077a3b-2dab-4ec4-ae96-ab49a564fe31}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="139"/>
|
||||
<source>Current changed</source>
|
||||
<extracomment>The name of the EventType ({96bc65ce-5bde-4a69-9ebf-711d65c6501c}) of ThingClass sdm630
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="163"/>
|
||||
<source>Current L1 changed</source>
|
||||
<extracomment>The name of the EventType ({4baf1d08-5ffa-49cf-95ef-9527b0c6f081}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({1e077a3b-2dab-4ec4-ae96-ab49a564fe31}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="142"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="175"/>
|
||||
<source>Current L2</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentL2, ID: {99e47d06-0a6a-4bfd-b164-61ecb6ba2818})
|
||||
----------
|
||||
The name of the StateType ({99e47d06-0a6a-4bfd-b164-61ecb6ba2818}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: currentL2, ID: {d2f54061-0807-47de-944c-68c8118ece91})
|
||||
----------
|
||||
The name of the StateType ({d2f54061-0807-47de-944c-68c8118ece91}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="181"/>
|
||||
<source>Current L2 changed</source>
|
||||
<extracomment>The name of the EventType ({99e47d06-0a6a-4bfd-b164-61ecb6ba2818}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({d2f54061-0807-47de-944c-68c8118ece91}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="193"/>
|
||||
<source>Current L3</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: currentL3, ID: {4a092a66-352d-4d60-90ab-6ac5f58b92fe})
|
||||
----------
|
||||
The name of the StateType ({4a092a66-352d-4d60-90ab-6ac5f58b92fe}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: currentL3, ID: {610b20fb-2718-4f02-ac6e-12a9ef8c7615})
|
||||
----------
|
||||
The name of the StateType ({610b20fb-2718-4f02-ac6e-12a9ef8c7615}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="196"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="199"/>
|
||||
<source>Current L3 changed</source>
|
||||
<extracomment>The name of the EventType ({4a092a66-352d-4d60-90ab-6ac5f58b92fe}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({610b20fb-2718-4f02-ac6e-12a9ef8c7615}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="202"/>
|
||||
<source>EnergyMeters</source>
|
||||
<extracomment>The name of the plugin EnergyMeters ({56e95111-fb6b-4f63-9a0a-a5ee001e89ed})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="145"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="205"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="208"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="211"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="214"/>
|
||||
<source>Frequency</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: frequency, ID: {ab24f26c-dc15-4ec3-8d76-06a48285440b})
|
||||
----------
|
||||
@ -103,8 +151,8 @@ The name of the StateType ({bb6fd00c-3bbb-4977-bb8a-96787bb6f5c5}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="217"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="220"/>
|
||||
<source>Frequency changed</source>
|
||||
<extracomment>The name of the EventType ({ab24f26c-dc15-4ec3-8d76-06a48285440b}) of ThingClass sdm630
|
||||
----------
|
||||
@ -112,8 +160,8 @@ The name of the EventType ({bb6fd00c-3bbb-4977-bb8a-96787bb6f5c5}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="223"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="226"/>
|
||||
<source>Modbus RTU master</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, Type: thing, ID: {d90e9292-d03c-4f2a-957e-5d965018c9c9})
|
||||
----------
|
||||
@ -121,8 +169,8 @@ The name of the ParamType (ThingClass: pro380, Type: thing, ID: {6cdbec8c-21b9-4
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="229"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="232"/>
|
||||
<source>Modbus slave address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, Type: thing, ID: {ac77ea98-b006-486e-a3e8-b30a483f26c1})
|
||||
----------
|
||||
@ -130,16 +178,16 @@ The name of the ParamType (ThingClass: pro380, Type: thing, ID: {c75b2c31-6ec3-4
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="175"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="235"/>
|
||||
<source>PRO380-Mod</source>
|
||||
<extracomment>The name of the ThingClass ({d7c6440b-54f9-4cc0-a96b-9bb7304b3e77})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="181"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="238"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="241"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="244"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="247"/>
|
||||
<source>Power factor</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: powerFactor, ID: {31b9032f-f994-472b-94bd-44f9fb094801})
|
||||
----------
|
||||
@ -151,8 +199,8 @@ The name of the StateType ({cdb34487-3d9b-492a-8c33-802f32a2e90e}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="193"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="250"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="253"/>
|
||||
<source>Power factor changed</source>
|
||||
<extracomment>The name of the EventType ({31b9032f-f994-472b-94bd-44f9fb094801}) of ThingClass sdm630
|
||||
----------
|
||||
@ -160,14 +208,14 @@ The name of the EventType ({cdb34487-3d9b-492a-8c33-802f32a2e90e}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="196"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="256"/>
|
||||
<source>SDM630Modbus</source>
|
||||
<extracomment>The name of the ThingClass ({f37597bb-35fe-48f2-9617-343dd54c0903})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="199"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="202"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="259"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="262"/>
|
||||
<source>Slave address</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, Type: discovery, ID: {6ab43559-53ec-47ba-b8a0-8d3b7f8d90c2})
|
||||
----------
|
||||
@ -175,10 +223,10 @@ The name of the ParamType (ThingClass: pro380, Type: discovery, ID: {a29f37f6-b3
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="205"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="208"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="211"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="214"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="265"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="268"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="271"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="274"/>
|
||||
<source>Total energy consumed</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: totalEnergyConsumed, ID: {98d858a8-22e8-4262-b5c7-25bb027942ad})
|
||||
----------
|
||||
@ -190,8 +238,8 @@ The name of the StateType ({f18fd596-b47f-44be-a0f0-6ca44369ebf5}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="217"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="220"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="277"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="280"/>
|
||||
<source>Total energy consumed changed</source>
|
||||
<extracomment>The name of the EventType ({98d858a8-22e8-4262-b5c7-25bb027942ad}) of ThingClass sdm630
|
||||
----------
|
||||
@ -199,10 +247,10 @@ The name of the EventType ({f18fd596-b47f-44be-a0f0-6ca44369ebf5}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="223"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="226"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="229"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="232"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="283"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="286"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="289"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="292"/>
|
||||
<source>Total energy produced</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: totalEnergyProduced, ID: {e469b3ff-a4c2-42da-af35-ccafaef214af})
|
||||
----------
|
||||
@ -214,8 +262,8 @@ The name of the StateType ({112911c9-14e0-4c83-ac92-f2ceb3bdecdf}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="235"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="238"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="295"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="298"/>
|
||||
<source>Total energy produced changed</source>
|
||||
<extracomment>The name of the EventType ({e469b3ff-a4c2-42da-af35-ccafaef214af}) of ThingClass sdm630
|
||||
----------
|
||||
@ -223,37 +271,85 @@ The name of the EventType ({112911c9-14e0-4c83-ac92-f2ceb3bdecdf}) of ThingClass
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="241"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="301"/>
|
||||
<source>Update interval</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: energyMeters, Type: plugin, ID: {eaa84c3c-06b8-4642-a40b-c2efbe6aae66})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="244"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="247"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="250"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="253"/>
|
||||
<source>Voltage</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltage, ID: {4636ec5c-fcb9-45b7-ad68-2818cb615ce1})
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="304"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="307"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="310"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="313"/>
|
||||
<source>Voltage L1</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltageL1, ID: {db018146-0441-4dc0-9834-6d43ebaf8311})
|
||||
----------
|
||||
The name of the StateType ({4636ec5c-fcb9-45b7-ad68-2818cb615ce1}) of ThingClass sdm630
|
||||
The name of the StateType ({db018146-0441-4dc0-9834-6d43ebaf8311}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltage, ID: {04dba21a-7447-46b9-b9ae-095e5769e511})
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltageL1, ID: {04dba21a-7447-46b9-b9ae-095e5769e511})
|
||||
----------
|
||||
The name of the StateType ({04dba21a-7447-46b9-b9ae-095e5769e511}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="256"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="259"/>
|
||||
<source>Voltage changed</source>
|
||||
<extracomment>The name of the EventType ({4636ec5c-fcb9-45b7-ad68-2818cb615ce1}) of ThingClass sdm630
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="316"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="319"/>
|
||||
<source>Voltage L1 changed</source>
|
||||
<extracomment>The name of the EventType ({db018146-0441-4dc0-9834-6d43ebaf8311}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({04dba21a-7447-46b9-b9ae-095e5769e511}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="262"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="322"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="325"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="328"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="331"/>
|
||||
<source>Voltage L2</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltageL2, ID: {406f6d02-d5eb-49b3-87da-3247568e6054})
|
||||
----------
|
||||
The name of the StateType ({406f6d02-d5eb-49b3-87da-3247568e6054}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltageL2, ID: {270d0c34-0a0c-4655-985f-faad6efd1afd})
|
||||
----------
|
||||
The name of the StateType ({270d0c34-0a0c-4655-985f-faad6efd1afd}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="334"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="337"/>
|
||||
<source>Voltage L2 changed</source>
|
||||
<extracomment>The name of the EventType ({406f6d02-d5eb-49b3-87da-3247568e6054}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({270d0c34-0a0c-4655-985f-faad6efd1afd}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="340"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="343"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="346"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="349"/>
|
||||
<source>Voltage L3</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: sdm630, EventType: voltageL3, ID: {ace6294d-deaa-4d9a-af78-d64379bcb229})
|
||||
----------
|
||||
The name of the StateType ({ace6294d-deaa-4d9a-af78-d64379bcb229}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the ParamType (ThingClass: pro380, EventType: voltageL3, ID: {a1da8cfd-37cc-4c87-b857-e942cd90daec})
|
||||
----------
|
||||
The name of the StateType ({a1da8cfd-37cc-4c87-b857-e942cd90daec}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="352"/>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="355"/>
|
||||
<source>Voltage L3 changed</source>
|
||||
<extracomment>The name of the EventType ({ace6294d-deaa-4d9a-af78-d64379bcb229}) of ThingClass sdm630
|
||||
----------
|
||||
The name of the EventType ({a1da8cfd-37cc-4c87-b857-e942cd90daec}) of ThingClass pro380</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-modbus-Desktop-Debug/energymeters/plugininfo.h" line="358"/>
|
||||
<source>inepro Metering</source>
|
||||
<extracomment>The name of the vendor ({64f4df0f-18ce-409c-bf32-84a086c691ca})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -262,22 +358,32 @@ The name of the EventType ({04dba21a-7447-46b9-b9ae-095e5769e511}) of ThingClass
|
||||
<context>
|
||||
<name>IntegrationPluginEnergyMeters</name>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="102"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="116"/>
|
||||
<source>No Modbus RTU interface available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="109"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="123"/>
|
||||
<source>Modbus slave address must be between 1 and 254</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="145"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="131"/>
|
||||
<source>Energy meter</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="131"/>
|
||||
<source>Slave address </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="159"/>
|
||||
<source>Slave address not valid, must be between 1 and 254</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="151"/>
|
||||
<location filename="../integrationpluginenergymeters.cpp" line="165"/>
|
||||
<source>Modbus RTU resource not available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
Reference in New Issue
Block a user