├── .github └── FUNDING.yml ├── .gitignore ├── ESP32-Arduino ├── E-Paper_Photo_Frame │ ├── E-Paper_Photo_Frame.ino │ ├── EPD_7_Colors.cpp │ └── EPD_7_Colors.h └── _Test_E_Paper_5_56inch_7color │ ├── EPD_7_Colors.cpp │ ├── EPD_7_Colors.h │ ├── _Test_E_Paper_5_56inch_7color.ino │ └── demo_image.h ├── Flask_API_Server ├── flask_server.py ├── h_files │ └── demo_image.h ├── images │ └── demo_image.jpg ├── monitor.py └── requirements.txt ├── LICENSE ├── README.md └── misc ├── Demo.gif ├── Hardware.png └── Workflow.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /ESP32-Arduino/E-Paper_Photo_Frame/E-Paper_Photo_Frame.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/E-Paper_Photo_Frame/E-Paper_Photo_Frame.ino -------------------------------------------------------------------------------- /ESP32-Arduino/E-Paper_Photo_Frame/EPD_7_Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/E-Paper_Photo_Frame/EPD_7_Colors.cpp -------------------------------------------------------------------------------- /ESP32-Arduino/E-Paper_Photo_Frame/EPD_7_Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/E-Paper_Photo_Frame/EPD_7_Colors.h -------------------------------------------------------------------------------- /ESP32-Arduino/_Test_E_Paper_5_56inch_7color/EPD_7_Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/_Test_E_Paper_5_56inch_7color/EPD_7_Colors.cpp -------------------------------------------------------------------------------- /ESP32-Arduino/_Test_E_Paper_5_56inch_7color/EPD_7_Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/_Test_E_Paper_5_56inch_7color/EPD_7_Colors.h -------------------------------------------------------------------------------- /ESP32-Arduino/_Test_E_Paper_5_56inch_7color/_Test_E_Paper_5_56inch_7color.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/_Test_E_Paper_5_56inch_7color/_Test_E_Paper_5_56inch_7color.ino -------------------------------------------------------------------------------- /ESP32-Arduino/_Test_E_Paper_5_56inch_7color/demo_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/ESP32-Arduino/_Test_E_Paper_5_56inch_7color/demo_image.h -------------------------------------------------------------------------------- /Flask_API_Server/flask_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/Flask_API_Server/flask_server.py -------------------------------------------------------------------------------- /Flask_API_Server/h_files/demo_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/Flask_API_Server/h_files/demo_image.h -------------------------------------------------------------------------------- /Flask_API_Server/images/demo_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/Flask_API_Server/images/demo_image.jpg -------------------------------------------------------------------------------- /Flask_API_Server/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/Flask_API_Server/monitor.py -------------------------------------------------------------------------------- /Flask_API_Server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/Flask_API_Server/requirements.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/README.md -------------------------------------------------------------------------------- /misc/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/misc/Demo.gif -------------------------------------------------------------------------------- /misc/Hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/misc/Hardware.png -------------------------------------------------------------------------------- /misc/Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0015/7-Color-E-Paper-Digital-Photo-Frame/HEAD/misc/Workflow.png --------------------------------------------------------------------------------