├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── micropython-easydisplay.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.ZH-CN.md ├── README.md ├── driver ├── README.md ├── epaper_buf.mpy ├── epaper_buf.py ├── sh1106_buf.mpy ├── sh1106_buf.py ├── ssd1306_buf.mpy ├── ssd1306_buf.py ├── ssd1315_buf.mpy ├── ssd1315_buf.py ├── st7735_buf.mpy ├── st7735_buf.py ├── st7735_spi.mpy ├── st7735_spi.py ├── st7789_buf.mpy ├── st7789_buf.py ├── st7789_spi.mpy └── st7789_spi.py ├── font ├── MicroPython-uFont-Tools │ ├── README.md │ ├── bitmapfonts.py │ ├── doc │ │ ├── example.png │ │ └── 如何生成点阵字体文件.md │ ├── main.py │ ├── requirements.txt │ └── soft │ │ ├── bitmap_font_tools_20220827_mac │ │ └── bitmap_font_tools_20220827_windows.exe ├── README.md ├── font_file │ ├── GuanZhi-8px.ttf │ └── unifont-15.1.04.otf ├── font_set │ ├── text_full.txt │ └── text_lite.txt ├── text_full_16px_2312.v3.bmf ├── text_full_24px_2312.v3.bmf ├── text_full_32px_2312.v3.bmf ├── text_full_8px_2312.v3.bmf ├── text_lite_16px_2312.v3.bmf ├── text_lite_24px_2312.v3.bmf ├── text_lite_32px_2312.v3.bmf └── text_lite_8px_2312.v3.bmf ├── img ├── test.bmp └── test.pbm ├── lib ├── easydisplay.mpy └── easydisplay.py ├── main.py └── tool ├── README.md ├── image_tools.py └── video_tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/micropython-easydisplay.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/.idea/micropython-easydisplay.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ZH-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/README.ZH-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/README.md -------------------------------------------------------------------------------- /driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/README.md -------------------------------------------------------------------------------- /driver/epaper_buf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/epaper_buf.mpy -------------------------------------------------------------------------------- /driver/epaper_buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/epaper_buf.py -------------------------------------------------------------------------------- /driver/sh1106_buf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/sh1106_buf.mpy -------------------------------------------------------------------------------- /driver/sh1106_buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/sh1106_buf.py -------------------------------------------------------------------------------- /driver/ssd1306_buf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/ssd1306_buf.mpy -------------------------------------------------------------------------------- /driver/ssd1306_buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/ssd1306_buf.py -------------------------------------------------------------------------------- /driver/ssd1315_buf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/ssd1315_buf.mpy -------------------------------------------------------------------------------- /driver/ssd1315_buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/ssd1315_buf.py -------------------------------------------------------------------------------- /driver/st7735_buf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7735_buf.mpy -------------------------------------------------------------------------------- /driver/st7735_buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7735_buf.py -------------------------------------------------------------------------------- /driver/st7735_spi.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7735_spi.mpy -------------------------------------------------------------------------------- /driver/st7735_spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7735_spi.py -------------------------------------------------------------------------------- /driver/st7789_buf.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7789_buf.mpy -------------------------------------------------------------------------------- /driver/st7789_buf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7789_buf.py -------------------------------------------------------------------------------- /driver/st7789_spi.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7789_spi.mpy -------------------------------------------------------------------------------- /driver/st7789_spi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/driver/st7789_spi.py -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/README.md -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/bitmapfonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/bitmapfonts.py -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/doc/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/doc/example.png -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/doc/如何生成点阵字体文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/doc/如何生成点阵字体文件.md -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/main.py -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow~=9.2.0 2 | numpy~=1.23.2 -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/soft/bitmap_font_tools_20220827_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/soft/bitmap_font_tools_20220827_mac -------------------------------------------------------------------------------- /font/MicroPython-uFont-Tools/soft/bitmap_font_tools_20220827_windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/MicroPython-uFont-Tools/soft/bitmap_font_tools_20220827_windows.exe -------------------------------------------------------------------------------- /font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/README.md -------------------------------------------------------------------------------- /font/font_file/GuanZhi-8px.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/font_file/GuanZhi-8px.ttf -------------------------------------------------------------------------------- /font/font_file/unifont-15.1.04.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/font_file/unifont-15.1.04.otf -------------------------------------------------------------------------------- /font/font_set/text_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/font_set/text_full.txt -------------------------------------------------------------------------------- /font/font_set/text_lite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/font_set/text_lite.txt -------------------------------------------------------------------------------- /font/text_full_16px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_full_16px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_full_24px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_full_24px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_full_32px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_full_32px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_full_8px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_full_8px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_lite_16px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_lite_16px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_lite_24px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_lite_24px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_lite_32px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_lite_32px_2312.v3.bmf -------------------------------------------------------------------------------- /font/text_lite_8px_2312.v3.bmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/font/text_lite_8px_2312.v3.bmf -------------------------------------------------------------------------------- /img/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/img/test.bmp -------------------------------------------------------------------------------- /img/test.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/img/test.pbm -------------------------------------------------------------------------------- /lib/easydisplay.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/lib/easydisplay.mpy -------------------------------------------------------------------------------- /lib/easydisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/lib/easydisplay.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/main.py -------------------------------------------------------------------------------- /tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/tool/README.md -------------------------------------------------------------------------------- /tool/image_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/tool/image_tools.py -------------------------------------------------------------------------------- /tool/video_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnygeeker/micropython-easydisplay/HEAD/tool/video_tools.py --------------------------------------------------------------------------------