Getting the ESP32-S3 running with a LED Display


from machine import Pin
from time import sleep

import machine, neopixel
np = neopixel.NeoPixel(machine.Pin(48), 1)

for n in range(12):
    np[0] = (255, 0, 0)
    np.write()    
    sleep(1)
    np[0] = (0, 255, 0)
    np.write()    
    sleep(1)
    np[0] = (0, 0, 255)
    np.write()    
    sleep(1)

About

I am an engineer and educator, having spent ten years as a professor. My goal is to help you build your knowledge of design and technology, get your hardware working, and propel your startup or small business. Get in touch!

Read More