// 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 . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "energycontroldiscovery.h" #include "extern-plugininfo.h" EnergyControlDiscovery::EnergyControlDiscovery(ModbusRtuHardwareResource *modbusRtuResource, QObject *parent) : QObject{parent}, m_modbusRtuResource{modbusRtuResource} { } void EnergyControlDiscovery::startDiscovery() { qCInfo(dcAmperfied()) << "Discovery: Searching for Amperfied EnergyControl wallboxes on modbus RTU..."; QList candidateMasters; foreach (ModbusRtuMaster *master, m_modbusRtuResource->modbusRtuMasters()) { if (master->baudrate() == 19200 && master->dataBits() == 8 && master->stopBits() == 1 && master->parity() == QSerialPort::EvenParity) { candidateMasters.append(master); } } if (candidateMasters.isEmpty()) { qCWarning(dcAmperfied()) << "No usable modbus RTU master found."; emit discoveryFinished(false); return; } foreach (ModbusRtuMaster *master, candidateMasters) { if (master->connected()) { tryConnect(master, 1); } else { qCWarning(dcAmperfied()) << "Modbus RTU master" << master->modbusUuid().toString() << "is not connected."; } } } QList EnergyControlDiscovery::discoveryResults() const { return m_discoveryResults; } void EnergyControlDiscovery::tryConnect(ModbusRtuMaster *master, quint16 slaveId) { qCDebug(dcAmperfied()) << "Scanning modbus RTU master" << master->modbusUuid() << "Slave ID:" << slaveId; ModbusRtuReply *reply = master->readInputRegister(slaveId, 4); connect(reply, &ModbusRtuReply::finished, this, [=](){ qCDebug(dcAmperfied()) << "Test reply finished!" << reply->error() << reply->result(); if (reply->error() == ModbusRtuReply::NoError && reply->result().length() > 0) { quint16 version = reply->result().first(); if (version >= 0x0100) { qCDebug(dcAmperfied()) << QString("Version is 0x%1").arg(version, 0, 16); Result result {master->modbusUuid(), version, slaveId}; m_discoveryResults.append(result); } else { qCDebug(dcAmperfied()) << "Version must be at least 1.0.0 (0x0100)"; } } if (slaveId < 20) { tryConnect(master, slaveId+1); } else { emit discoveryFinished(true); } }); }