134 lines
4.0 KiB
C++
134 lines
4.0 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/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef SUNSPECAGGREGATORMODEL_H
|
|
#define SUNSPECAGGREGATORMODEL_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "sunspecmodel.h"
|
|
|
|
class SunSpecConnection;
|
|
|
|
class SunSpecAggregatorModel : public SunSpecModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
|
|
enum St {
|
|
StOff = 1,
|
|
StOn = 2,
|
|
StFull = 3,
|
|
StFault = 4
|
|
};
|
|
Q_ENUM(St)
|
|
|
|
enum Ctl {
|
|
CtlNone = 0,
|
|
CtlAutomatic = 1,
|
|
CtlForceOff = 2,
|
|
CtlTest = 3,
|
|
CtlThrottle = 4
|
|
};
|
|
Q_ENUM(Ctl)
|
|
|
|
enum Evt {
|
|
EvtGroundFault = 0x1,
|
|
EvtInputOverVoltage = 0x2,
|
|
EvtReserved2 = 0x4,
|
|
EvtDcDisconnect = 0x8,
|
|
EvtReserved4 = 0x10,
|
|
EvtReserved5 = 0x20,
|
|
EvtManualShutdown = 0x40,
|
|
EvtOverTemperature = 0x80,
|
|
EvtReserved8 = 0x100,
|
|
EvtReserved9 = 0x200,
|
|
EvtReserved10 = 0x400,
|
|
EvtReserved11 = 0x800,
|
|
EvtBlownFuse = 0x1000,
|
|
EvtUnderTemperature = 0x2000,
|
|
EvtMemoryLoss = 0x4000,
|
|
EvtArcDetection = 0x8000,
|
|
EvtTheftDetection = 0x10000,
|
|
EvtOutputOverCurrent = 0x20000,
|
|
EvtOutputOverVoltage = 0x40000,
|
|
EvtOutputUnderVoltage = 0x80000,
|
|
EvtTestFailed = 0x100000
|
|
};
|
|
Q_DECLARE_FLAGS(EvtFlags, Evt)
|
|
Q_FLAG(Evt)
|
|
|
|
explicit SunSpecAggregatorModel(SunSpecConnection *connection, quint16 modbusStartRegister, quint16 modelLength, SunSpecDataPoint::ByteOrder byteOrder, QObject *parent = nullptr);
|
|
~SunSpecAggregatorModel() override;
|
|
|
|
QString name() const override;
|
|
QString description() const override;
|
|
QString label() const override;
|
|
|
|
/* Aggregated model id */
|
|
quint16 aid() const;
|
|
/* Number of aggregated models */
|
|
quint16 n() const;
|
|
/* Update Number. Incrementing number each time the mapping is changed. If the number is not changed from the last reading the direct access to a specific offset will result in reading the same logical model as before. Otherwise the entire model must be read to refresh the changes */
|
|
quint16 un() const;
|
|
/* Enumerated status code */
|
|
St status() const;
|
|
/* Vendor specific status code */
|
|
quint16 vendorStatus() const;
|
|
/* Bitmask event code */
|
|
EvtFlags eventCode() const;
|
|
/* Vendor specific event code */
|
|
quint32 vendorEventCode() const;
|
|
/* Control register for all aggregated devices */
|
|
Ctl control() const;
|
|
/* Vendor control register for all aggregated devices */
|
|
quint32 vendorControl() const;
|
|
/* Numerical value used as a parameter to the control */
|
|
quint32 controlValue() const;
|
|
|
|
protected:
|
|
quint16 m_fixedBlockLength = 14;
|
|
|
|
void initDataPoints();
|
|
void processBlockData() override;
|
|
|
|
private:
|
|
quint16 m_aid = 0;
|
|
quint16 m_n = 0;
|
|
quint16 m_un = 0;
|
|
St m_status;
|
|
quint16 m_vendorStatus = 0;
|
|
EvtFlags m_eventCode;
|
|
quint32 m_vendorEventCode = 0;
|
|
Ctl m_control;
|
|
quint32 m_vendorControl = 0;
|
|
quint32 m_controlValue = 0;
|
|
|
|
|
|
};
|
|
|
|
QDebug operator<<(QDebug debug, SunSpecAggregatorModel *model);
|
|
|
|
#endif // SUNSPECAGGREGATORMODEL_H
|