-
Dear all I have the official BSB LAN board from @fredlcore since... early 2021 (!) plugged into an Arduino Due. I would like to know how to move from Arduino to a ESP32 (and what "accessory I need to buy) ? A little lack of information on the documentation. The potential accessory I think
Maybe that can help somebody else also ! have a nice day and merry Christmas 🎅🏽 |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 1 reply
-
When I thinned out the manual, this was one thing I dropped because it's a rather unusual move to make, as most of the functionality is the same between Due and ESP32. You can use a tool like the one you posted, but you can also just use jumper wires to connect both ESP32 board and adapter. |
Beta Was this translation helpful? Give feedback.
-
Wow so quick answer ! As I have not a precision tool for soldering... |
Beta Was this translation helpful? Give feedback.
-
Hi @fredlcore and happy new year ! I'm doing the move from the Due to the ESP32, but I'm encoutering some issue Here is the telnet output :
Seems there is a communication error 😢 I've just uploaded the latest program to the ESP, do the 4 wires connection as you said earlyer... Side note : I found the Due version of the ino file on my hardisk (aka : my legacy) and seems to be version 2.0.107 but no Thanks ! |
Beta Was this translation helpful? Give feedback.
-
Ok, I'm sorry, above I wrote to connect to RX/TX on the ESP32, but it must be RX1/TX1 which are pins 16 and 17 on the ESP32 NodeMCU respectively (which I also wrote further down in that message). That's probably the issue. |
Beta Was this translation helpful? Give feedback.
-
Oh ok I missed the 16/17 indication 🫣 just to be sure, on this picture it's GPIO16 and GPIO17 is that true? |
Beta Was this translation helpful? Give feedback.
-
Im the end, the pin settings on BSB_LAN_config.h determine the pin used, irrespective of the label. It's strange to me that they have RX0/TX0 and RX2/TX2, but not RX1/RX2... |
Beta Was this translation helpful? Give feedback.
-
Yes for me also that's why I ask you confirmation. I have a Wroom ESP32 maybe the pin out is not the same as what you think about on a nodeMCU. I'm a newbie on the topic so... In the config file we just have to put the GPIO pins number it that true? |
Beta Was this translation helpful? Give feedback.
-
Hello @fredlcore ; thanks all seems to work now ! Thanks again ! |
Beta Was this translation helpful? Give feedback.
When I thinned out the manual, this was one thing I dropped because it's a rather unusual move to make, as most of the functionality is the same between Due and ESP32.
But if for some reason you want to move (for example to use WiFi instead of Ethernet), then all you need to do is connect four lines between the adapter and the ESP32: RX1, TX1, VCC/3V3 and GND. All one-to-one.
The RX1/TX1/GND pins are clearly marked on the Due adapter, and the location of the VCC pins can be taken from any Arduino Due board specification (it's basically in the opposite corner of the GND pin):
You can use a tool like the one you posted, but you can also just use jumper wires to connect both ESP32 board and…