powersync-plugins-modbus/libnymea-sunspec/models/sunspecenergystoragebasemod...

121 lines
4.5 KiB
C++

// SPDX-License-Identifier: LGPL-3.0-or-later
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright (C) 2013 - 2024, nymea GmbH
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
*
* This file is part of libnymea-sunspec.
*
* libnymea-sunspec is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* libnymea-sunspec 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libnymea-sunspec. If not, see <https://www.gnu.org/licenses/>.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "sunspecenergystoragebasemodeldeprecatedmodel.h"
#include "sunspecconnection.h"
SunSpecEnergyStorageBaseModelDeprecatedModel::SunSpecEnergyStorageBaseModelDeprecatedModel(SunSpecConnection *connection, quint16 modbusStartRegister, quint16 modelLength, SunSpecDataPoint::ByteOrder byteOrder, QObject *parent) :
SunSpecModel(connection, modbusStartRegister, 801, modelLength, byteOrder, parent)
{
m_modelBlockType = SunSpecModel::ModelBlockTypeFixed;
initDataPoints();
}
SunSpecEnergyStorageBaseModelDeprecatedModel::~SunSpecEnergyStorageBaseModelDeprecatedModel()
{
}
QString SunSpecEnergyStorageBaseModelDeprecatedModel::name() const
{
return "storage";
}
QString SunSpecEnergyStorageBaseModelDeprecatedModel::description() const
{
return "This model has been deprecated.";
}
QString SunSpecEnergyStorageBaseModelDeprecatedModel::label() const
{
return "Energy Storage Base Model (DEPRECATED)";
}
quint16 SunSpecEnergyStorageBaseModelDeprecatedModel::deprecatedModel() const
{
return m_deprecatedModel;
}
void SunSpecEnergyStorageBaseModelDeprecatedModel::initDataPoints()
{
SunSpecDataPoint modelIdDataPoint;
modelIdDataPoint.setName("ID");
modelIdDataPoint.setLabel("Model ID");
modelIdDataPoint.setDescription("Model identifier");
modelIdDataPoint.setMandatory(true);
modelIdDataPoint.setSize(1);
modelIdDataPoint.setAddressOffset(0);
modelIdDataPoint.setSunSpecDataType("uint16");
modelIdDataPoint.setByteOrder(m_byteOrder);
m_dataPoints.insert(modelIdDataPoint.name(), modelIdDataPoint);
SunSpecDataPoint modelLengthDataPoint;
modelLengthDataPoint.setName("L");
modelLengthDataPoint.setLabel("Model Length");
modelLengthDataPoint.setDescription("Model length");
modelLengthDataPoint.setMandatory(true);
modelLengthDataPoint.setSize(1);
modelLengthDataPoint.setAddressOffset(1);
modelLengthDataPoint.setSunSpecDataType("uint16");
modelLengthDataPoint.setByteOrder(m_byteOrder);
m_dataPoints.insert(modelLengthDataPoint.name(), modelLengthDataPoint);
SunSpecDataPoint deprecatedModelDataPoint;
deprecatedModelDataPoint.setName("DEPRECATED");
deprecatedModelDataPoint.setLabel("Deprecated Model");
deprecatedModelDataPoint.setDescription("This model has been deprecated.");
deprecatedModelDataPoint.setMandatory(true);
deprecatedModelDataPoint.setSize(1);
deprecatedModelDataPoint.setAddressOffset(2);
deprecatedModelDataPoint.setBlockOffset(0);
deprecatedModelDataPoint.setSunSpecDataType("enum16");
deprecatedModelDataPoint.setByteOrder(m_byteOrder);
m_dataPoints.insert(deprecatedModelDataPoint.name(), deprecatedModelDataPoint);
}
void SunSpecEnergyStorageBaseModelDeprecatedModel::processBlockData()
{
// Update properties according to the data point type
if (m_dataPoints.value("DEPRECATED").isValid())
m_deprecatedModel = m_dataPoints.value("DEPRECATED").toUInt16();
qCDebug(dcSunSpecModelData()) << this;
}
QDebug operator<<(QDebug debug, SunSpecEnergyStorageBaseModelDeprecatedModel *model)
{
debug.nospace().noquote() << "SunSpecEnergyStorageBaseModelDeprecatedModel(Model: " << model->modelId() << ", Register: " << model->modbusStartRegister() << ", Length: " << model->modelLength() << ")\n";
debug.nospace().noquote() << " - " << model->dataPoints().value("DEPRECATED") << "-->";
if (model->dataPoints().value("DEPRECATED").isValid()) {
debug.nospace().noquote() << model->deprecatedModel() << "\n";
} else {
debug.nospace().noquote() << "NaN\n";
}
return debug.space().quote();
}