Skip to content

Commit f528a7c

Browse files
MQTT (#207)
* mqtt * Update docs/reference/configuration/mqtt.md Co-authored-by: Michael Geers <[email protected]> Co-authored-by: Michael Geers <[email protected]>
1 parent 3ac54df commit f528a7c

File tree

1 file changed

+33
-1
lines changed
  • docs/reference/configuration

1 file changed

+33
-1
lines changed

docs/reference/configuration/mqtt.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ sidebar_position: 14
44

55
# `mqtt`
66

7-
Ermöglicht es Daten per MQTT mit einem Broker auszutauschen.
7+
Stellt die Konnektivität mit einem MQTT-Broker her.
8+
Bei bestehender Verbindung pusht evcc automatisch alle internen Werte via MQTT-Broker auf das angegebene Topic und empfängt dort auch Änderungen.
9+
Siehe dazu auch die Dokumentation zur [`MQTT API`](/docs/reference/api/#mqtt-api).
810

911
**Beispiel**:
1012

@@ -13,6 +15,36 @@ Ermöglicht es Daten per MQTT mit einem Broker auszutauschen.
1315
mqtt:
1416
broker: localhost:1883
1517
topic: evcc # root topic for publishing, set empty to disable publishing
18+
# clientid: foo
1619
# user:
1720
# password:
1821
```
22+
23+
---
24+
25+
## Erforderliche Parameter
26+
27+
### `broker`
28+
29+
Verbindungsdaten (Hostname/IP und Port) des verwendeten MQTT-Brokers zu dem sich evcc als Client verbinden soll.
30+
31+
### `topic`
32+
33+
Gibt das Wurzeltopic an welches evcc verwendet.
34+
Wenn hier nichts angegeben wird findet keine MQTT-Kommunikation statt!
35+
36+
---
37+
38+
## Optionale Parameter
39+
40+
### `user`
41+
42+
Der Benutzernamen zur Anmeldung am MQTT-Broker.
43+
44+
### `password`
45+
46+
Das Anmeldepasswort am MQTT-Broker.
47+
48+
### `clientid`
49+
50+
Erlaubt eine feste MQTT-Client ID vorzugegeben. Andernfalls wird diese dynamisch vergeben.

0 commit comments

Comments
 (0)