The LOLIN D32 is an ESP32 board with Wifi and Bluetooth.
Tutorials
Reference
Use minicom
minicom -D /dev/ttyUSB0 minirc.dfl
Use ampy
# list files
ampy ls
# read files
ampy get FILENAME
# write files
ampy put FILENAME
from machine import Pin
# GPIO 5 is the build-in LED
p = Pin(5, Pin.OUT)
p.value(0) # LED on
p.value(1) # LED off
Create a virtualenv with tools and dependencies
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt