├── .gitignore ├── .idea ├── ILI9341_font_packer.iml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── LICENSE ├── README.md ├── examples ├── TakaoPG.bin ├── TakaoPGothic.c └── test.cpp ├── extras ├── CopyFromSerial.ino └── rawfile-uploader.py ├── requirements.txt └── src ├── font.py ├── font_packer.py └── range_parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/ILI9341_font_packer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.idea/ILI9341_font_packer.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/README.md -------------------------------------------------------------------------------- /examples/TakaoPG.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/examples/TakaoPG.bin -------------------------------------------------------------------------------- /examples/TakaoPGothic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/examples/TakaoPGothic.c -------------------------------------------------------------------------------- /examples/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/examples/test.cpp -------------------------------------------------------------------------------- /extras/CopyFromSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/extras/CopyFromSerial.ino -------------------------------------------------------------------------------- /extras/rawfile-uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/extras/rawfile-uploader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/src/font.py -------------------------------------------------------------------------------- /src/font_packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/src/font_packer.py -------------------------------------------------------------------------------- /src/range_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeoSpark/ILI9341-font-packer/HEAD/src/range_parser.py --------------------------------------------------------------------------------