├── .gitignore ├── FONT_TO_PY.md ├── LICENSE ├── README.md ├── c_to_python_font.py ├── charsets ├── Chinese_Japanese ├── Chinese_Japanese.md ├── Hebrew.txt ├── RTL_languages.md ├── Thailand ├── chess ├── chess.md ├── cyrillic └── extended ├── font_test.py ├── font_to_py.py ├── icon_fonts ├── README.md ├── back.c ├── default.c ├── filenames.txt ├── fwd.c ├── icon_font.jpg ├── pause.c ├── play.c └── stop.c └── writer ├── DRIVERS.md ├── WRITER.md ├── courier20.py ├── font10.py ├── font6.py ├── freesans20.py ├── images ├── IMG_2861.JPG ├── IMG_2866.JPG ├── fields.JPG ├── fonts.png ├── mixed.JPG └── rjust.JPG ├── old_versions ├── writer_fw_compatible.py └── writer_minimal.py ├── ssd1306_setup.py ├── writer.py ├── writer_demo.py ├── writer_gui.py └── writer_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/.gitignore -------------------------------------------------------------------------------- /FONT_TO_PY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/FONT_TO_PY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/README.md -------------------------------------------------------------------------------- /c_to_python_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/c_to_python_font.py -------------------------------------------------------------------------------- /charsets/Chinese_Japanese: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/charsets/Chinese_Japanese -------------------------------------------------------------------------------- /charsets/Chinese_Japanese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/charsets/Chinese_Japanese.md -------------------------------------------------------------------------------- /charsets/Hebrew.txt: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!"#°{ }$%&'()*+,-:./אבגדהוזחטיכךלמםנןסעפףצץקרשת 2 | -------------------------------------------------------------------------------- /charsets/RTL_languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/charsets/RTL_languages.md -------------------------------------------------------------------------------- /charsets/Thailand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/charsets/Thailand -------------------------------------------------------------------------------- /charsets/chess: -------------------------------------------------------------------------------- 1 | RNBQKBNRPrnbqkbnrp♔♕♖♗♘♙♚♛♜♝♞♟ -------------------------------------------------------------------------------- /charsets/chess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/charsets/chess.md -------------------------------------------------------------------------------- /charsets/cyrillic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/charsets/cyrillic -------------------------------------------------------------------------------- /charsets/extended: -------------------------------------------------------------------------------- 1 | ¬!"#£$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~°Ωαβγδθλμπωϕ£ 2 | -------------------------------------------------------------------------------- /font_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/font_test.py -------------------------------------------------------------------------------- /font_to_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/font_to_py.py -------------------------------------------------------------------------------- /icon_fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/README.md -------------------------------------------------------------------------------- /icon_fonts/back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/back.c -------------------------------------------------------------------------------- /icon_fonts/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/default.c -------------------------------------------------------------------------------- /icon_fonts/filenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/filenames.txt -------------------------------------------------------------------------------- /icon_fonts/fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/fwd.c -------------------------------------------------------------------------------- /icon_fonts/icon_font.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/icon_font.jpg -------------------------------------------------------------------------------- /icon_fonts/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/pause.c -------------------------------------------------------------------------------- /icon_fonts/play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/play.c -------------------------------------------------------------------------------- /icon_fonts/stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/icon_fonts/stop.c -------------------------------------------------------------------------------- /writer/DRIVERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/DRIVERS.md -------------------------------------------------------------------------------- /writer/WRITER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/WRITER.md -------------------------------------------------------------------------------- /writer/courier20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/courier20.py -------------------------------------------------------------------------------- /writer/font10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/font10.py -------------------------------------------------------------------------------- /writer/font6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/font6.py -------------------------------------------------------------------------------- /writer/freesans20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/freesans20.py -------------------------------------------------------------------------------- /writer/images/IMG_2861.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/images/IMG_2861.JPG -------------------------------------------------------------------------------- /writer/images/IMG_2866.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/images/IMG_2866.JPG -------------------------------------------------------------------------------- /writer/images/fields.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/images/fields.JPG -------------------------------------------------------------------------------- /writer/images/fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/images/fonts.png -------------------------------------------------------------------------------- /writer/images/mixed.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/images/mixed.JPG -------------------------------------------------------------------------------- /writer/images/rjust.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/images/rjust.JPG -------------------------------------------------------------------------------- /writer/old_versions/writer_fw_compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/old_versions/writer_fw_compatible.py -------------------------------------------------------------------------------- /writer/old_versions/writer_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/old_versions/writer_minimal.py -------------------------------------------------------------------------------- /writer/ssd1306_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/ssd1306_setup.py -------------------------------------------------------------------------------- /writer/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/writer.py -------------------------------------------------------------------------------- /writer/writer_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/writer_demo.py -------------------------------------------------------------------------------- /writer/writer_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/writer_gui.py -------------------------------------------------------------------------------- /writer/writer_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterhinch/micropython-font-to-py/HEAD/writer/writer_tests.py --------------------------------------------------------------------------------