Skip to content

Commit

Permalink
Updated services and documentation
Browse files Browse the repository at this point in the history
Added extra paths to input-battery and output-vebus + documentation
  • Loading branch information
dirkjanfaber committed Oct 10, 2024
1 parent 6a8c37a commit c9719bc
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/nodes/config-client.html
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,9 @@ <h3>Battery</h3>
</dd>
<dt class="optional">Capacity (Ah)<span class="property-type">float</dt>
<dd>Dbus path: <b>/Capacity</b>
</dd>
<dt class="optional">Connection information<span class="property-type">string</dt>
<dd>Dbus path: <b>/ConnectionInformation</b>
</dd>
<dt class="optional">Consumed Amphours (Ah)<span class="property-type">float</dt>
<dd>Dbus path: <b>/ConsumedAmphours</b>
Expand Down Expand Up @@ -851,6 +854,18 @@ <h3>Battery</h3>
<li>34 - Wrong system voltage</li>
<li>35 - Pre-charge timeout</li>
</ul>
</dd>
<dt class="optional">SmartLithium error flag: Communication<span class="property-type">float</dt>
<dd>Dbus path: <b>/Errors/SmartLithium/Communication</b>
</dd>
<dt class="optional">SmartLithium error flag: Invalid configuration<span class="property-type">float</dt>
<dd>Dbus path: <b>/Errors/SmartLithium/InvalidConfiguration</b>
</dd>
<dt class="optional">SmartLithium error flag: Battery number<span class="property-type">float</dt>
<dd>Dbus path: <b>/Errors/SmartLithium/NrOfBatteries</b>
</dd>
<dt class="optional">SmartLithium error flag: Voltage<span class="property-type">float</dt>
<dd>Dbus path: <b>/Errors/SmartLithium/Voltage</b>
</dd>
<dt class="optional">Automatic syncs (count)<span class="property-type">float</dt>
<dd>Dbus path: <b>/History/AutomaticSyncs</b>
Expand Down Expand Up @@ -5741,6 +5756,9 @@ <h3>Vebus</h3>
<li>0 - No action</li>
<li>1 - Redetect system</li>
</ul>
</dd>
<dt class="optional">Power Assist boost factor<span class="property-type">float</dt>
<dd>Dbus path: <b>/Settings/AssistCurrentBoostFactor</b>
</dd>
<dt class="optional">Configured output voltage (V AC)<span class="property-type">float</dt>
<dd>Dbus path: <b>/Settings/InverterOutputVoltage</b>
Expand Down
31 changes: 31 additions & 0 deletions src/services/services.json
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,11 @@
"type": "float",
"name": "Capacity (Ah)"
},
{
"path": "/ConnectionInformation",
"type": "string",
"name": "Connection information"
},
{
"path": "/ConsumedAmphours",
"type": "float",
Expand Down Expand Up @@ -913,6 +918,26 @@
"35": "Pre-charge timeout"
}
},
{
"path": "/Errors/SmartLithium/Communication",
"type": "float",
"name": "SmartLithium error flag: Communication"
},
{
"path": "/Errors/SmartLithium/InvalidConfiguration",
"type": "float",
"name": "SmartLithium error flag: Invalid configuration"
},
{
"path": "/Errors/SmartLithium/NrOfBatteries",
"type": "float",
"name": "SmartLithium error flag: Battery number"
},
{
"path": "/Errors/SmartLithium/Voltage",
"type": "float",
"name": "SmartLithium error flag: Voltage"
},
{
"path": "/History/AutomaticSyncs",
"type": "float",
Expand Down Expand Up @@ -7446,6 +7471,12 @@
},
"writable": true
},
{
"path": "/Settings/AssistCurrentBoostFactor",
"type": "float",
"name": "Power Assist boost factor",
"writable": true
},
{
"path": "/Settings/InverterOutputVoltage",
"type": "float",
Expand Down

0 comments on commit c9719bc

Please sign in to comment.