adafruit / circuitpython

CircuitPython - a Python implementation for teaching coding with microcontrollers
https://circuitpython.org
Other
4.05k stars 1.2k forks source link

Add option to suppress terminal output on display (if present) #2791

Closed k3wals closed 1 year ago

k3wals commented 4 years ago

I was able to suppress the terminal output to a display by commenting the following lines:

//supervisor_start_terminal(width, height);

within:

It would be convenient to disable the terminal display output in boot.py perhaps.

Blinka icon is still present though momentarily.

@dhalbert suggested I open an issue after discussing on Discord.

tannewt commented 1 year ago

So it looks like I am not able to sleep with the backlight off unless you have another suggestion to try.

Please open a separate issue for this.

Closing now that the root_group can be hidden.

bradanlane commented 9 months ago

note for posterity ...

Using board.DISPLAY.root_group.hidden = true does not prevent a board level ePaper from refreshing on REPL.

TonyLHansen commented 8 months ago

After displayio.release_displays(), there is still a blinka flash when networking seems to be initialized.

dandindarov commented 6 months ago
  • boards without board.DISPLAY cannot do this. For example, matrixportal s3 does not have board.DISPLAY.

After displayio.release_displays(), there is still a blinka flash when networking seems to be initialized.

Facing this exact issue using a MatrixPortal M4. Any ideas on how to get rid of the blinka flash anyone?