forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Labels
Milestone
Description
CircuitPython version and board name
Adafruit CircuitPython 10.1.0-beta.1 on 2025-11-06; Adafruit Pybadge with samd51j19Same behavior on PyGamer as well.
Behavior
After installing 10.1.0-beta.1 the TFT display remains dark when the device boots up. Reverting back to 10.0.3 makes the display go back to lighting up as normal.
Additional information
I tested PyPortal Titano (also SAMD) and it did not have this issue. Also tested FunHouse and it did not have the same issue either.
You can manually turn on the backlight with this code and then the screen is visible:
from digitalio import DigitalInOut, Direction, Pull
backlight = DigitalInOut(board.TFT_LITE)
backlight.direction = Direction.OUTPUT
backlight.value = True