CircuitPython version and board name
Adafruit CircuitPython 10.1.0-beta.1 on 2025-11-06; Adafruit Pybadge with samd51j19
Same 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
CircuitPython version and board name
Same behavior on PyGamer as well.
Behavior
After installing
10.1.0-beta.1the TFT display remains dark when the device boots up. Reverting back to10.0.3makes 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: