├── .gitignore ├── .vscode └── settings.json ├── README.md ├── ai.py ├── control.py ├── convert.py ├── epaper.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/README.md -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/ai.py -------------------------------------------------------------------------------- /control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/control.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/convert.py -------------------------------------------------------------------------------- /epaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/epaper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blixt/sol-mate-eink/HEAD/requirements.txt --------------------------------------------------------------------------------