Implemented fixes and improvements during comissioning

- New Balancing mode
- HMI Interface for Inverterdata implemented
- Adjusted GVL_CONFIG values
- Read inverter data even when inverter is off
- Added OPC UA settings to inverter data hmi interface
- Added multisettings to safety project for strings
This commit is contained in:
Matthias Heisig
2024-05-06 11:05:33 +02:00
parent b95033a155
commit 327f324be8
58 changed files with 24795 additions and 3667 deletions

View File

@@ -9,7 +9,8 @@ TYPE E_BMS_CONTROL_MODE :
AUTO_LOCAL := 2,
SAFETY_CHECK := 3,
CAPACITY_TEST := 4,
MANUAL := 5
MANUAL := 5,
BALANCING := 6
);
END_TYPE
]]></Declaration>

View File

@@ -14,6 +14,15 @@ STRUCT
// Current status
// ====================================
eStatus : E_COMPONENT_STATUS;
// Current string current
// ==============================
stStringCurrent : ST_HMI_ANALOG_VALUE;
// Current inverter data
// ==============================
stInverterData : ST_SUNSPEC_CURRENT_VALUES;
END_STRUCT
END_TYPE
]]></Declaration>