-
Notifications
You must be signed in to change notification settings - Fork 156
Fix documentation for custom meter config: #773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4,22 +4,30 @@ | |||||
meters: | ||||||
- name: my_meter | ||||||
type: custom | ||||||
power: # power (W) | ||||||
source: # plugin type | ||||||
power: # Leistung (W) | ||||||
source: # Plugin Typ | ||||||
# ... | ||||||
energy: # optional energy (kWh) | ||||||
source: # plugin type | ||||||
energy: # optional Energie (kWh) | ||||||
source: # Plugin Typ | ||||||
# ... | ||||||
soc: # optional battery soc (%) | ||||||
source: # plugin type | ||||||
soc: # optional Batterie SOC (%) | ||||||
source: # Plugin Typ | ||||||
# ... | ||||||
currents: # optional currents (A) | ||||||
- source: # L1 plugin type | ||||||
currents: # optional Ströme (A) | ||||||
- source: # L1 Plugin Typ | ||||||
# ... | ||||||
- source: # L2 plugin type | ||||||
- source: # L2 Plugin Typ | ||||||
# ... | ||||||
- source: # L3 plugin type | ||||||
- source: # L3 Plugin Typ | ||||||
# ... | ||||||
batterymode: # controllable (1: normal, 2: hold, 3: charge) | ||||||
source: # plugin type | ||||||
limitsoc: # optional SOC unteres Limit | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
source: # Plugin Typ | ||||||
# ... | ||||||
batterymode: # optional Batteriemodus (1: normal, 2: hold, 3: charge) | ||||||
source: # Plugin Typ | ||||||
# ... | ||||||
``` | ||||||
|
||||||
:::note | ||||||
`limitsoc` wird von EVCC auf den aktuellen Wert von `soc` gesetzt um ein weiteres Entladen der Batterie z.B. beim Schnelladen zu verhindern. Alternativ kann `batterymode` konfiguriert werden und eine externe Steuerung übernimmt die Kontrolle über die Entladung bzw. Ladung der Batterie basierend auf dem von EVCC übermittelten Modus. Wenn `soc` und `limitsoc` konfiguriert sind wird `batterymode` ignoriert. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Style:
|
||||||
::: |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -12114,10 +12114,18 @@ meters: | |||||
# ... | ||||||
- source: # L3 plugin type | ||||||
# ... | ||||||
batterymode: # controllable (1: normal, 2: hold, 3: charge) | ||||||
limitsoc: # optional lower soc limit (%) | ||||||
source: # plugin type | ||||||
# ... | ||||||
batterymode: # optional battery mode (1: normal, 2: hold, 3: charge) | ||||||
source: # plugin type | ||||||
# ... | ||||||
``` | ||||||
|
||||||
:::note | ||||||
`limitsoc` is set to the current value of 'soc' by EVCC to block further discharge of a battery e.g. for quick charging. Alternatively you can configure `batterymode` and have an external control take care of the charging or discharging of the battery based on the given mode. When `soc` and `limitsoc` are configured `batterymode` will be ignored. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
::: | ||||||
|
||||||
### Demo battery | ||||||
|
||||||
<DeviceFeatures features="" /> | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,14 @@ meters: | |
# ... | ||
- source: # L3 plugin type | ||
# ... | ||
batterymode: # controllable (1: normal, 2: hold, 3: charge) | ||
limitsoc: # optional lower soc limit (%) | ||
source: # plugin type | ||
# ... | ||
batterymode: # optional battery mode (1: normal, 2: hold, 3: charge) | ||
source: # plugin type | ||
# ... | ||
``` | ||
|
||
:::note | ||
`limitsoc` is set to the current value of 'soc' by EVCC to block further discharge of a battery e.g. for quick charging. Alternatively you can configure `batterymode` and have an external control take care of the charging or discharging of the battery based on the given mode. When `soc` and `limitsoc` are configured `batterymode` will be ignored. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s.o. |
||
::: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.