iPod Smart Dock (Get start)
19:35
5 ай бұрын
iPod Smart Dock Instructions.
16:51
ESP32 RTOS Test
1:00
Жыл бұрын
ESP32 OBD2 Gauge #ep3
1:48
Жыл бұрын
ESP32 OBD2 Gauge #ep2
3:16
Жыл бұрын
ESP32 OBD2 Gauge #ep1
1:04
Жыл бұрын
Arduino micro Smart Watch
1:17
2 жыл бұрын
Once Stamp Camera
2:15
2 жыл бұрын
Ingenious Drive Concept
0:42
2 жыл бұрын
Ingenious Drive Concept
1:32
2 жыл бұрын
Ingenious Drive App
1:24
2 жыл бұрын
Ingenious Drive History
1:07
2 жыл бұрын
Many BUGs 3D Model Print Simulator
5:08
Ingenious Drive App (Android + iOS)
0:35
Пікірлер
@vacob6494
@vacob6494 19 сағат бұрын
Hello guys, I added enclosure (box, case) 3d print file to github, download URL is in the description of this video kzbin.info/www/bejne/hpy0koiAl9-HhK8
@JohnSpetrino-p4y
@JohnSpetrino-p4y Күн бұрын
can you display other parameters like MPG, DEF levels etc?
@vacob6494
@vacob6494 Күн бұрын
it's possible to calculate MPG but might not accurate, for DEF levels. I'm not sure if there is support PID or not. if it's available , we can display DEF level on guage.
@MrRaceTarget
@MrRaceTarget 7 күн бұрын
Help please... I got this error saying NO FILE FOUND on startup and there is no image. Can you point out how to upload the image for start up? Thanks
@vacob6494
@vacob6494 6 күн бұрын
About opening logo image and goodbye image. - you can save welcome page logo into gauge by saving file name "vaandcob.jpg" size 320x240 pixels into littleFS storage. - you can save goodbye page image into gauge by saving file name "mypic.jpg" size 320z240 pixels into littleFS storage * if you don't want to use it, you can comment out code line no. 320 - 322 */
@MrRaceTarget
@MrRaceTarget 6 күн бұрын
@@vacob6494 how do I access the littleFS? From arduino IDE? Or from a folder before I upload the code from Arduino IDE? My apology... I'm not really sure what to do..
@MrRaceTarget
@MrRaceTarget 5 күн бұрын
@@vacob6494 OK. I got it.. a bit of extra step to upload it. Thanks so much ! it works now.
@GaetanoIachella
@GaetanoIachella 7 күн бұрын
This tool is very nice, can I do it with V1.5 Mini BT too?
@vacob6494
@vacob6494 7 күн бұрын
@@GaetanoIachella if it's real ELM327 compatible . It'd work.
@MrRaceTarget
@MrRaceTarget 13 күн бұрын
Thanks so much for sharing this on github. you are a Genius ! Just a question - I tried build this with the Github code. Everything works great, except I got this error saying NO FILE FOUND on startup.. it should be the Va&Cob image but instead of the image, it just shows ERROR: NO FILE FOUND. Perhaps you can guide me how to fix it? Thanks so much again.
@gaelperon
@gaelperon 21 күн бұрын
genius !
@MateusLeonardoMendes
@MateusLeonardoMendes Ай бұрын
Great code. Do you mind helping me to modify your code to choose a specific header for each pid? Ex: coolant goes for PID 0105 at header 7E0, but CVT transmission temperature (in a suberu vehicle) goes for PID 2210D2 but at header E71.
@zaprodk
@zaprodk Ай бұрын
1:03 "Engnine" - Typo.
@vacob6494
@vacob6494 Ай бұрын
this is Diesel engine.
@zaprodk
@zaprodk Ай бұрын
*Enclosure :)
@vacob6494
@vacob6494 Ай бұрын
@vacob6494 0 วินาทีที่ผ่านมา the box is custom-made by the enclosure maker. made of acrylic sheet. if I have time I will make a 3d file for u guys
@MateusLeonardoMendes
@MateusLeonardoMendes 2 ай бұрын
I have finally figured out which is the PID for my 2016 Subaru Forester CVT Temp (2210D2) but it comes from the TCU (7E1 address, usually the pids come from 7E0). I managed to test is using car scanner terminal and it works. I found where to edit the standard pids in your code but haven't managed to change where the pids come from, by default they come from 7E0, but in order to read my CVT temp i have to change it to 7E1, is it possible to change the module address?
@vacob6494
@vacob6494 2 ай бұрын
I'm not sure about the ECU address but from this page. obd2australia.com.au/auto-transmission-temperature-pids/ subaru and ford TFT has the same ECU address but different pid, I'd like u to try 221017 and see if it works, by the way you can read data from ECU address too, please read this datasheet www.elmelectronics.com/DSheets/ELM327DSH.pdf on page 39 and 47. (recommend true ELM327 adaptor, not cheap one) please remember that you need to correct calculate formula to give the correct temperature.
@MateusLeonardoMendes
@MateusLeonardoMendes 2 ай бұрын
@@vacob6494 Thanks for your attention. I tried 221017 before, does not work. 2210D2 I'm 100% sure it works because I successfully got the temperature from it by adding a custom sensor in CarScanner app, but I had to use the header 7E1 instead of default 7E0. If you give no instructions to Elm327, it will always go for the default header (7E0), so it all your needs are standard PIDs, there no need to worry about the headers. But in my case I need to go for the 7E0 so I have to figure a way to change that
@vacob6494
@vacob6494 2 ай бұрын
@@MateusLeonardoMendes you can try connecting and reading with a Bluetooth serial terminal (android or laptop PC), I believe we can set ELM to read from a specific ECU address.
@MateusLeonardoMendes
@MateusLeonardoMendes 2 ай бұрын
@@vacob6494 I did exactly that using my android phone and got the correct answer. The challenge now is to do this with your code and get pids from multiple control units, since i need PIDs from the engine as much as i need from the transmission.
@MateusLeonardoMendes
@MateusLeonardoMendes Ай бұрын
@@vacob6494 I succefully could read 2210D2 using your code and managed to change ECU adress using ATSH 7E1 at line 64, but it made all other pids stop working. Is it possible to add another row in pidConfig table to change headers? EX: "0105", "ATSH7E0".... "2210D2", "ATST7E1". It needs to be able to switch headers on the fly.
@samuelestrappazzon4384
@samuelestrappazzon4384 2 ай бұрын
hi, I'm having some problems loading the code onto the esp32, it tells me that ledcSetup has not been defined, any advice?
@vacob6494
@vacob6494 2 ай бұрын
please downgrade esp32 arduino core to 2.0.7. I guess you are using core 3.0.x
@andre-th2rw
@andre-th2rw 3 ай бұрын
How did you figure out which CAN values to read? lets say i want to build my own version of this for an audi and connect my esp to a obd2 adapter. i can use apps like torque. how did you know what specific values to read for RPM / MAP etc for you model car?
@vacob6494
@vacob6494 2 ай бұрын
@andre-th2rw OBD2 mode 01 is a standard. So every vehicle that compatible with obd2 could read standard parameters (rpm, speed,etc..) but not all For custom pid, it's different and upto each car maker.
@fabiopesenti
@fabiopesenti 3 ай бұрын
Hi, I managed to get the OBD gauge to work well with a blue OBD2 marked ELM327. Now I'm trying to use an OBD vLinker MC+ because ELM327 does not transmit parameters with PID2218E4. At startup it sees the vLinker MC+ with address e0:ff:f1:6f:aa:45 but it does not connect. Do you have any suggestions? Thank you very much
@vacob6494
@vacob6494 3 ай бұрын
@fabiopesenti in the sketch. I fixed it to connect to the obd2 adaptor that has the name "obd2" only. But you can change it.
@fabiopesenti
@fabiopesenti 2 ай бұрын
@@vacob6494 Hi, now the "vLinker MC+" at startup is recognized and the program run but after 5 seconds the application closes and restarts this continuously . This problem did not happen with blue OBDII marked ELM327. How can I modify the code? Thank you very much
@vacob6494
@vacob6494 2 ай бұрын
@@fabiopesenti could u please connect gauge to laptop and see debug message on serial terminal?
@andranikkhachatryan7787
@andranikkhachatryan7787 3 ай бұрын
Where did you get this box?
@vacob6494
@vacob6494 Ай бұрын
the box is custom made by enclousure maker. made of acrylic sheet. if I have time I will make 3d file for u guys
@fabiopesenti
@fabiopesenti 4 ай бұрын
Hi I'm looking for an application to monitor the parameters of my car. Yours is perfect. I compiled the code and modified some functions no longer supported on ESP32 ver3.0. I compile the code but end getting an error. The sketch uses 2162777 bytes (110%) of the space available for programs. The maximum is 1966080 bytes. Global variables use 65696 bytes (20%) of dynamic memory, leaving another 261984 bytes free for local variables. The maximum is 327680 bytes. Compilation error: The text section exceeds the available space on the tab. Thank you very much
@vacob6494
@vacob6494 4 ай бұрын
Please roll back to ESP32 Ver 2.0.17 , and select partition scheme to huge APP 3MB instead. (OTA won't work) but you can successfully compile and flash.
@fabiopesenti
@fabiopesenti 4 ай бұрын
@@vacob6494It's greate 🙂 i am able to build on ESP Ver.3.0 ...... the problem was on partition scheme. The correct selection is as you suggest (No OTA/1Mb). Now purchasing the ESP3 TFT card you suggested and would like to contribute to the development of this project
@fabiopesenti
@fabiopesenti 4 ай бұрын
Hi I'm looking for an application to monitor the parameters of my car. Yours is perfect. I compiled the code and modified some functions no longer supported on ESP32 ver3.0. I compile the code but end getting an error. The sketch uses 2162777 bytes (110%) of the space available for programs. The maximum is 1966080 bytes. Global variables use 65696 bytes (20%) of dynamic memory, leaving another 261984 bytes free for local variables. The maximum is 327680 bytes. Compilation error: The text section exceeds the available space on the tab. Thank you very much
@meteoroGTS
@meteoroGTS 4 ай бұрын
were can i find?
@vacob6494
@vacob6494 4 ай бұрын
Hi Folks, a new source code update (full version) .
@MateusLeonardoMendes
@MateusLeonardoMendes 4 ай бұрын
I have successfully edited your code to read an analog input + touch screen instead of button and come pids for Subaru. however, i can't manage to read my transmission fluid temperature (i have the pids, ECU address and mode but it doesn't work). If you have the time, could you kindly help me solving this issue?
@vacob6494
@vacob6494 4 ай бұрын
@@MateusLeonardoMendes you've gotta know PID and fcalculation fornula to read Subaru TFT. Just change pid 221E1C (for Ford) to 22xxyy something and the right formula. It should work.
@MateusLeonardoMendes
@MateusLeonardoMendes 4 ай бұрын
@@vacob6494 I believe its 221017 for Subaru and I have the formula, however it seems to be different header, it should be 7E1 instead of usual 7E0
@vacob6494
@vacob6494 4 ай бұрын
And it gave wrong value?
@MateusLeonardoMendes
@MateusLeonardoMendes 4 ай бұрын
@@vacob6494 ir gives the same answer regardless of the temperature changes
@lohikarhu734
@lohikarhu734 4 ай бұрын
Hi, Thai guy! Or girl? Nice looking app..I'd like to do it on STM32..
@lohikarhu734
@lohikarhu734 4 ай бұрын
So, where is the app?
@vacob6494
@vacob6494 4 ай бұрын
the app was removed from store. but you can have a look here ingeniousdrive.com/
@Rafael-ed4np
@Rafael-ed4np 4 ай бұрын
Hello, what software can I use to create custom buttons and icons?
@vacob6494
@vacob6494 4 ай бұрын
there is link to source code (github) in description.
@Rafael-ed4np
@Rafael-ed4np 4 ай бұрын
@@vacob6494 I saw the code friend, but I wanted to know if you know any software to convert png to binary, and create custom buttons in the sketch itself.
@vacob6494
@vacob6494 4 ай бұрын
@@Rafael-ed4np notisrac.github.io/FileToCArray/
@Rafael-ed4np
@Rafael-ed4np 4 ай бұрын
@@vacob6494 Thanks
@koyyle
@koyyle 5 ай бұрын
Hi, I've emailed you about potentially purchasing one of these. I'm looking forward to your response.
@vacob6494
@vacob6494 5 ай бұрын
please email me [email protected]
@javedhussain9514
@javedhussain9514 5 ай бұрын
I was finally able to compile this sketch and uploaded to my ESP32 CYD 2.8 inch board. Screen now shows Touch Screen Calibration and asks to touch the corner as indicated. I tried that but nothing happens. Any clue what to do to fix that? Also during compilation I got the following message. Library SPI has been declared precompiled: Precompiled library in "C:\users\jhuss\Documents\Arduino\libraries\SPI\src\esp32" not found. Similar message for SDI Anyone who successfully used this sketch, please, give me some help. Thanks.
@vacob6494
@vacob6494 5 ай бұрын
comment out this line at 343 // touch_calibrate(); to skip screen calibration. I guess it's bug since TFT_eSPI update, will fix it later.
@javedhussain9514
@javedhussain9514 5 ай бұрын
@@vacob6494 Thanks. That worked. I connected my OBDII to my Ford Energi 2017 and on screen it says one device found and gives a Mac address but then in next line it say No OBDII device found and just cycle the same message. Anything else I have to do to get it going?
@vacob6494
@vacob6494 5 ай бұрын
@@javedhussain9514 from the sketch, gauge will scan all nearby Bluetooth devices, but connect to Bluetooth device that name "OBDII" only. by this case, your ELM327 Bluetooth adaptor name must be exactly OBDII. or if not u can modify sketch to connect to another name Bluetooth device.
@javedhussain9514
@javedhussain9514 5 ай бұрын
@@vacob6494 Thanks for the help so far. I am so close to get it going but still may be one issue left. My OBDII works fine with an app on my Samsung 7 phone. I checked under Bluetooth and the device is named as OBDII. When I pair the unit with app it asks for the pin to pair and then it works fine. So I am not sure why the sketch is not finding the unit. It does find my other BT devices and list them but not this OBDII.
@vacob6494
@vacob6494 5 ай бұрын
@@javedhussain9514 Perhaps ELM327 connect to your Samsung 7, so try unpair OBDII in Samsung 7 phone first. to prevent OBDII keep connecting to the phone, that's why Gauge cannot see in the scanning list
@koyyle
@koyyle 5 ай бұрын
This is awesome!
@vacob6494
@vacob6494 5 ай бұрын
thank you.
@javedhussain9514
@javedhussain9514 5 ай бұрын
I tried to compile the sketch but got the following error. Please help me correct the errors. Thanks. Arduino: 1.8.19 (Windows 10), Board: "ESP32 Dev Module, Disabled, Huge APP (3MB No OTA/1MB SPIFFS), 240MHz (WiFi/BT), QIO, 80MHz, 4MB (32Mb), 921600, Core 1, Core 1, None" VaAndCobOBD2Gauge:37:10: fatal error: JPEGDecoder.h: No such file or directory #include <JPEGDecoder.h> ^~~~~~~~~~~~~~~ Multiple libraries were found for "SPI.h" compilation terminated. Used: C:\Users\jhuss\Documents\Arduino\libraries\SPI Not used: C:\Users\jhuss\AppData\Local\Arduino15\packages\esp32\hardware\esp32\2.0.3\libraries\SPI exit status 1 JPEGDecoder.h: No such file or directory This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences.
@vacob6494
@vacob6494 5 ай бұрын
The library file "JPEGdecoder.h" is missing. Pls check if all needed library files were added to arduino ide.
@javedhussain9514
@javedhussain9514 5 ай бұрын
@@vacob6494 Not very clear to me. Can you please give some more detail on adding all files to ide?
@vacob6494
@vacob6494 5 ай бұрын
@@javedhussain9514 well. Perhaps this project is for those who have skill and familiar with arduino ide. You can search how to work with arduino ide , how to add libraries and boards. You can do it.
@javedhussain9514
@javedhussain9514 5 ай бұрын
@@vacob6494 well, at least you can point me where this .h file is located and I can then figure out why it is causing an error.
@vacob6494
@vacob6494 5 ай бұрын
@@javedhussain9514 you don't need to find .h file, all u can do is add missing library .h file from arduino ide (library manager) and there will be many libraries u need to add to compile this sketch.
@javedhussain9514
@javedhussain9514 5 ай бұрын
Very good project. I am a new bee with this CYD. How to use your code to upload to CYD? Any detail instructions will be helpful along with how to connect the push button? A schematics will be helpful. Thanks.
@vacob6494
@vacob6494 5 ай бұрын
Hello thank you for your interesting, there are source code URL in the description.
@javedhussain9514
@javedhussain9514 5 ай бұрын
@@vacob6494 Yes I see the source code but it does not show how to connect the push button and how to load the code to CYD.
@vacob6494
@vacob6494 5 ай бұрын
@javedhussain9514 in schematic diagram show how to connect speaker and a button. In sketch also defined button pin number.
@mohamedsadokjomaa5579
@mohamedsadokjomaa5579 5 ай бұрын
hi ! great work, what did you use for the ui ?
@vacob6494
@vacob6494 5 ай бұрын
create my own UI in Sketch, you can see the source code URL in the description.
@oida6802
@oida6802 6 ай бұрын
Hello, Is there any way to measure the level of braking with the OBD device? Thanks,
@vacob6494
@vacob6494 6 ай бұрын
You mean brake fluid level or brake force level?
@oida6802
@oida6802 6 ай бұрын
@@vacob6494 brake force level. Best Regards
@vacob6494
@vacob6494 6 ай бұрын
@oida6802 in standard pids, there is no brake force , but extend pid could or couldn't. Up to car manufacturers.
@lohikarhu734
@lohikarhu734 6 ай бұрын
You could put an accelerometer on the system.
@aloooox
@aloooox 6 ай бұрын
Does this support ISO 9141
@vacob6494
@vacob6494 6 ай бұрын
It's up to ELM327 adaptor that support or not.
@dayarao1555
@dayarao1555 7 ай бұрын
great design...
@wordsofarebel5704
@wordsofarebel5704 7 ай бұрын
Fantastic work, I love it! I think these CYDs are gonna be popular for years!
@vacob6494
@vacob6494 7 ай бұрын
Thank you.
@diogo4799
@diogo4799 7 ай бұрын
É possível alterar para Hyundai?
@vacob6494
@vacob6494 7 ай бұрын
if Hyndai is compatible with OBD2 it should work
@snaieto1
@snaieto1 7 ай бұрын
Hi, great project!. Do you use flash 25q32? my board does not have it soldered.
@vacob6494
@vacob6494 7 ай бұрын
There is not psram on this board but the esp32 module itself has 4mb flash rom
@pehata6726
@pehata6726 7 ай бұрын
Hey, really good project! I am makeing graduate work about OBD2 conection etc. I bought OBD-II CAN-BUS DEV KIT. My question is it is possible to connect your device with this kit or work only via elm327 bluethoot device? Thank you so much!
@vacob6494
@vacob6494 7 ай бұрын
as long as your KIT is an obd2 interpreter and compatible with ELM327, it'd work. the connection depends on your design. If you want to connect over serial instead of Bluetooth. you must modify the sketch.
@pehata6726
@pehata6726 7 ай бұрын
@494 Thanks for the response, yes I want to connect it via cable to the car
@ricardoramos-e9o
@ricardoramos-e9o 7 ай бұрын
Thank you very much for everything. It is a great project and I am sure it will work, in my case I am trying with an ILI 9341 TFT screen and an ESP32-WROOW-32 and this must be the problem. I will continue studying. Thank you
@gregoriolujan99
@gregoriolujan99 4 ай бұрын
Great, I'm just starting my project and I was thinking of using the same components, did you achieve something?
@ricardoramos-e9o
@ricardoramos-e9o 7 ай бұрын
Good morning, it is possible to adapt it for the BMW 3 Series brand. Since the OBD2 recognizes me but it does not connect. Thank you very much
@vacob6494
@vacob6494 7 ай бұрын
as long as our BMW 3 is compatible with obd2. it'd work
@ricardoramos-e9o
@ricardoramos-e9o 7 ай бұрын
Good morning, it is possible to adapt it for the BMW 3 Series brand. Since the OBD2 recognizes me but it does not connect. Thank you very much
@vacob6494
@vacob6494 7 ай бұрын
Yup should work
@ipodforever2023
@ipodforever2023 7 ай бұрын
Very cool object my friend 😊
@vacob6494
@vacob6494 7 ай бұрын
Thanks
@rohanjoshy3247
@rohanjoshy3247 8 ай бұрын
What are the components used?
@vacob6494
@vacob6494 8 ай бұрын
kzbin.info/www/bejne/hpy0koiAl9-HhK8si=g89RuKrz5_dZ8_77
@vacob6494
@vacob6494 3 ай бұрын
It's a custom made with acrylic plastic by a enclosure shop. So i don't have drawing but perhaps will draft 3d later
@saulleg
@saulleg 8 ай бұрын
Hi! Thanks by the project, I have esp32-2432s028r the esp32 is wroom versión, have you any idea why the touchscreen not work?
@vacob6494
@vacob6494 8 ай бұрын
Ther aee modified touch library files in source code. Did you replace touch.cpp & touch.h files ?
@NeilPreston-p8m
@NeilPreston-p8m 8 ай бұрын
I notice you have posted some new videos of your OBD2 gauge - looks awesome in this case. Did you design it and 3D print it? If so would you be prepared to share the design / files for the case? There also appears to be some updates to the code - are you prepared to share them? I have used the gauge for a while now and really appreciate the work you have put into it. Regards Neil
@vacob6494
@vacob6494 8 ай бұрын
Thank you for your interest... The enclosure was designed and made by a factory. So I don't have 3d files or resources. This gauge is a commercial on MP. with some improvement (reading speed, auto Bluetooth connection. auto shutdown. etc..) with huge code. I might consider public on GitHub.
@fensrg
@fensrg 8 ай бұрын
where can I get the version with DTC?
@vacob6494
@vacob6494 8 ай бұрын
DTC reading is in the commercial version. You'll be able to read the document here. www.elmelectronics.com/wp-content/uploads/2016/07/ELM327DS.pdf All about interpreting ELM327.
@maskcode
@maskcode 8 ай бұрын
Super impressive! What was the dev loop like for this when developing? Were you outside in the car with a laptop or did you have something desktop based? Were you able to emulate the OBD2 data when you were devloping?
@vacob6494
@vacob6494 8 ай бұрын
Thank you. My dev loop was both on desktop and Macbook, and the code was synced on cloud drive, coz I code both office and home. it's seamless development. I don't use any emulation but prefer real car tests. but that's not often. interpret obd2 is straightforward. Once you can connect to the adaptor and read PIDs correctly. the rest are UI, performance and debugging.
@cslee6353
@cslee6353 8 ай бұрын
How do I customise a different PID?
@vacob6494
@vacob6494 8 ай бұрын
In the sketch. There is PIDs table and formula table for each PIDs. Start from there.
@lorenzocastaldi9405
@lorenzocastaldi9405 8 ай бұрын
Amazing project!! Can I ask you what elm327 device are you using? Can I use the VGate iCar Pro BT4.0?
@vacob6494
@vacob6494 8 ай бұрын
thank for interesting. for module model you can see from github repository in #ep2. for VGate If it's compatible with elm327, it'd work.
@BucuranIoan
@BucuranIoan 8 ай бұрын
what i can do..... .... ESP32-OBD2-Gauge-main\VaAndCobOBD2Gauge\Touch.cpp:20:13: error: 'TFT_eSPI' has not been declared inline void TFT_eSPI::begin_touch_read_write(void){
@vacob6494
@vacob6494 8 ай бұрын
please check if you replaced modified touch.h from github . and exactly the same board model
@_der_pinguin_2463
@_der_pinguin_2463 8 ай бұрын
Hi I tried to write a comment but I think it was deleted because it had a Link in it. I tried to copy your project but sadly it isnt working right. Somehow the Background ist white instead of black and the Touch doesent work. I tried skipping the calibration by uncommenting the calibration Part and now it connects to the obd reader but doesent show any values. I bought a Board that looks exactly the same as yours. Is there any advice you could give me to solve my issues?
@vacob6494
@vacob6494 8 ай бұрын
I recommend not use cheap obd2 adaptor. (I have recommend good elm327 adaptor on my github.) Please recheck the following - Is your board exactly the same model and manufacturer. There are module that almost the sam but something different. - there is modified touch.h cpp in tft_espi extension folder. Did u copy and replace those files?
@_der_pinguin_2463
@_der_pinguin_2463 8 ай бұрын
@@vacob6494 I copied the modified Version. For the obd2 Adapter i bought a Elm327 from aliexpress and made shure that it was the Version you described on your github. The Adapter works withy my Phone but not the device. Maybe i bought the wrong Display. Mine has one of those cheaper touchscreens which can be operated with a plastic pencil. Could that be the Problem and is there a way to get this screen working? I checked again and it seems like all colors are inverted. I am gonna test it again later with a different car. Maybe that will make it display some values. Edit. The only difference i could see is that my board has a USB-C port next to the micro usb port
@vacob6494
@vacob6494 8 ай бұрын
ah, that's a different one. it'd work, but you need to edit display and touch part to get it to work. @@_der_pinguin_2463
@_der_pinguin_2463
@_der_pinguin_2463 8 ай бұрын
@@vacob6494 Thanks. Do you know what I exactly would have to change? Sadly I am not that good at programming.
@saulleg
@saulleg 8 ай бұрын
​@@_der_pinguin_2463 same problem. Did you found solution?
@NotPeti
@NotPeti 9 ай бұрын
Hello, could you make a video explaining a little the operation of everything, because I for example I have doubts on how to link the bluetooth between the esp32 and obd2, I also do not know where to install the button. Thanks
@vacob6494
@vacob6494 9 ай бұрын
My github sorce code is in the video description. So you can learn how it works and what pin that button is connected to.
@jeanetteashanti2171
@jeanetteashanti2171 9 ай бұрын
"Promo SM" 🤪
@cornevanzyl5880
@cornevanzyl5880 9 ай бұрын
Has an old school Garmin feel to it