DIY: Getting data from Holley CAN BUS
The Best V8 Stories One Small Block at Time
Yes, there are tools that can work with DBC to convert them to excel for example. I've created tools to generate "C" code from excel before for my touch screen, but I don't have any plans for the native holley data unless a need comes up.
Yes, there are tools that can work with DBC to convert them to excel for example. I've created tools to generate "C" code from excel before for my touch screen, but I don't have any plans for the native holley data unless a need comes up.
It not only does the lockup, but controls the entire 4L80E and everything else in the car.
https://pcswebsite.s3.amazonaws.com/...User_Guide.pdf
https://pcswebsite.s3.amazonaws.com/...ges%20v2_1.pdf
https://pcswebsite.s3.amazonaws.com/...ges%20v1_1.pdf
#include <Arduino.h>
#include <mcp_can.h>
#include <SPI.h>
MCP_CAN sendCAN(10); // Set CS to pin 10
void setup() {
// put your setup code here, to run once:
pinMode(readCAN_INT, INPUT);
Serial.begin(115200);
// Initialize MCP2515 running at 8MHz with a baudrate of 250kb/s and the masks and filters disabled.
if (sendCAN.begin(MCP_ANY, CAN_250KBPS, MCP_8MHZ) == CAN_OK)
Serial.println("MCP2515 Initialized Successfully on Pin 10!");
else
Serial.println("Error Initializing MCP2515...on Pin 10");
sendCAN.setMode(MCP_NORMAL); // Change to normal mode to allow messages to be transmitted
}
byte dataToScreen[8] = { 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
void loop() {
// put your main code here, to run repeatedly:
sendCAN();
}
void sendCAN(){
byte sndStat = sendCAN.sendMsgBuf(0x18F00504, 1,8, dataToScreen);
if(sndStat == CAN_OK){
Serial.println(dataToScreen[0]);
Serial.println("Message Sent Successfully!");
} else {
Serial.println("Error Sending Message...");
Serial.println(sndStat);
}
delay(100); // send data per 100ms
} Last edited by cjohnson6772; Jan 21, 2025 at 10:26 AM.
You problem is that there is nothing on the receiving end of the canbus wires. Hook something up that expects the same speed and protocol and it should go away. I tested this with my current J1939 CANBUS encoder project.
What does that gear indicator cost anyway? Their we site seems to be hacked or someting.
Last edited by LSswap; Jan 21, 2025 at 02:02 PM.











Does that display already have canbus in it?