HI, All
I'm tired trying to make CAN bus by ESP8266...
Two ESP32 modules are received at last, and trying again
It looks like the ready lib for ESP32 is https://www.b4x.com/android/forum/threads/rcan-library.120832/.
Question about pinout, circuit diagram and the lib initialization:
What ESP32 pins better to use (not occupied during boot) for CAN bus and what are their number for init ?
Lib's example code is with 53 and 0, but ... what is 53 pin ?
If to look at this pinout, and choose, say, GPIO16 (receiving from MCP2515 TX pin) and GPIO17 (transmitting to MCP2515 RX pin) - init should be like:
?
I'm tired trying to make CAN bus by ESP8266...
Two ESP32 modules are received at last, and trying again
It looks like the ready lib for ESP32 is https://www.b4x.com/android/forum/threads/rcan-library.120832/.
Question about pinout, circuit diagram and the lib initialization:
B4X:
can.Initialize("can_DataAvailable", 53, 0, can.SPEED_500KBPS)
What ESP32 pins better to use (not occupied during boot) for CAN bus and what are their number for init ?
Lib's example code is with 53 and 0, but ... what is 53 pin ?
If to look at this pinout, and choose, say, GPIO16 (receiving from MCP2515 TX pin) and GPIO17 (transmitting to MCP2515 RX pin) - init should be like:
B4X:
can.Initialize("can_DataAvailable", 16, 17, can.SPEED_500KBPS)