130 lines
4.2 KiB
C++
130 lines
4.2 KiB
C++
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-plugins-modbus.
|
|
*
|
|
* nymea-plugins-modbus is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-plugins-modbus is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with nymea-plugins-modbus. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "webasto.h"
|
|
#include "extern-plugininfo.h"
|
|
|
|
Webasto::Webasto(const QHostAddress &address, uint port, QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
qCDebug(dcWebasto()) << "Webasto: Webasto connection created" << address.toString() << port;
|
|
m_modbusConnection = new ModbusTcpMaster(address, port, this);
|
|
m_modbusConnection->setNumberOfRetries(3);
|
|
m_modbusConnection->setTimeout(1000);
|
|
|
|
connect(m_modbusConnection, &ModbusTcpMaster::receivedHoldingRegister, this, &Webasto::onReceivedHoldingRegister);
|
|
connect(m_modbusConnection, &ModbusTcpMaster::writeRequestExecuted, this, &Webasto::writeRequestExecuted);
|
|
connect(m_modbusConnection, &ModbusTcpMaster::writeRequestError, this, &Webasto::writeRequestError);
|
|
|
|
m_lifeBitTimer = new QTimer(this);
|
|
m_lifeBitTimer->start(10000);
|
|
connect(m_lifeBitTimer, &QTimer::timeout, this, [this] {
|
|
setLiveBit();
|
|
});
|
|
}
|
|
|
|
ModbusTcpMaster *Webasto::modbusTcpMaster() const
|
|
{
|
|
return m_modbusConnection;
|
|
}
|
|
|
|
bool Webasto::connected()
|
|
{
|
|
return m_modbusConnection->connected();
|
|
}
|
|
|
|
bool Webasto::connectDevice()
|
|
{
|
|
return m_modbusConnection->connectDevice();
|
|
}
|
|
|
|
void Webasto::setLivebitInterval(uint seconds)
|
|
{
|
|
qCDebug(dcWebasto()) << "Webasto: Live bit interval set to" << seconds << "[s]";
|
|
m_lifeBitTimer->setInterval(seconds*1000);
|
|
}
|
|
|
|
void Webasto::getRegister(Webasto::TqModbusRegister modbusRegister, uint length)
|
|
{
|
|
qCDebug(dcWebasto()) << "Webasto: Get register" << modbusRegister << length;
|
|
if (length < 1 || length > 10) {
|
|
qCWarning(dcWebasto()) << "Invalide register length, allowed values [1,10]";
|
|
return;
|
|
}
|
|
|
|
m_modbusConnection->readHoldingRegister(m_unitId, modbusRegister, length);
|
|
}
|
|
|
|
QUuid Webasto::setSafeCurrent(quint16 ampere) const
|
|
{
|
|
return m_modbusConnection->writeHoldingRegister(m_unitId, TqSafeCurrent, ampere);
|
|
}
|
|
|
|
QUuid Webasto::seComTimeout(quint16 seconds) const
|
|
{
|
|
return m_modbusConnection->writeHoldingRegister(m_unitId, TqComTimeout, seconds);
|
|
}
|
|
|
|
QUuid Webasto::setChargePower(quint32 watt) const
|
|
{
|
|
QVector<quint16> data;
|
|
data.append(watt>>16);
|
|
data.append(watt&0xff);
|
|
return m_modbusConnection->writeHoldingRegisters(m_unitId, TqChargePower, data);
|
|
}
|
|
|
|
QUuid Webasto::setChargeCurrent(quint16 ampere) const
|
|
{
|
|
return m_modbusConnection->writeHoldingRegister(m_unitId, TqChargeCurrent, ampere);
|
|
}
|
|
|
|
void Webasto::setLiveBit()
|
|
{
|
|
qCDebug(dcWebasto()) << "Webasto: Set live bit";
|
|
m_modbusConnection->writeHoldingRegister(m_unitId, TqLifeBit, 0x0001);
|
|
if (m_awaitingLiveBitResponse) {
|
|
// Live bit response has not been received, setting connection as disconnected
|
|
// The live bit acts as heartbeat for both sides, client and server
|
|
if (m_connected) {
|
|
m_connected = false;
|
|
emit connectionStateChanged(false);
|
|
}
|
|
} else {
|
|
m_awaitingLiveBitResponse = true;
|
|
}
|
|
}
|
|
|
|
void Webasto::onReceivedHoldingRegister(uint slaveAddress, uint modbusRegister, const QVector<quint16> &values)
|
|
{
|
|
Q_UNUSED(slaveAddress)
|
|
if (modbusRegister == TqLifeBit) {
|
|
m_awaitingLiveBitResponse = false;
|
|
if (!m_connected) {
|
|
m_connected = true;
|
|
emit connectionStateChanged(true);
|
|
}
|
|
}
|
|
emit receivedRegister(TqModbusRegister(modbusRegister), values);
|
|
}
|