C3
Because someone will ask.
- Processor: Espressif ESP32-C3, 32-bit RISC-V single-core, up to 160 MHz
- ROM: 384 KB
- SRAM: 400 KB
- Flash Memory: 4MB onboard SPI flash
- Wi-Fi: 802.11 b/g/n (2.4 GHz)
- Bluetooth: Bluetooth 5.0 (BLE)
- Form Factor: ~22.5 x 18 mm
Pi Pico
- Processor: Raspberry Pi RP2040 32-bit Arm Cortex-M0+ dual-core, up to 133 MHz
- SRAM: 264KB
- Flash Memory: 2MB onboard QSPI flash.
- Wi-Fi Seperate module.
https://micropython.org/download/ESP32_GENERIC_C3/
I picked the most recent version.
import machine
import time
# The ESP32 supermini onboard led is on pin 8
led= machine.Pin(8, machine.Pin.OUT)
while True:
led.value(not led.value())
time.sleep(1)
DS18B20 Wiring. Note 4.7 K Pull Up Resistor
Thonny does not seem to do a hard reset on the ESP32-C3 board and
it leaves network connections in an undefined state when you
reload the program and try to bring up the network. The
solution is to click the Reset button.