├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── ex01_helloWorld │ └── ex01_helloWorld.ino ├── ex02_demo │ ├── data │ │ └── test.bmp │ └── ex02_demo.ino ├── ex03_buttons │ └── ex03_buttons.ino ├── ex04_wifi │ ├── 1_wifi_ap_server │ │ └── 1_wifi_ap_server.ino │ ├── 2_wifi_config │ │ └── 2_wifi_config.ino │ ├── 3_build_without_wifi │ │ └── 3_build_without_wifi.ino │ └── 4_wifi_text_show │ │ ├── 4_wifi_text_show.ino │ │ ├── ctg_u8g2_wqy12.c │ │ └── ctg_u8g2_wqy12.h ├── ex05_multifont │ └── 1_u8g2font │ │ ├── 1_u8g2font.ino │ │ ├── ctg_u8g2_wqy12.c │ │ └── ctg_u8g2_wqy12.h └── ex06_Image │ ├── data │ ├── bmp.bmp │ ├── jpg.jpg │ └── png.png │ ├── ex06_Image.ino │ ├── guy_image.cpp │ └── guy_image.h ├── extra ├── artset │ ├── arduinolibrary.jpg │ ├── favicon.ico │ ├── readguy_theme.png │ ├── readguy_theme2.png │ ├── readguy_theme3.png │ ├── readguy_theme_1.png │ ├── readguy_theme_2.png │ └── test.bmp ├── ctg_timelib │ ├── TimeLib.h │ ├── ctg_timelib.cpp │ └── ctg_timelib.hpp ├── guy_driver_template │ ├── guy_template │ │ ├── guy_template.cpp │ │ └── guy_template.h │ └── readme.md ├── platformio │ ├── platformio.ini │ ├── readguy_16MB.csv │ ├── readguy_2MB_noOTA.csv │ ├── readguy_4MB.csv │ ├── readguy_4MB_largeAPP.csv │ ├── sdkconfig.esp32c3_luatos │ ├── sdkconfig.esp32c3_no_uart │ ├── sdkconfig.esp32dev │ ├── sdkconfig.esp32s2_dev │ ├── sdkconfig.esp32s3_2m │ └── sdkconfig.esp32s3_8m ├── tools │ ├── file2bin.c │ └── stringConverter.cpp └── webconfig │ ├── final.html │ ├── final.html.txt │ ├── index_cn.html │ ├── index_cn.html.txt │ ├── verify.html │ └── verify.html.txt ├── library.json ├── library.properties └── src ├── guy_button.cpp ├── guy_button.h ├── guy_config_host.h ├── guy_driver_config.h ├── guy_epaper ├── guy_1020A │ ├── guy_1020A.cpp │ └── guy_1020A.h ├── guy_154C │ ├── guy_154C.cpp │ └── guy_154C.h ├── guy_154a_290a │ ├── guy_154a_290a.cpp │ └── guy_154a_290a.h ├── guy_154b_270b_290b │ ├── guy_154b_270b_290b.cpp │ └── guy_154b_270b_290b.h ├── guy_213a │ ├── guy_213a.cpp │ └── guy_213a.h ├── guy_213b_266a │ ├── guy_213b_266a.cpp │ └── guy_213b_266a.h ├── guy_370B │ ├── guy_370B.cpp │ └── guy_370B.h ├── guy_370a │ ├── guy_370a.cpp │ └── guy_370a.h ├── guy_420a │ ├── guy_420a.cpp │ └── guy_420a.h ├── guy_420b │ ├── guy_420b.cpp │ └── guy_420b.h ├── guy_426A │ ├── guy_426A.cpp │ └── guy_426A.h ├── guy_583A │ ├── guy_583A.cpp │ └── guy_583A.h ├── guy_583B │ ├── guy_583B.cpp │ └── guy_583B.h ├── guy_750A │ ├── guy_750A.cpp │ └── guy_750A.h ├── guy_epdbase.cpp ├── guy_epdbase.h └── lcdDebug │ ├── ctg_stack_c_defines.h │ ├── lcdDebug.cpp │ └── lcdDebug.h ├── guy_version.h ├── guy_wireless.cpp ├── readguy.cpp └── readguy.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/README.md -------------------------------------------------------------------------------- /examples/ex01_helloWorld/ex01_helloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex01_helloWorld/ex01_helloWorld.ino -------------------------------------------------------------------------------- /examples/ex02_demo/data/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex02_demo/data/test.bmp -------------------------------------------------------------------------------- /examples/ex02_demo/ex02_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex02_demo/ex02_demo.ino -------------------------------------------------------------------------------- /examples/ex03_buttons/ex03_buttons.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex03_buttons/ex03_buttons.ino -------------------------------------------------------------------------------- /examples/ex04_wifi/1_wifi_ap_server/1_wifi_ap_server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex04_wifi/1_wifi_ap_server/1_wifi_ap_server.ino -------------------------------------------------------------------------------- /examples/ex04_wifi/2_wifi_config/2_wifi_config.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex04_wifi/2_wifi_config/2_wifi_config.ino -------------------------------------------------------------------------------- /examples/ex04_wifi/3_build_without_wifi/3_build_without_wifi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex04_wifi/3_build_without_wifi/3_build_without_wifi.ino -------------------------------------------------------------------------------- /examples/ex04_wifi/4_wifi_text_show/4_wifi_text_show.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex04_wifi/4_wifi_text_show/4_wifi_text_show.ino -------------------------------------------------------------------------------- /examples/ex04_wifi/4_wifi_text_show/ctg_u8g2_wqy12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex04_wifi/4_wifi_text_show/ctg_u8g2_wqy12.c -------------------------------------------------------------------------------- /examples/ex04_wifi/4_wifi_text_show/ctg_u8g2_wqy12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex04_wifi/4_wifi_text_show/ctg_u8g2_wqy12.h -------------------------------------------------------------------------------- /examples/ex05_multifont/1_u8g2font/1_u8g2font.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex05_multifont/1_u8g2font/1_u8g2font.ino -------------------------------------------------------------------------------- /examples/ex05_multifont/1_u8g2font/ctg_u8g2_wqy12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex05_multifont/1_u8g2font/ctg_u8g2_wqy12.c -------------------------------------------------------------------------------- /examples/ex05_multifont/1_u8g2font/ctg_u8g2_wqy12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex05_multifont/1_u8g2font/ctg_u8g2_wqy12.h -------------------------------------------------------------------------------- /examples/ex06_Image/data/bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex06_Image/data/bmp.bmp -------------------------------------------------------------------------------- /examples/ex06_Image/data/jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex06_Image/data/jpg.jpg -------------------------------------------------------------------------------- /examples/ex06_Image/data/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex06_Image/data/png.png -------------------------------------------------------------------------------- /examples/ex06_Image/ex06_Image.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex06_Image/ex06_Image.ino -------------------------------------------------------------------------------- /examples/ex06_Image/guy_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex06_Image/guy_image.cpp -------------------------------------------------------------------------------- /examples/ex06_Image/guy_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/examples/ex06_Image/guy_image.h -------------------------------------------------------------------------------- /extra/artset/arduinolibrary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/arduinolibrary.jpg -------------------------------------------------------------------------------- /extra/artset/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/favicon.ico -------------------------------------------------------------------------------- /extra/artset/readguy_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/readguy_theme.png -------------------------------------------------------------------------------- /extra/artset/readguy_theme2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/readguy_theme2.png -------------------------------------------------------------------------------- /extra/artset/readguy_theme3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/readguy_theme3.png -------------------------------------------------------------------------------- /extra/artset/readguy_theme_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/readguy_theme_1.png -------------------------------------------------------------------------------- /extra/artset/readguy_theme_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/readguy_theme_2.png -------------------------------------------------------------------------------- /extra/artset/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/artset/test.bmp -------------------------------------------------------------------------------- /extra/ctg_timelib/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/ctg_timelib/TimeLib.h -------------------------------------------------------------------------------- /extra/ctg_timelib/ctg_timelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/ctg_timelib/ctg_timelib.cpp -------------------------------------------------------------------------------- /extra/ctg_timelib/ctg_timelib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/ctg_timelib/ctg_timelib.hpp -------------------------------------------------------------------------------- /extra/guy_driver_template/guy_template/guy_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/guy_driver_template/guy_template/guy_template.cpp -------------------------------------------------------------------------------- /extra/guy_driver_template/guy_template/guy_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/guy_driver_template/guy_template/guy_template.h -------------------------------------------------------------------------------- /extra/guy_driver_template/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/guy_driver_template/readme.md -------------------------------------------------------------------------------- /extra/platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/platformio.ini -------------------------------------------------------------------------------- /extra/platformio/readguy_16MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/readguy_16MB.csv -------------------------------------------------------------------------------- /extra/platformio/readguy_2MB_noOTA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/readguy_2MB_noOTA.csv -------------------------------------------------------------------------------- /extra/platformio/readguy_4MB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/readguy_4MB.csv -------------------------------------------------------------------------------- /extra/platformio/readguy_4MB_largeAPP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/readguy_4MB_largeAPP.csv -------------------------------------------------------------------------------- /extra/platformio/sdkconfig.esp32c3_luatos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/sdkconfig.esp32c3_luatos -------------------------------------------------------------------------------- /extra/platformio/sdkconfig.esp32c3_no_uart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/sdkconfig.esp32c3_no_uart -------------------------------------------------------------------------------- /extra/platformio/sdkconfig.esp32dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/sdkconfig.esp32dev -------------------------------------------------------------------------------- /extra/platformio/sdkconfig.esp32s2_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/sdkconfig.esp32s2_dev -------------------------------------------------------------------------------- /extra/platformio/sdkconfig.esp32s3_2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/sdkconfig.esp32s3_2m -------------------------------------------------------------------------------- /extra/platformio/sdkconfig.esp32s3_8m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/platformio/sdkconfig.esp32s3_8m -------------------------------------------------------------------------------- /extra/tools/file2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/tools/file2bin.c -------------------------------------------------------------------------------- /extra/tools/stringConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/tools/stringConverter.cpp -------------------------------------------------------------------------------- /extra/webconfig/final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/webconfig/final.html -------------------------------------------------------------------------------- /extra/webconfig/final.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/webconfig/final.html.txt -------------------------------------------------------------------------------- /extra/webconfig/index_cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/webconfig/index_cn.html -------------------------------------------------------------------------------- /extra/webconfig/index_cn.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/webconfig/index_cn.html.txt -------------------------------------------------------------------------------- /extra/webconfig/verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/webconfig/verify.html -------------------------------------------------------------------------------- /extra/webconfig/verify.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/extra/webconfig/verify.html.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/library.properties -------------------------------------------------------------------------------- /src/guy_button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_button.cpp -------------------------------------------------------------------------------- /src/guy_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_button.h -------------------------------------------------------------------------------- /src/guy_config_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_config_host.h -------------------------------------------------------------------------------- /src/guy_driver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_driver_config.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_1020A/guy_1020A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_1020A/guy_1020A.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_1020A/guy_1020A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_1020A/guy_1020A.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_154C/guy_154C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_154C/guy_154C.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_154C/guy_154C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_154C/guy_154C.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_154a_290a/guy_154a_290a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_154a_290a/guy_154a_290a.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_154a_290a/guy_154a_290a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_154a_290a/guy_154a_290a.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_154b_270b_290b/guy_154b_270b_290b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_154b_270b_290b/guy_154b_270b_290b.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_154b_270b_290b/guy_154b_270b_290b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_154b_270b_290b/guy_154b_270b_290b.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_213a/guy_213a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_213a/guy_213a.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_213a/guy_213a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_213a/guy_213a.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_213b_266a/guy_213b_266a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_213b_266a/guy_213b_266a.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_213b_266a/guy_213b_266a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_213b_266a/guy_213b_266a.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_370B/guy_370B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_370B/guy_370B.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_370B/guy_370B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_370B/guy_370B.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_370a/guy_370a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_370a/guy_370a.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_370a/guy_370a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_370a/guy_370a.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_420a/guy_420a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_420a/guy_420a.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_420a/guy_420a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_420a/guy_420a.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_420b/guy_420b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_420b/guy_420b.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_420b/guy_420b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_420b/guy_420b.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_426A/guy_426A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_426A/guy_426A.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_426A/guy_426A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_426A/guy_426A.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_583A/guy_583A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_583A/guy_583A.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_583A/guy_583A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_583A/guy_583A.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_583B/guy_583B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_583B/guy_583B.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_583B/guy_583B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_583B/guy_583B.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_750A/guy_750A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_750A/guy_750A.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_750A/guy_750A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_750A/guy_750A.h -------------------------------------------------------------------------------- /src/guy_epaper/guy_epdbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_epdbase.cpp -------------------------------------------------------------------------------- /src/guy_epaper/guy_epdbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/guy_epdbase.h -------------------------------------------------------------------------------- /src/guy_epaper/lcdDebug/ctg_stack_c_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/lcdDebug/ctg_stack_c_defines.h -------------------------------------------------------------------------------- /src/guy_epaper/lcdDebug/lcdDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/lcdDebug/lcdDebug.cpp -------------------------------------------------------------------------------- /src/guy_epaper/lcdDebug/lcdDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_epaper/lcdDebug/lcdDebug.h -------------------------------------------------------------------------------- /src/guy_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_version.h -------------------------------------------------------------------------------- /src/guy_wireless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/guy_wireless.cpp -------------------------------------------------------------------------------- /src/readguy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/readguy.cpp -------------------------------------------------------------------------------- /src/readguy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsender/readguy/HEAD/src/readguy.h --------------------------------------------------------------------------------