diff --git a/src/nodes/config-client.html b/src/nodes/config-client.html index 4ef2cf6..3e6585e 100644 --- a/src/nodes/config-client.html +++ b/src/nodes/config-client.html @@ -3489,6 +3489,19 @@

Details

With this node several settings can be read. Currently the focus is mainly on the Carlo Gavazzi Wired AC Sensors (cgwacs).

Settings

+
AC export current limit (A)float
+
Dbus path: /Settings/CGwacs/AcExportLimit +
+
AC import current limit (A)float
+
Dbus path: /Settings/CGwacs/AcImportLimit +
+
Mode for peakshavingenum
+
Dbus path: /Settings/CGwacs/AlwaysPeakShave + +
ESS max charge current (fractional) (%)float
Dbus path: /Settings/CGwacs/MaxChargePercentage
@@ -5403,8 +5416,18 @@

Details

With this node several settings can be adjusted. Currently the focus is mainly on the Carlo Gavazzi Wired AC Sensors (cgwacs).

Settings

-
ESS control loop setpoint (W)float
-
Dbus path: /Settings/CGwacs/AcPowerSetPoint +
AC export current limit (A)float
+
Dbus path: /Settings/CGwacs/AcExportLimit +
+
AC import current limit (A)float
+
Dbus path: /Settings/CGwacs/AcImportLimit +
+
Mode for peakshavingenum
+
Dbus path: /Settings/CGwacs/AlwaysPeakShave +
    +
  • 0 - Above minimum SOC only
  • +
  • 1 - Always
  • +
ESS Minimum SoC (unless grid fails) (%)float
Dbus path: /Settings/CGwacs/BatteryLife/MinimumSocLimit diff --git a/src/services/services.json b/src/services/services.json index 61b6b04..bc91102 100644 --- a/src/services/services.json +++ b/src/services/services.json @@ -4380,6 +4380,25 @@ "input-settings": { "help": "

With this node several settings can be read. Currently the focus is mainly on the Carlo Gavazzi Wired AC Sensors (cgwacs).

", "settings": [ + { + "path": "/Settings/CGwacs/AcExportLimit", + "type": "float", + "name": "AC export current limit (A)" + }, + { + "path": "/Settings/CGwacs/AcImportLimit", + "type": "float", + "name": "AC import current limit (A)" + }, + { + "path": "/Settings/CGwacs/AlwaysPeakShave", + "type": "enum", + "name": "Mode for peakshaving", + "enum": { + "0": "Above minimum SOC only", + "1": "Always" + } + }, { "path": "/Settings/CGwacs/MaxChargePercentage", "type": "float", @@ -6938,9 +6957,25 @@ "help": "

With this node several settings can be adjusted. Currently the focus is mainly on the Carlo Gavazzi Wired AC Sensors (cgwacs).

", "settings": [ { - "path": "/Settings/CGwacs/AcPowerSetPoint", + "path": "/Settings/CGwacs/AcExportLimit", + "type": "float", + "name": "AC export current limit (A)", + "writable": true + }, + { + "path": "/Settings/CGwacs/AcImportLimit", "type": "float", - "name": "ESS control loop setpoint (W)", + "name": "AC import current limit (A)", + "writable": true + }, + { + "path": "/Settings/CGwacs/AlwaysPeakShave", + "type": "enum", + "name": "Mode for peakshaving", + "enum": { + "0": "Above minimum SOC only", + "1": "Always" + }, "writable": true }, {