Hi Josh I’m a retired aircraft mechanic but I can’t stop learning that’s a good thing. So I dove into the world of todays computerized cars by taking on line classes and joining different groups. I’m now at the stage where I’ve become a fan of learning Arduino and how it is so versatile and now I’m into the world of CAN. I have all the equipment and boards to build the demos and your videos seem to cover everything . Thanks for sharing your knowledge. Artie 👍
can you make a tutorial on how to make a man in the middle attack on the can bus with esp32, for example as described on this paper: Development of a Man-in-the-Middle Attack Device for the CAN Bus (search for the pdf) that would be amazing. great content by the way. subscribed 👍
Thanks for the video its really informative , what are your thoughts on using Logic Level shifters on the CTX and CRX, I am afraid the 5v would fry the esp32 pin and I read that using current limiting resistors is not effective at high frequencies
Not too familiar with python, but I'd like to try using SocketCan with a Peak USB device to talk to my embedded can device! Only problem is that while PCAN-View software works fine, and the PCANBasic dll is in Windows\System32.. when I try to have python see it, network.connect(bustype='pcan', channel='PCAN_USBBUS1', bitrate=500000) it fails: OSError: PCANBasic library not found. Any suggestions? Like how to force python to look for it in the standard system32 dll folder?
Hi, thanks a lot for your video, this is the most useful video in the earth. one question which make me confuse. On the esp32, you use can.h && library, but on the arduino, you use spi.h and mcp2512. h libray. could I only use can.h library for both of them esp32 and uno?? why in arduino IDE, you use two different library? thanks!!
Hi, I randomly selected Arduino CAN drivers I found online. The fact that there are multiple libraries you can choose from that all do the same thing speaks to the versatility of Arduino. Take your pick!
Hi. How can I get a specific byte from a specific identifier? Example: identifier 0x480 2 01 02 I want to output only 480 and 02 to the port I am using ESP32 and I only need to get certain data
@@EV_engineer Yes, you're right. The issue is that for some reason it does not work if you mix it with the MCP2515 CAN SPI module. On the same bus, only the Arduino Uno's talk to each other as long they not blocked when the ESP32 talk to each other.
Josh, You are saying "transceiver" BUT you really don't understand CANbus at all! you are using them in a Master-Slave relationship! CANbus has NO MASTERs or SLAVEs! They are role-agnostic! which means any LRU or node on the system can Send or Receive messages. I work with a form of CANbus protocol called CANaerospace which sort of morphed into ARINC-825. My stuff works on the Arduino Mega with a MCP module and yes you have to use the interrupt. from the module to the Mega. This tells the Mega that It has a filtered message in its buffer! ~~"They can see but they are blind."
Do we really need this: "... you really don't understand CANbus at all"? Sure, you are right with the master/slave point. Fine. Improving or correcting such contributions is always helpful. But I strongly dislike bashing of works that people show. From my perspective the author shows here a rare solution of CAN tutorials with more than 2 nodes (which is covered very often here on YT) and he used not only the same MCP2515 controllers as shown on another hundred other videos. That makes this video nearly unique. I prefered less demotivating hints and recommendations.