Closed
Description
CircuitPython version
Adafruit CircuitPython 8.0.0-alpha.1-143-g2f0e209ec on 2022-08-17; FeatherS2 with ESP32S2
Code/REPL
import board
import displayio
from adafruit_featherwing.tft_featherwing_35 import TFTFeatherWing35
if "feathers2" in board.board_id:
wing = TFTFeatherWing35(cs=board.D5, dc=board.D6, ts_cs=board.D21, sd_cs=board.D20)
display = wing.display
display.rotation=180
ts = wing.touchscreen
else:
raise NotImplementedError("Where am I?")
Behavior
With CircuitPython 7.3.2 this code exits and I can see the REPL prompt on the TFT screen.
With the 8.0 alpha I see the status bar at the top of the screen, but the REPL console is not visible.
Description
No response
Additional information
No response