https://github.com/frankkkkk/python-vedirect
Python lib for Victron VE.Direct protocol (MPPT controllers)
https://github.com/frankkkkk/python-vedirect
direct mppt python ve vedirect victron
Last synced: 30 days ago
JSON representation
Python lib for Victron VE.Direct protocol (MPPT controllers)
- Host: GitHub
- URL: https://github.com/frankkkkk/python-vedirect
- Owner: Frankkkkk
- Created: 2021-09-17T21:02:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T19:22:37.000Z (about 2 years ago)
- Last Synced: 2025-04-20T13:58:34.750Z (about 1 month ago)
- Topics: direct, mppt, python, ve, vedirect, victron
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-VEDirect
## What is this lib ?
Small library to read Victron's VE.Direct frames.This is useful in order to read Victron's MPPT charge controllers.
You need to use a VE.Direct to USB cable
## How to use this lib ?
First of all, install this library using pip:
```bash
pip3 install vedirect
```Then, you simply need to import the lib and start asking values:
```python>>> import vedirect
>>> device = vedirect.VEDirect()
>>> print(device.battery_volts)
27.5
```The list of available parameters is:
```
battery_volts
battery_amps
solar_volts
solar_power
device_serial
device_MPPT_state
```