SunFounder ESP32 Starter Kit
Code
Note:
• Open the 5.13_dht11.py file located in the esp32-starter-kit-main\micropython\codes path, or copy
and paste the code into Thonny. Then, click “Run Current Script” or press F5 to execute it.
• Make sure to select the “MicroPython (ESP32).COMxx” interpreter in the bottom right corner.
import dht
import machine
import time
# Initialize the DHT11 sensor and connect it to pin 14
sensor = dht.DHT11(machine.Pin(14))
# Loop indefinitely to continuously measure temperature and humidity
while True:
try:
# Measure temperature and humidity
sensor.measure()
# Get temperature and humidity values
temp = sensor.temperature()
(continues on next page)
400 Chapter 3. For MicroPython User