Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rnd-ash/W203-canbus
Open source project for W211/W219 W203/W209 Mercs - bluetooth audio control and more!
https://github.com/rnd-ash/W203-canbus
android android-application arduino arduino-setup bluetooth canbus canbus-shield car connected-car connected-vehicle frames ic-display mcp2515 mercedes mercedes-benz phone reverse-engineering w203 w211
Last synced: 3 months ago
JSON representation
Open source project for W211/W219 W203/W209 Mercs - bluetooth audio control and more!
- Host: GitHub
- URL: https://github.com/rnd-ash/W203-canbus
- Owner: rnd-ash
- License: mit
- Created: 2019-10-02T18:17:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-07T08:49:33.000Z (over 4 years ago)
- Last Synced: 2024-07-12T21:17:00.100Z (4 months ago)
- Topics: android, android-application, arduino, arduino-setup, bluetooth, canbus, canbus-shield, car, connected-car, connected-vehicle, frames, ic-display, mcp2515, mercedes, mercedes-benz, phone, reverse-engineering, w203, w211
- Language: C++
- Homepage:
- Size: 8.32 MB
- Stars: 119
- Watchers: 29
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-canbus - W203-canbus - Arduino project for W211/W219 W203/W209 Mercedes (bluetooth audio control and more). (Hardware / Arduino)
- awesome-automotive-can-id - Mercedes-Benz - W203 Open source project for W211/W219 W203/W209 Mercs (bluetooth audio control and more). (Mercedes-Benz / Range Rover)
README
# Mercedes canbus project for older W203/W209/W211 cars
A proof of concept application using an Arduino and Android phone to add extra features to these older Mercedes cars by tapping into their systems via canbus.# This project is now no longer my primary project for the car
If you want to fix things, feel free to submit pull requests to this repositoryIf you have an android head unit in your car, feel free to checkout a much more feature rich version of this that runs on the headunit [here](https://github.com/rnd-ash/MBUX-Port)
# DEMO VIDEOS
Can be accessed via [this link](https://www.youtube.com/playlist?list=PLxrw-4Vt7xtt3VkDx_Z35n4SdYG9C3N7i)## Project status
So far, the project has grown well out of proportion and has ended up being a way to modernise the W203 slightly. The arduino now requires a HC-06 bluetooth module, which then connects to the android application running on an android device. This now serves to give 'hands free music control' to the car, the steering wheel button presses in the AUX Page are now relayed to the phone in order to change tracks. The phone also then tells the Arduino via bluetooth what track is playing. The arduino will then send can frames to the IC Cluster to display the current track playing.## Controls enabled via the android application
* Turn on / off indicators and hazard lights
* Set custom interval for indicator clicks (faster / slower)
* Unlock doors
* Lock doors
* Toggle ESP
* Retract rear headrests
* Display custom text on the IC display
* Set scroll speed of text across the IC display (only if text > 8 characters)## Repo contents:
* IC_CUSTOM_TEXT - Contains Arduino code for project
* androidApp - Contains Android app code for project
* can_read - Simple tool to read can frames from car
* Replayer - Replays data captured by can_read in realtime. (Used to analyze can frames and work out functions of frames)## Reverse engineering documentation
See [here](https://docs.google.com/spreadsheets/d/1krPDmjjwmlta4jAVcDMoWbseAokUYnBAHn67pOo00C0/edit?usp=sharing)## Hardware setup
![Arduino setup](/setup.png?raw=true "Arduino hardware setup")Currently, I have 2 MCP2515 modules. 1 with a 8Mhz Clock thats connected to CAN C, and 1 with a 16Mhz clock that is connected to Can B. (I found out that Can B is NOT compatible with the 8Mhz clock due to its odd bitrate of 83.3Kbps). If you end up using 2 modules with 16Mhz clocks, please change the following line in IC_CUSTOM_TEXT/canbuscomm.cpp:
```cpp
this->canC->setBitrate(CAN_500KBPS, MCP_8MHZ);
```
to
```cpp
this->canC->setBitrate(CAN_500KBPS);
```
Failing to do so may result in some absolutely wild behaviour with the rest of the car!### Connection to Can B
I am using the X30/7 connector to connect to Canbus B. This is a hub (with multiple wires coming out of it) located on the panel below the drivers steering wheel. you will notice it has a few free slots. This is where I have ran the cables to.### Connection to Can C
Canbus C is a little more difficult. I could not find a connector like for Bus B. Instead, I ran wires to the back of the Instrument cluster. Connected to the instrument are 2 green wires. The Solid green wire is CanH+, and the green wire with a white stripe is CanL-.### Project Limitations
Currently, I have only worked out how to display 1 line of maximum 8 characters on the IC Display. This means that if the track name is more than 8 characters, the Arduino will shift the string by 1 every 150MS, resulting in the text scrolling across the screen to display a longer message. However, the IC Displays response time is appaling, resulting in somtimes a slushy text animation. idealy, I would like to find out how to lower the size of the text on the display in order to display more than 8 characters at a time