Hi guys, After many hours of trial and error, I have completed the V2 of my EMU Bluetooth display and the code is available for free, and you can buy the hardware from AliExpress, Ebay or from your local shops. (V3 will include touch functions and multiple tabs)
This is so good⦠Iād love to do a Portrait GUI version, to fit where the old, analogue clock is, in my E30. Iāll have to put this on the list of things to have a crack at!!! Thanks for sharing
Good luck. My code is synchronous because while (SerialBT.available() >= 5) {
It works fine for my use-case but if you want to use touch controls, you should probably change to to async by doing something like this. (I will also fix this in V3)
static uint8_t frame[5];
static int frameIndex = 0;
void loop() {
frame[frameIndex++] = SerialBT.read();
if (frameIndex == 5) {
Did you update the MAC address?
If not, you can also uncomment //#define USE_NAME and use the BT name and pin
Also, EMU CAN BT Adapter can only connect to 1 device at a time, so do make sure you are not connected to it with your mobile or any other devices. (connecting via MAC address is much faster though)
If nothing works, try changing the ESP32ās BT name String myBtName = āESP32-BT-Masterā; to something else.
#4 is the fastest method, but you need to find your EMU MAC address and update it. #3 is the BT name of EMU #2 is the BT pin of EMU #1 when commented, ESP will use MAC address to connect. If uncommented, ESP will use name and pin to connect, MAC address is faster.
If BT connection / display driver is not the issue, you can post the latest error you get in your serial monitor, and Iāll try to help.
@Stauff Great. Thereās a link to a 3d printable case in my GIT. Feel free to use it and print using ASA or ABS if you are living in a high temp location.
Hello, it is a bit off topic but I donāt get any reply on my other post: I am using EMU black with CAN to BT Module and the dash3 App on my phone. But I cant get it to work. The LED turns solid indicating a connection but I get error code 1 on the app and it ask to reconnect endlessly. Settings in EMU should be correct. CAN is green and I tried with and without termination resistors. Anybody has an idea what error code one means? Thanks
@Quattro_Racer EMU App V2 & V3 seem to have issues with Android 15. My old Android 13 phone works fine, a colleague has a Android 14 and it works fine too. My Android 15 cannot connect. (too small of a sample size to know for sure)
Tunerview works fine.
The whole reason I made the DIY display was because my new phone couldnāt connect to EMU and I didnāt want to carry a second phone just for this.
I would recommend to try with Tunerview or try an older phone first.
@Quattro_racer If you check the EDL-1 documentation , ecumaster recommends to use realdash , you can dl it from playstore.
It works for me. EMU Dash3 is not available anymore, and even I found a way to dl it, it didnāt work (connection issue)
@danu91 Thanks for you work. I ordered a esp32. Impatient to test it, and adapt it a bit to suit my use case.
@eudes Just out of curiosity, is RealDash better than TunerView?
As for the ESP32 option - Iāve added a few extra documents in the Git, so you can decide what kinda data you want to show / what kinda warnings you want to give and update your code accordingly. (mostly just have to change channel IDs, conversions and if/else conditions)
I donāt know if itās better or not.
I only installed realdash to test the installation.
But as Iām not a big fan of big screen etc, I definitely prefer your proposal.
I just want to see some specific value in one sight like oil temp/pressure.
Currently Iām using an innovate gauge, but not able to connect the sensor to both gauge and EMU.
I read your code, even I didnāt touch c++ since years, Itās readable and can be easily modified.
Do you know if we can connect multiple device to EDL 1, it will continue to work fluently?