Skip to content

Commit

Permalink
fix: wallbox #19,#20 (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvtom committed May 21, 2023
1 parent 3b8e2f6 commit 3bd6b45
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions WALLBOX.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,23 @@ The following topics are sent to the MQTT broker:

| Device / Tag | MQTT Topic | Values / [Unit] |
| --- | --- | --- |
| Wallbox power | e3dc/wallbox/total/power | [W] |
| Wallbox power | e3dc/wallbox/solar/power | [W] |
| Wallbox battery | e3dc/wallbox/battery_to_car | |
| Wallbox battery | e3dc/wallbox/battery_before_car | |
| Wallbox status | e3dc/wallbox/status | |
| Wallbox phases | e3dc/wallbox/active_phases | |
| Wallbox phases | e3dc/wallbox/number_used_phases | |
| New: Wallbox battery | e3dc/wallbox/battery_discharge_until | % |
| Wallbox canceled | e3dc/wallbox/canceled | (true/false) |
| Wallbox charging | e3dc/wallbox/charging | (true/false) |
| Wallbox current | e3dc/wallbox/max_current | (true/false) |
| Wallbox plugged | e3dc/wallbox/plugged | (true/false) |
| Wallbox locked | e3dc/wallbox/locked | (true/false) |
| Wallbox charging | e3dc/wallbox/charging | (true/false) |
| Wallbox canceled | e3dc/wallbox/canceled | (true/false) |
| Wallbox mode | e3dc/wallbox/sun_mode | (true/false) |
| Wallbox phases | e3dc/wallbox/active_phases | |
| Wallbox phases | e3dc/wallbox/number_used_phases | |
| Wallbox plugged | e3dc/wallbox/plugged | (true/false) |
| Wallbox power | e3dc/wallbox/total/power | [W] |
| Wallbox power | e3dc/wallbox/solar/power | [W] |
| New: Wallbox power | e3dc/wallbox/enforce_power_assignment | (true/false) |
| Wallbox status | e3dc/wallbox/status | |

The new topics are based on additional tags introduced by https://github.com/nischram/E3dcGui

In addition, these topics can be published to control the wallbox:

Expand All @@ -53,3 +57,13 @@ Set battery before car mode (true/1/false/0)
```
mosquitto_pub -h localhost -p 1883 -t "e3dc/set/wallbox/battery_before_car" -m true
```

Set battery discharge until (%)
```
mosquitto_pub -h localhost -p 1883 -t "e3dc/set/wallbox/battery_discharge_until" -m 80
```

Set enforce power assignment (true/1/false/0)
```
mosquitto_pub -h localhost -p 1883 -t "e3dc/set/wallbox/enforce_power_assignment" -m true
```

0 comments on commit 3bd6b45

Please sign in to comment.