This is a quick guide to getting set up and started with the ESP-32 microcontroller. There are many guides out there but the usual problem is finding one with the right level for you. I'm an electronic engineer who can develop software so this is a guide for someone like me who just wants to see it working before committing to a bigger project.
I bought an ESP-32 dev board and an ESP-32 Cam board. Each only cost a few dollars and are versatile pieces of hardware to do a number of tasks with.
For interest, here is the output on dmesg when plugging my ESP-32 dev board into the USB port:
usb 1-4: Product: CP2102 USB to UART Bridge Controller
usb 1-4: Manufacturer: Silicon Labs
...
cp210x 1-4:1.0: cp210x converter detected
usb 1-4: cp210x converter now attached to ttyUSB0
Here is the output of lsusb:
Bus 001 Device 004: ID 10c4:ea60 Silicon Labs CP210x UART Bridge
If you've followed my guide to getting started with the ESP-01S then you have already installed the Arduino IDE.
Now let's run some test code.
Open the serial monitor to check the output. Make sure to select the correct data rate or the text will be unreadable.
ESP-32 WiFi Scan
< Back