Skip to content

Commit 8f993bb

Browse files
authored
doc external limits (#809)
1 parent ac4b66b commit 8f993bb

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

docs/features/loadmanagement.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,26 @@ Hinweis: Kommt ein Zähler zum Einsatz, der noch keine andere Verwendung (bspw.
114114
An jedem Stromkreis kann sowohl eine maximale Stromstärke pro Phase (`maxCurrent`) als auch eine maximale Leistung (`maxPower`) konfiguriert werden.
115115
Diese Werte werden, sofern konfiguriert, unabhängig voneinander überwacht.
116116

117+
### externe Grenzwerte
118+
119+
Bedarfsweise können mit `GetMaxCurrent` und `GetMaxPower` auch externe Grenzwerte definiert werden. Im Fehlerfall gelten die fest definierten Grenzwerte.
120+
121+
Beispiel:
122+
123+
```yaml
124+
circuits:
125+
- name: main
126+
title: Hauptsicherung
127+
maxCurrent: 48
128+
GetMaxCurrent:
129+
souce: mqtt
130+
topic: ext/maxcurrent
131+
maxpower: 33000
132+
GetMaxPower:
133+
source: mqtt
134+
topic: ext/maxpower
135+
```
136+
117137
## Einschränkungen
118138

119139
:::info

i18n/en/docusaurus-plugin-content-docs/current/features/loadmanagement.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,26 @@ Note: If a meter is used that is not yet used for another purpose (e.g. `grid`),
111111
Both a maximum current per phase (`maxCurrent`) and a maximum power (`maxPower`) can be configured on each circuit.
112112
These values, if configured, are monitored independently of each other.
113113

114+
### External limits
115+
116+
If necessary, external limits can also be defined using `GetMaxCurrent` and `GetMaxPower`. In the event of an error, the predefined limits apply.
117+
118+
Example:
119+
120+
```yaml
121+
circuits:
122+
- name: main
123+
title: 'main circuit'
124+
maxCurrent: 48
125+
GetMaxCurrent:
126+
souce: mqtt
127+
topic: ext/maxcurrent
128+
maxpower: 33000
129+
GetMaxPower:
130+
source: mqtt
131+
topic: ext/maxpower
132+
```
133+
114134
## Restrictions
115135

116136
:::info

0 commit comments

Comments
 (0)