ESP32

Table of Contents

  1. Lesson 1: Introduction to the ESP32
  2. Lesson 2: Blinking an LED
  3. Lesson 3: Fading an LED with PWM
  4. Lesson 4: Analog Input
  5. Lesson 5: Playing Tones
  6. Lesson 6: Capacitive Touch Sensing
  7. Lesson 7: Internet of Things

These tutorials are interactive and designed to be completed in order. All ESP32 code is open source and in this GitHub repository.

Lesson 1: Introduction to the ESP32

In this lesson, you’ll learn about the ESP32, how it differs from and relates to the Arduino platform, and how to program and use the Huzzah32 ESP32 board.

Lesson 2: Blinking an LED

Introduces how to program the ESP32 using the Arduino IDE and ESP32 Arduino library (link)

Lesson 3: Fading an LED with PWM

In this lesson, you’ll learn how to use PWM output on the ESP32 to fade an LED on and off. The ESP32 Arduino library does not have an analogWrite method, so you’ll learn how to use PWM via an alternative method.

Lesson 4: Analog Input

In this lesson, you’ll learn how to use analog input on the ESP32 by building a potentiometer-based LED fader.

Lesson 5: Playing Tones

Arduino’s tone() method is not supported on the ESP32. In this lesson, you’ll learn how to play tones using the ledcWriteTone and ledcWriteNote in esp32-hal-ledc.c.

Lesson 6: Capacitive Touch Sensing

The ESP32 has built-in circuitry and software for capacitive touch sensing (docs). In this lesson, we’ll use the touch sensing functionality to turn on an LED.

Lesson 7: Internet of Things

The ESP32 is exciting not just because of its speed, memory, and GPIO capabilities but also because it is truly a modern Internet of Things (IoT) board with Wi-Fi and Bluetooth support. In this lesson, we’ll learn how to use WiFi and the IoT platform Adafruit IO to upload sensor data in real-time.


This website was developed by Professor Jon E. Froehlich and the Makeability Lab using Just the Docs. If you found the website useful or use it in your teaching, we'd love to hear from you: jonf@cs.uw.edu. This website and all code is open source (website GitHub, Arduino GitHub, p5js GitHub). You can find the MakeabilityLab_Arduino_Library here. Found an error? File a GitHub Issue.