Skip to content

Commit

Permalink
Add grid metering to ESS nodes
Browse files Browse the repository at this point in the history
Allow reading and writing the grid metering setting (external meter vs inverter/charger)  from the ESS nodes.
  • Loading branch information
dirkjanfaber committed Oct 8, 2024
1 parent 253d758 commit c4ffb49
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/nodes/config-client.html
Original file line number Diff line number Diff line change
Expand Up @@ -1821,6 +1821,13 @@ <h3>Settings</h3>
<li>0 - Feed excess AC-tied PV into grid</li>
<li>1 - Don’t feed excess AC-tied PV into the grid</li>
</ul>
</dd>
<dt class="optional">Grid metering<span class="property-type">enum</dt>
<dd>Dbus path: <b>/Settings/CGwacs/RunWithoutGridMeter</b>
<ul>
<li>0 - External meter</li>
<li>1 - Inverter/Charger</li>
</ul>
</dd>
<dt class="optional">DVCC Charge current limit (A)<span class="property-type">float</dt>
<dd>Dbus path: <b>/Settings/SystemSetup/MaxChargeCurrent</b>
Expand Down Expand Up @@ -5123,6 +5130,13 @@ <h3>Settings</h3>
<li>0 - Feed excess AC-tied PV into grid</li>
<li>1 - Don’t feed excess AC-tied PV into the grid</li>
</ul>
</dd>
<dt class="optional">Grid metering<span class="property-type">enum</dt>
<dd>Dbus path: <b>/Settings/CGwacs/RunWithoutGridMeter</b>
<ul>
<li>0 - External meter</li>
<li>1 - Inverter/Charger</li>
</ul>
</dd>
<dt class="optional">Charge current limit (A)<span class="property-type">float</dt>
<dd>Dbus path: <b>/Settings/SystemSetup/MaxChargeCurrent</b>
Expand Down
19 changes: 19 additions & 0 deletions src/services/services.json
Original file line number Diff line number Diff line change
Expand Up @@ -2181,6 +2181,15 @@
"1": "Don’t feed excess AC-tied PV into the grid"
}
},
{
"path": "/Settings/CGwacs/RunWithoutGridMeter",
"type": "enum",
"name": "Grid metering",
"enum": {
"0": "External meter",
"1": "Inverter/Charger"
}
},
{
"path": "/Settings/SystemSetup/MaxChargeCurrent",
"type": "float",
Expand Down Expand Up @@ -6597,6 +6606,16 @@
},
"writable": true
},
{
"path": "/Settings/CGwacs/RunWithoutGridMeter",
"type": "enum",
"name": "Grid metering",
"enum": {
"0": "External meter",
"1": "Inverter/Charger"
},
"writable": true
},
{
"path": "/Settings/SystemSetup/MaxChargeCurrent",
"type": "float",
Expand Down

0 comments on commit c4ffb49

Please sign in to comment.