
Arduino / Blaupunkt 679 Stereo UART Connection
Okay so for the fun of it, I decided to start playing around with the original stereo (Blaupunkt 679 / 6 Stacker) as i figured this might be one path to check for being able to set the time on the top centre LCD which shows items like the air con and so on.. And the amount of people who keep telling me the time is wrong is starting to drive me nuts. So.... See if i can read the commands from the head-unit and then send them back to the car itself...
At the moment I'm just reading the head-unit itself and seeing what is what... but its fairly hard to tell without a display and will be a day or two before I bother with trying the UART connection in the car.
Using this sketch:
Code:
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3); //rxPin, txPin (Only used rxPin with common ground)
void setup() {
Serial.begin(4800);
mySerial.begin(4800);
}
void loop() {
if (mySerial.available()) {
Serial.println(mySerial.read());
}
}
So anyway this is something that I figured might help with quickly adapting old functions from head-units or may time directly into general commands that will be used.. ? Now just to get the 8192 side of it
Bookmarks