forked from adafruit/Adafruit_Blinka_Displayio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminalio.py
31 lines (21 loc) · 786 Bytes
/
terminalio.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# SPDX-FileCopyrightText: 2020 Melissa LeBlanc-Williams for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`terminalio`
================================================================================
terminalio for Blinka
**Software and Dependencies:**
* Adafruit Blinka:
https://github.com/adafruit/Adafruit_Blinka/releases
* Author(s): Melissa LeBlanc-Williams
"""
import fontio
__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_Blinka_displayio.git"
FONT = fontio.BuiltinFont()
# TODO: Tap into stdout to get the REPL
# Look at how Adafruit_Python_Shell's run_command works as an option
# Additionally, adding supervisor to Blinka may be helpful to keep track of REPL output
# sys.stdout = open('out.dat', 'w')
# sys.stdout.close()