VictronMPPT-ESPHOME/README.md

58 lines
913 B
Markdown
Raw Normal View History

2021-05-30 10:34:11 +00:00
# VictronMPPT-ESPHOME
# Victron Mppt charger ve.direct to esphome node
A configured uart component is required.
Example:
```yaml
victron:
uart_id: the_uart
sensor:
- platform: victron
panel_voltage:
id: pv
battery_voltage:
id: bv
battery_current:
id: bc
```
The `uart_id` is optional.
All sensors are optional.
The available numeric sensors are:
- `max_power_yesterday`
- `max_power_today`
- `yield_total`
- `yield_yesterday`
- `yield_today`
- `panel_voltage`
- `panel_power`
- `battery_voltage`
- `battery_current`
- `day_number`
- `charger_status`
- `error_code`
- `tracker_operation`
The available text sensors are:
- `charger_text`
- `error_text`
- `tracker_text`
- `fw_version`
- `pid`
2021-05-30 10:44:46 +00:00
Install:
2021-05-30 10:39:49 +00:00
copy folder `victron` in `custom_components` folder to `~/config/esphome/custom_components/victron`
2021-05-30 10:34:11 +00:00
Full example in victron.yaml
2021-05-30 10:39:49 +00:00
`Big thanks for help to ssieb`
```