talkingshoe
This is an old revision of the document!
Talking Shoe
Micro Controller
- Lolin32 Lite with a ESP-32 chip
- Connects via Micro USB to PC, not USB-C
- Has battery charger built in
- Amazon Reviewer says to use ESP32 Arduino → WEMOS LOLIN32 board
- Arduino ESP32 can be installed via the Board Manager
- does not contain Lolin Board
- esp32 by Espressif in the Board Manager is the right choice
- contains WEMOS Lolin32 Lite
- can be selected in Tools → Board
- get Board Info does not return anything useful?
On-Board LED Blinking works:
#define LED_PIN 22 // Pin number for your built-in LED void setup() { pinMode(LED_PIN, OUTPUT); // Set the LED pin as an output } void loop() { digitalWrite(LED_PIN, HIGH); // Turn the LED on delay(500); // Wait 500 milliseconds digitalWrite(LED_PIN, LOW); // Turn the LED off delay(500); // Wait 500 milliseconds }
talkingshoe.1754852812.txt.gz · Last modified: by andi