├── .gitignore ├── LICENSE ├── README.md ├── lcd_test ├── README.md └── lcdcolors.py ├── lenna.565 ├── pngto565 ├── .DS_Store ├── Makefile ├── lenna.png └── pngto565.c ├── st7789_base.py ├── st7789_ext.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | misc/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/README.md -------------------------------------------------------------------------------- /lcd_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/lcd_test/README.md -------------------------------------------------------------------------------- /lcd_test/lcdcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/lcd_test/lcdcolors.py -------------------------------------------------------------------------------- /lenna.565: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/lenna.565 -------------------------------------------------------------------------------- /pngto565/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/pngto565/.DS_Store -------------------------------------------------------------------------------- /pngto565/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/pngto565/Makefile -------------------------------------------------------------------------------- /pngto565/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/pngto565/lenna.png -------------------------------------------------------------------------------- /pngto565/pngto565.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/pngto565/pngto565.c -------------------------------------------------------------------------------- /st7789_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/st7789_base.py -------------------------------------------------------------------------------- /st7789_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/st7789_ext.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antirez/ST77xx-pure-MP/HEAD/test.py --------------------------------------------------------------------------------