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

127 lines
5.0 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2021, nymea GmbH
* Contact: contact@nymea.io
*
* This fileDescriptor is part of nymea.
* This project including source code and documentation is protected by
* copyright law, and remains the property of nymea GmbH. All rights, including
* reproduction, publication, editing and translation, are reserved. The use of
* this project is subject to the terms of a license agreement to be concluded
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
* under https://nymea.io/license
*
* GNU Lesser General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; version 3. This project 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 this project. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#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();
}