ESP32-S3-Zero/CircuitPython exercises to read single key using keypad.Keys and control onboard RGB LED (NeoPixel). neopixel is a CircuitPython NeoPixel strip driver. keypad module provides native support to scan sets of keys or buttons, connected independently to individual pins, connected to a shift register, or connected in a row-and-column matrix. (misspelled filename, it's S3) cpy_C3-Zero_RGB.py """ ESP32-S3-Zero/circuitpython 9.0.0-beta.0 exercise to control on-board RGB (NeoPixel) """ import os, sys import time import neopixel import board def cycleNeopixel(wait): for r in range(255): pixel[0] = (r, 0, 0) time.sleep(wait) for r in range(255, 0, -1): pixel[0] = (r, 0, 0) time.sleep(wait) for g in range(255): pixel[0] = (0, g, 0) time.sleep(wait) for g in range(255, 0, -1): pixel[0] = (0, g, 0) time.sleep(wait) for b in range(255): ...