Skip to content

TFT Backlight Remains Off with 10.1 beta 1 #10728

@FoamyGuy

Description

@FoamyGuy

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions