Skip to content
Discussion options

You must be logged in to vote

I don't have a T-Dongle S3 handy but the LilyGo docs list the LED as an APA102, a form of programmable RGB LED (different to Neopixels). You may know APA102s by their other name, Dotstars.

MicroPython has support for APA102's so the code to control it should look something like:

import machine, apa102
rgb = apa102.APA102(machine.Pin(39), machine.Pin(40), 1)
rgb[0] = (255, 0, 0, 31) # set to red, full brightness
rgb.write()

Replies: 1 comment 4 replies

Comment options

mattytrentini
Jan 9, 2026
Collaborator Sponsor

You must be logged in to vote
4 replies
@rbeede
Comment options

@rbeede
Comment options

@rbeede
Comment options

@rbeede
Comment options

Answer selected by rbeede
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
ESP32
Labels
None yet
2 participants