├── .gitignore ├── LICENSE ├── README.md ├── examples ├── bg_jp200.bmp ├── demo_code.py ├── demo_st7796s.py └── jp200_code.py └── screensaver ├── __init__.py ├── boingball_32.bmp ├── dvdlogo_70.bmp ├── toast_48.bmp └── toaster_48.bmp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/README.md -------------------------------------------------------------------------------- /examples/bg_jp200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/examples/bg_jp200.bmp -------------------------------------------------------------------------------- /examples/demo_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/examples/demo_code.py -------------------------------------------------------------------------------- /examples/demo_st7796s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/examples/demo_st7796s.py -------------------------------------------------------------------------------- /examples/jp200_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/examples/jp200_code.py -------------------------------------------------------------------------------- /screensaver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/screensaver/__init__.py -------------------------------------------------------------------------------- /screensaver/boingball_32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/screensaver/boingball_32.bmp -------------------------------------------------------------------------------- /screensaver/dvdlogo_70.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/screensaver/dvdlogo_70.bmp -------------------------------------------------------------------------------- /screensaver/toast_48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/screensaver/toast_48.bmp -------------------------------------------------------------------------------- /screensaver/toaster_48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todbot/circuitpython_screensaver/HEAD/screensaver/toaster_48.bmp --------------------------------------------------------------------------------