I bought a Chevy Volt Gen1 DC-DC Converter - Now What? Topic is solved
- mjc506
- Posts: 343
- Joined: Wed Sep 09, 2020 9:36 pm
- Location: Wales, United Kingdom
- Has thanked: 30 times
- Been thanked: 28 times
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
Ahhh bugger. Amazon? Or get hold of an Arduino Due?
- Gregski
- Posts: 2535
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 447 times
- Been thanked: 780 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
yup, I got an Arduino Due and SaavyCAN works fine on that, I am trying to get it working on Teensy to show folks how it works on there type of thing, plus I like pain
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
- mjc506
- Posts: 343
- Joined: Wed Sep 09, 2020 9:36 pm
- Location: Wales, United Kingdom
- Has thanked: 30 times
- Been thanked: 28 times
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
Ah, good to have a working system to compare against
Just a thought, have you got Teensyduino installed? (The Arduino IDE that's been "teensyfied")
Just a thought, have you got Teensyduino installed? (The Arduino IDE that's been "teensyfied")
- Gregski
- Posts: 2535
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 447 times
- Been thanked: 780 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
this is actually worthy of a discussion or comment, I feel like to really make it headache free you need a dedicated computer or laptop just to a platform because all these microcontroller boards and Arduino sketches totally conflict with one another, I am constantly pulling this library out and putting this one in when going between Damien Maguire's Lexus GS450h VCU (which I luv by the way) and my UNO to talk to my ISA current shunt, to the DUE for CAN Busing and the Teensy for SimpBMSing, anyone else experienced this? I think I saw Damien with multiple laptops in a couple of his videos.
yes and got it working with Tom de Bree's SimpBMS
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
-
- Posts: 3435
- Joined: Mon Dec 24, 2018 1:37 pm
- Location: Slovenia
- Has thanked: 101 times
- Been thanked: 304 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
DOH! I will have to learn all the new systems now!!!
- mjc506
- Posts: 343
- Joined: Wed Sep 09, 2020 9:36 pm
- Location: Wales, United Kingdom
- Has thanked: 30 times
- Been thanked: 28 times
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
Things do seem to be more stable on Linux, but that's another thing to learn, so... I would have expected everything to play nicely though, just have to change the 'board' each time you swap projects. But yes, library conflicts can be a pain. Although, once you've got each board programmed, they should just talk over serial (ie, you don't need to even have the Arduino IDE open to use Savvycan, and Arduino set to compile for a Due will happily talk to an Uno over the serial monitor for example. Or you could even use another Serial terminal. Apologies if I'm teaching you to suck eggs...
- Gregski
- Posts: 2535
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 447 times
- Been thanked: 780 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
so I've been beating up on the Chevy Volt first gen DC-DC converter in a companion thread called: I think I CAN, I think I CAN... but I want to share some highlights in here as well from what I learned
first here is how to check the polarity ie figure out which wire is positive which one is negative
no light so polarity is correct
first here is how to check the polarity ie figure out which wire is positive which one is negative
no light so polarity is correct
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
- Gregski
- Posts: 2535
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 447 times
- Been thanked: 780 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
and here is something I learned, GM crossed the wires in the intermediate cable running from the converter to the battery pack
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
- Gregski
- Posts: 2535
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 447 times
- Been thanked: 780 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
here's a close up
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
- Roadstercycle
- Posts: 118
- Joined: Mon Sep 23, 2019 10:28 pm
- Location: California
- Has thanked: 3 times
- Been thanked: 2 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
Hi Guys,
Been a bit since I've been here. I've been using the Chevy volt Gen 1 DC-DC converter on 3 of my builds. I use a Teensey and 1 line of code to run them. Very simple. Here's the code. I believe I set it to 14.0 volts. I'm on vacation so I can't verify at the moment. The charger is hooked up all the time with no relay, I just turn power on to the teensey and the DC-DC with ignition or when the J1772 is plugged in to run water pump and cooling fan.
Happy Charging!
#include <FlexCAN_T4.h>
const int ledPin = 13;
FlexCAN_T4<CAN1, RX_SIZE_256, TX_SIZE_16> Can1;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
Can1.begin();
Can1.setBaudRate(500*1000);
}
void loop() {
Can1.events();
static uint32_t t = millis();
if ( millis() -t > 4 ) {
CAN_message_t frame;
frame.id = 0x1D4;
frame.len = 2;
frame.buf[0] = 0xA0;
frame.buf[1] = 0xB1;
Can1.write(frame);
t = millis(); // reset 5 second counter
}
if ( millis() -t > 4 ) {
Serial.print("CAN1 ");
Serial.print(" ID: 0x");
}
digitalWrite(ledPin, !digitalRead(ledPin));
}
Been a bit since I've been here. I've been using the Chevy volt Gen 1 DC-DC converter on 3 of my builds. I use a Teensey and 1 line of code to run them. Very simple. Here's the code. I believe I set it to 14.0 volts. I'm on vacation so I can't verify at the moment. The charger is hooked up all the time with no relay, I just turn power on to the teensey and the DC-DC with ignition or when the J1772 is plugged in to run water pump and cooling fan.
Happy Charging!
#include <FlexCAN_T4.h>
const int ledPin = 13;
FlexCAN_T4<CAN1, RX_SIZE_256, TX_SIZE_16> Can1;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
Can1.begin();
Can1.setBaudRate(500*1000);
}
void loop() {
Can1.events();
static uint32_t t = millis();
if ( millis() -t > 4 ) {
CAN_message_t frame;
frame.id = 0x1D4;
frame.len = 2;
frame.buf[0] = 0xA0;
frame.buf[1] = 0xB1;
Can1.write(frame);
t = millis(); // reset 5 second counter
}
if ( millis() -t > 4 ) {
Serial.print("CAN1 ");
Serial.print(" ID: 0x");
}
digitalWrite(ledPin, !digitalRead(ledPin));
}
- Gregski
- Posts: 2535
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 447 times
- Been thanked: 780 times
- Contact:
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
well it's been forever and a day since I played with this stuff, but I am finally ready to hook up the DC DC converter on my truck and was wondering if anyone has gotten it to work with a Teensy in a real world example, and since so much time has passed did they ever come out with a Teensy with a built in CAN Bus transceiver on it for compactability
and I know I have been out of the Teesnyduino game for a minute, but tell me this is wrong and they just forgot a decimal
and I know I have been out of the Teesnyduino game for a minute, but tell me this is wrong and they just forgot a decimal
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
Re: I bought a Chevy Volt Gen1 DC-DC Converter - Now What?
Has anyone had issues with the output from these things fluctuating? I have the later version of the gen 1 and noticed the other day that my headlights and tail lights are flickering while it's running. No flicker when they're just running off the 12v battery. Wondering if mine is defective and I should go search for another, or maybe slap a big capacitor on the output and hope for the best?
Also if it has gone bad, I wonder why. I have it mounted in my transmission tunnel so it does see airflow from the bottom of the car, but probably not a ton, and not necessarily over the fins. Might be prudent to build a little scoop and duct some air to it..
Also if it has gone bad, I wonder why. I have it mounted in my transmission tunnel so it does see airflow from the bottom of the car, but probably not a ton, and not necessarily over the fins. Might be prudent to build a little scoop and duct some air to it..