no message

This commit is contained in:
belevo\mh
2026-05-04 18:48:09 +02:00
parent 8772f14e8c
commit 2e69afa9f4
2 changed files with 450 additions and 610 deletions
+124 -69
View File
@@ -1,66 +1,75 @@
{
"elements": [
{
"type": "Label",
"caption": "Aufgepasst: Bei Goodwe nur Ladenvariable auswählen und Entladen Dummy-Variable. Goodwe braucht nur eine Leistungssoll-Variable. Entlade NICHT auf gleiche Variable setzen wie Laden.\nGoodwe: Laden=11, Entladen=12\nSolarEdge: Laden=3, Entladen=4\nDefault: Laden=1, Entladen=2"
},
{
"type": "List",
"name": "Batteries",
"caption": "Batterien mit Typ, Leistung und Kapazität",
"caption": "Batterien",
"rowCount": 5,
"add": true,
"delete": true,
"sort": {
"column": "typ",
"direction": "ascending"
},
"columns": [
{
"caption": "Typ",
"name": "typ",
"width": "120px",
"add": "Batterie",
"width": "160px",
"edit": {
"type": "ValidationTextBox"
}
},
{
"caption": "Leistung (W)",
"caption": "Kapazität",
"name": "capazity",
"width": "100px",
"suffix": " kWh",
"edit": {
"type": "NumberSpinner",
"minimum": 0,
"digits": 2
}
},
{
"caption": "Batterieleistung",
"name": "powerbat",
"width": "120px",
"add": 5000,
"suffix": " W",
"edit": {
"type": "NumberSpinner"
"type": "NumberSpinner",
"minimum": 0,
"digits": 0
}
},
{
"caption": "Kapazität (kWh)",
"name": "capazity",
"width": "140px",
"add": 60,
"edit": {
"type": "NumberSpinner"
}
},
{
"caption": "SoC",
"caption": "SoC Variable",
"name": "soc",
"width": "160px",
"add": 0,
"width": "120px",
"edit": {
"type": "SelectVariable"
}
},
{
"caption": "Power Laden",
"caption": "Ist-Leistung Register",
"name": "register_bat_power",
"width": "150px",
"edit": {
"type": "SelectVariable"
}
},
{
"caption": "Ladeleistung Register",
"name": "powerbat_laden",
"width": "160px",
"add": 0,
"width": "150px",
"edit": {
"type": "SelectVariable"
}
},
{
"caption": "Power Entladen",
"caption": "Entladeleistung Register",
"name": "powerbat_entladen",
"width": "160px",
"add": 0,
"edit": {
"type": "SelectVariable"
}
@@ -68,56 +77,102 @@
{
"caption": "Modus Register",
"name": "register_ladenentladen_modus",
"width": "180px",
"add": 0,
"edit": {
"type": "SelectVariable"
}
},
{
"caption": "Ist-Leistung",
"name": "register_bat_power",
"width": "180px",
"add": 0,
"width": "140px",
"edit": {
"type": "SelectVariable"
}
}
],
"values": []
},
{
"type": "ExpansionPanel",
"caption": "SDL / EV Fenster",
"items": [
{
"type": "NumberSpinner",
"name": "SDL_Leistung_Laden",
"caption": "SDL Leistung Laden",
"suffix": " W",
"minimum": 0,
"digits": 0
},
{
"type": "NumberSpinner",
"name": "SDL_Leistung_Entladen",
"caption": "SDL Leistung Entladen",
"suffix": " W",
"minimum": 0,
"digits": 0
},
{
"type": "NumberSpinner",
"name": "ReserveHoursLaden",
"caption": "SDL Reservezeit Laden",
"suffix": " h",
"minimum": 0,
"maximum": 24,
"digits": 2
},
{
"type": "NumberSpinner",
"name": "ReserveHoursEntladen",
"caption": "SDL Reservezeit Entladen",
"suffix": " h",
"minimum": 0,
"maximum": 24,
"digits": 2
},
{
"type": "NumberSpinner",
"name": "SDL_Start_Pos_Config",
"caption": "Virtueller SDL Startwert",
"suffix": " %",
"minimum": 0,
"maximum": 100,
"digits": 2
},
{
"type": "NumberSpinner",
"name": "EV_Start_Pos_Config",
"caption": "Virtueller EV Startwert",
"suffix": " %",
"minimum": 0,
"maximum": 100,
"digits": 2
}
]
},
{
"type": "NumberSpinner",
"name": "SDL_Leistung_Laden",
"caption": "SDL Leistung Laden",
"suffix": "W"
"type": "ExpansionPanel",
"caption": "Regelung",
"items": [
{
"type": "NumberSpinner",
"name": "UpdateInterval",
"caption": "Update Intervall",
"suffix": " min",
"minimum": 0,
"digits": 0
},
{
"type": "CheckBox",
"name": "FilterAktiv",
"caption": "Filter für aktuelle EV/SDL Leistung aktiv"
}
]
}
],
"actions": [
{
"type": "Button",
"caption": "Virtuelle Konten auf Startwerte zurücksetzen",
"onClick": "GEF_ResetVirtualAccounts($id);"
},
{
"type": "NumberSpinner",
"name": "SDL_Leistung_Entladen",
"caption": "SDL Leistung Entladen",
"suffix": "W"
},
{
"type": "NumberSpinner",
"name": "ReserveHours",
"caption": "SDL Reservezeit",
"suffix": "h",
"minimum": 0,
"maximum": 24,
"digits": 2
},
{
"type": "NumberSpinner",
"name": "UpdateInterval",
"caption": "Update Intervall",
"suffix": "Sekunden",
"minimum": 0,
"maximum": 86400
},
{
"type": "CheckBox",
"name": "FilterAktiv",
"caption": "Aktuelle Leistung filtern"
"type": "Button",
"caption": "Jetzt aktualisieren",
"onClick": "GEF_Update($id);"
}
]
}
}
+326 -541
View File
File diff suppressed because it is too large Load Diff