├── .gitignore ├── README.md ├── v0.1 ├── prepare_fonts │ ├── CONFIG.py │ ├── README.md │ ├── bitmaps │ │ ├── allxcf2png │ │ ├── boxdrawing.png │ │ ├── boxdrawing.xcf │ │ ├── glyphs.png │ │ ├── glyphs.xcf │ │ ├── old │ │ │ ├── boxdrawing_old.xcf │ │ │ ├── legacycomputingcharacters.png │ │ │ ├── legacycomputingcharacters_old.xcf │ │ │ ├── modifiers.png │ │ │ └── modifiers.xcf │ │ └── xcf2png_replacement.sh │ ├── font_utilities.py │ ├── fontdescription │ │ ├── aliases.txt │ │ ├── character_decompositions.py │ │ ├── combining_modifiers_bitmaps.txt │ │ ├── glyph_codepoints.txt │ │ ├── glyph_transformation_commands.py │ │ ├── glyph_transformation_subroutines.c │ │ └── unicode_blocks.txt │ ├── prepare_all.sh │ ├── prepare_combining_diacritics.py │ ├── prepare_main_font_bitmaps.py │ ├── prepare_terminal_constants.py │ ├── prepare_unicode_header.py │ └── prepare_unicode_mapping.py ├── self_contained_Uno9341TFT_TTY_horizontal_v15 │ ├── TFT_macros.h │ ├── Uno9341TFT.cpp │ ├── Uno9341TFT.h │ ├── ansicodes.h │ ├── colors.h │ ├── combining_diacritics.h │ ├── control.h │ ├── delays.h │ ├── fontmap.h │ ├── myfont.h │ ├── registers.h │ ├── self_contained_Uno9341TFT_TTY_horizontal_v15.ino │ ├── softfonts.h │ ├── terminal_constants.h │ ├── terminal_misc.h │ ├── textgraphics.h │ ├── unicode.h │ └── unicode_blocks.h └── test_terminal │ ├── minitest │ ├── priceofbitcoin.py │ └── test_serial.ipynb ├── v0.2 ├── Uno9341TTYv16 │ ├── TFT_macros.h │ ├── Uno9341TFT.cpp │ ├── Uno9341TFT.h │ ├── Uno9341TTYv16.ino │ ├── ansicodes.h │ ├── blinker.h │ ├── colors.h │ ├── combining_diacritics.h │ ├── control.h │ ├── delays.h │ ├── fontmap.h │ ├── glyphcodes.h │ ├── makeme │ ├── myfont.h │ ├── registers.h │ ├── softfonts.h │ ├── terminal_constants.h │ ├── terminal_misc.h │ └── textgraphics.h ├── prepare_fonts │ ├── CONFIG.py │ ├── README.md │ ├── bitmaps │ │ ├── allxcf2png │ │ ├── boxdrawing.png │ │ ├── boxdrawing.xcf │ │ ├── glyphs.png │ │ ├── glyphs.xcf │ │ ├── old │ │ │ ├── boxdrawing_old.xcf │ │ │ ├── glyphs_v2.png │ │ │ ├── glyphs_v2.xcf │ │ │ ├── legacycomputingcharacters.png │ │ │ ├── legacycomputingcharacters_old.xcf │ │ │ ├── modifiers.png │ │ │ └── modifiers.xcf │ │ └── xcf2png_replacement.sh │ ├── examine_terminal_fonts_linux.ipynb │ ├── font_utilities.py │ ├── fontdescription │ │ ├── aliases.txt │ │ ├── character_decompositions.py │ │ ├── codepagedump │ │ ├── combining_modifiers_bitmaps.txt │ │ ├── glyph_codepoints.txt │ │ ├── glyph_transformation_commands.py │ │ ├── might_support.txt │ │ └── unicode_blocks.txt │ ├── prepare_all.sh │ ├── prepare_combining_diacritics.py │ ├── prepare_main_font_bitmaps.py │ ├── prepare_terminal_constants.py │ ├── prepare_unicode_mapping.py │ └── superscripts_and_subscripts.ipynb └── test_terminal │ ├── Montage.png │ ├── Montage2.png │ ├── cross-platorm.png │ ├── effects.png │ ├── enclosed.png │ ├── for_montage │ ├── color.png │ ├── effects2.png │ ├── extras.png │ ├── greek_and_cyrillic.png │ ├── latin.png │ ├── legacy.png │ ├── mathematical.png │ ├── semigraphics.png │ └── teletext.png │ ├── minitest │ ├── priceofbitcoin.py │ ├── supported.png │ ├── test_serial.ipynb │ └── v0p2supported.txt └── writeup ├── ploteg.png └── writeup.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/README.md -------------------------------------------------------------------------------- /v0.1/prepare_fonts/CONFIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/CONFIG.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/README.md -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/allxcf2png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/allxcf2png -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/boxdrawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/boxdrawing.png -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/boxdrawing.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/boxdrawing.xcf -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/glyphs.png -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/glyphs.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/glyphs.xcf -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/old/boxdrawing_old.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/old/boxdrawing_old.xcf -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/old/legacycomputingcharacters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/old/legacycomputingcharacters.png -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/old/legacycomputingcharacters_old.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/old/legacycomputingcharacters_old.xcf -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/old/modifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/old/modifiers.png -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/old/modifiers.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/old/modifiers.xcf -------------------------------------------------------------------------------- /v0.1/prepare_fonts/bitmaps/xcf2png_replacement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/bitmaps/xcf2png_replacement.sh -------------------------------------------------------------------------------- /v0.1/prepare_fonts/font_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/font_utilities.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/aliases.txt -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/character_decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/character_decompositions.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/combining_modifiers_bitmaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/combining_modifiers_bitmaps.txt -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/glyph_codepoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/glyph_codepoints.txt -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/glyph_transformation_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/glyph_transformation_commands.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/glyph_transformation_subroutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/glyph_transformation_subroutines.c -------------------------------------------------------------------------------- /v0.1/prepare_fonts/fontdescription/unicode_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/fontdescription/unicode_blocks.txt -------------------------------------------------------------------------------- /v0.1/prepare_fonts/prepare_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/prepare_all.sh -------------------------------------------------------------------------------- /v0.1/prepare_fonts/prepare_combining_diacritics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/prepare_combining_diacritics.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/prepare_main_font_bitmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/prepare_main_font_bitmaps.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/prepare_terminal_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/prepare_terminal_constants.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/prepare_unicode_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/prepare_unicode_header.py -------------------------------------------------------------------------------- /v0.1/prepare_fonts/prepare_unicode_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/prepare_fonts/prepare_unicode_mapping.py -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/TFT_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/TFT_macros.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/Uno9341TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/Uno9341TFT.cpp -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/Uno9341TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/Uno9341TFT.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/ansicodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/ansicodes.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/colors.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/combining_diacritics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/combining_diacritics.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/control.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/delays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/delays.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/fontmap.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/myfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/myfont.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/registers.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/self_contained_Uno9341TFT_TTY_horizontal_v15.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/self_contained_Uno9341TFT_TTY_horizontal_v15.ino -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/softfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/softfonts.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/terminal_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/terminal_constants.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/terminal_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/terminal_misc.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/textgraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/textgraphics.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/unicode.h -------------------------------------------------------------------------------- /v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/unicode_blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/self_contained_Uno9341TFT_TTY_horizontal_v15/unicode_blocks.h -------------------------------------------------------------------------------- /v0.1/test_terminal/minitest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/test_terminal/minitest -------------------------------------------------------------------------------- /v0.1/test_terminal/priceofbitcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/test_terminal/priceofbitcoin.py -------------------------------------------------------------------------------- /v0.1/test_terminal/test_serial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.1/test_terminal/test_serial.ipynb -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/TFT_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/TFT_macros.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/Uno9341TFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/Uno9341TFT.cpp -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/Uno9341TFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/Uno9341TFT.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/Uno9341TTYv16.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/Uno9341TTYv16.ino -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/ansicodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/ansicodes.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/blinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/blinker.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/colors.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/combining_diacritics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/combining_diacritics.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/control.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/delays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/delays.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/fontmap.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/glyphcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/glyphcodes.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/makeme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/makeme -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/myfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/myfont.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/registers.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/softfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/softfonts.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/terminal_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/terminal_constants.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/terminal_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/terminal_misc.h -------------------------------------------------------------------------------- /v0.2/Uno9341TTYv16/textgraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/Uno9341TTYv16/textgraphics.h -------------------------------------------------------------------------------- /v0.2/prepare_fonts/CONFIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/CONFIG.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/README.md -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/allxcf2png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/allxcf2png -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/boxdrawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/boxdrawing.png -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/boxdrawing.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/boxdrawing.xcf -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/glyphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/glyphs.png -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/glyphs.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/glyphs.xcf -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/boxdrawing_old.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/boxdrawing_old.xcf -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/glyphs_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/glyphs_v2.png -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/glyphs_v2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/glyphs_v2.xcf -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/legacycomputingcharacters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/legacycomputingcharacters.png -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/legacycomputingcharacters_old.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/legacycomputingcharacters_old.xcf -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/modifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/modifiers.png -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/old/modifiers.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/old/modifiers.xcf -------------------------------------------------------------------------------- /v0.2/prepare_fonts/bitmaps/xcf2png_replacement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/bitmaps/xcf2png_replacement.sh -------------------------------------------------------------------------------- /v0.2/prepare_fonts/examine_terminal_fonts_linux.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/examine_terminal_fonts_linux.ipynb -------------------------------------------------------------------------------- /v0.2/prepare_fonts/font_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/font_utilities.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/aliases.txt -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/character_decompositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/character_decompositions.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/codepagedump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/codepagedump -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/combining_modifiers_bitmaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/combining_modifiers_bitmaps.txt -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/glyph_codepoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/glyph_codepoints.txt -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/glyph_transformation_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/glyph_transformation_commands.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/might_support.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/might_support.txt -------------------------------------------------------------------------------- /v0.2/prepare_fonts/fontdescription/unicode_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/fontdescription/unicode_blocks.txt -------------------------------------------------------------------------------- /v0.2/prepare_fonts/prepare_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/prepare_all.sh -------------------------------------------------------------------------------- /v0.2/prepare_fonts/prepare_combining_diacritics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/prepare_combining_diacritics.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/prepare_main_font_bitmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/prepare_main_font_bitmaps.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/prepare_terminal_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/prepare_terminal_constants.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/prepare_unicode_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/prepare_unicode_mapping.py -------------------------------------------------------------------------------- /v0.2/prepare_fonts/superscripts_and_subscripts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/prepare_fonts/superscripts_and_subscripts.ipynb -------------------------------------------------------------------------------- /v0.2/test_terminal/Montage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/Montage.png -------------------------------------------------------------------------------- /v0.2/test_terminal/Montage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/Montage2.png -------------------------------------------------------------------------------- /v0.2/test_terminal/cross-platorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/cross-platorm.png -------------------------------------------------------------------------------- /v0.2/test_terminal/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/effects.png -------------------------------------------------------------------------------- /v0.2/test_terminal/enclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/enclosed.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/color.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/effects2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/effects2.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/extras.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/greek_and_cyrillic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/greek_and_cyrillic.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/latin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/latin.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/legacy.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/mathematical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/mathematical.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/semigraphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/semigraphics.png -------------------------------------------------------------------------------- /v0.2/test_terminal/for_montage/teletext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/for_montage/teletext.png -------------------------------------------------------------------------------- /v0.2/test_terminal/minitest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/minitest -------------------------------------------------------------------------------- /v0.2/test_terminal/priceofbitcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/priceofbitcoin.py -------------------------------------------------------------------------------- /v0.2/test_terminal/supported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/supported.png -------------------------------------------------------------------------------- /v0.2/test_terminal/test_serial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/test_serial.ipynb -------------------------------------------------------------------------------- /v0.2/test_terminal/v0p2supported.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/v0.2/test_terminal/v0p2supported.txt -------------------------------------------------------------------------------- /writeup/ploteg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/writeup/ploteg.png -------------------------------------------------------------------------------- /writeup/writeup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelerule/ILI9341TTY/HEAD/writeup/writeup.ipynb --------------------------------------------------------------------------------