Difference between revisions of "Victron VE Direct DIY Cable"

From ivc wiki
Jump to navigationJump to search
Line 12: Line 12:
Sample output of the continuous update stream for the live page in VictronConnect:
Sample output of the continuous update stream for the live page in VictronConnect:


  PID 0xA043 -- Product ID
  PID 0xA043 -- Product ID for BlueSolar MPPT 100/15
  FW 119 -- Firmware version of controller
  FW 119 -- Firmware version of controller, v1.19
  SER# HQXXXXXXXXX -- Serial number
  SER# HQXXXXXXXXX -- Serial number
  V 13790 -- Battery voltage
  V 13790 -- Battery voltage, mV
  I -10 -- Battery current
  I -10 -- Battery current, mA
  VPV 15950 -- PV voltage
  VPV 15950 -- Panel voltage, mV
  PPV 0 -- PV power
  PPV 0 -- Panel power, W
  CS 5 -- Charge state (bulk, absorption, float)
  CS 5 -- Charge state, 0 to 9
  ERR 0 -- Errors
  ERR 0 -- Error code, 0 to 119
  LOAD ON -- Load output status
  LOAD ON -- Load output state, ON/OFF
  IL 0 -- Load current
  IL 0 -- Load current, mA
  H19 0
  H19 0 -- Yield total, kWh
  H20 0
  H20 0 -- Yield today, kWh
  H21 397
  H21 397 -- Maximum power today, W
  H22 0  
  H22 0 -- Yield yesterday, kWh
  H23 0
  H23 0 -- Maximum power yesterday, W
  HSDS 0
  HSDS 0 -- Day sequence number, 0 to 365
  Checksum l:A0002000148 -- Message checksum
  Checksum l:A0002000148 -- Message checksum
:A0102000543
:A0202000000000047
:AD7ED00000087
:AD4ED00008A


For the protocol documentation see:
For the protocol documentation see:

Revision as of 17:32, 30 November 2016

If you broke or lost the VE.Direct cable for your Victron device, you can make your own. The original cable is a RS232/Serial-to-USB converter. This means that any device that appears as an COM/serial device in the operating system will work for this purpose.

Connection

Connection diagram:

Victron vedirect cable diagram.png

Voltage: 5V - when the Victron solar charge controller is powered by the PV, you can leave the 5V pin unconnected Baud rate: 19200

Sample output of the continuous update stream for the live page in VictronConnect:

PID	0xA043			-- Product ID for BlueSolar MPPT 100/15
FW	119			-- Firmware version of controller, v1.19
SER#	HQXXXXXXXXX		-- Serial number
V	13790			-- Battery voltage, mV
I	-10			-- Battery current, mA
VPV	15950			-- Panel voltage, mV
PPV	0			-- Panel power, W
CS	5			-- Charge state, 0 to 9
ERR	0			-- Error code, 0 to 119
LOAD	ON			-- Load output state, ON/OFF
IL	0			-- Load current, mA
H19	0 			-- Yield total, kWh
H20	0			-- Yield today, kWh
H21	397			-- Maximum power today, W
H22	0 			-- Yield yesterday, kWh
H23	0			-- Maximum power yesterday, W
HSDS	0			-- Day sequence number, 0 to 365
Checksum	l:A0002000148		-- Message checksum

For the protocol documentation see:

Sniff serial data

If you have an Arduino Mega, you can utilize one of the extra serial ports to listen on the serial stream from the controller. Connect RX to D19 and TX to D18 on the Mega.

Use this code and open the Serial Monitor on baud rate 19200:

void setup() {
  // initialize both serial ports:
  Serial.begin(19200);
  Serial1.begin(19200); // D18 D19
}

void loop() {
  // read from port 1, send to port 0:
  if (Serial1.available()) {
    int inByte = Serial1.read();
    Serial.write(inByte);
  }

  // read from port 0, send to port 1:
  if (Serial.available()) {
    int inByte = Serial.read();
    Serial1.write(inByte);
  }
}

Materials

This requires the following parts:

Or build one from adapters, cable and connector:

  • Sparkfun FTDI 5V RS232 Mini-USB adapter
  • JST-PH 2.00mm pitch 4-pin connector
  • 4 Wire cable 1m

Software

For Windows, download the USB drivers and install VConnect:

For Mac, just download and install VConnect:

Future

The next project is to try to use a Bluetooth LE serial adapter and try to make it work like a VE.Direct Bluetooth smart dongle.