├── LICENSE ├── README.md ├── examples ├── GxEPD_HD_Example │ └── GxEPD_HD_Example.ino ├── GxEPD_HD_FontExtension │ ├── GxEPD_HD_FontExtension.ino │ └── SomeHindiText.h ├── GxEPD_HD_GreyGraphics │ └── GxEPD_HD_GreyGraphics.ino ├── GxEPD_HD_SD_Example │ ├── GxEPD_HD_SD_Example.ino │ ├── bitmaps │ │ ├── 01_Betty4_204x252x4_4Bit.bmp │ │ ├── 02_BiologyLineArt_400x335x24_4Bit.bmp │ │ ├── 03_EnglishAtLibrary_320x182x24_4Bit.bmp │ │ ├── 04_Marilyn_240x240x8_4Bit.bmp │ │ ├── 05_ThreeBands_240x320x24_4Bit.bmp │ │ ├── 06_Tiger_320x240x16_4Bit.bmp │ │ ├── 07_Tiger_320x240x24_4Bit.bmp │ │ ├── 08_TigerClipArt_178x160x4_4Bit.bmp │ │ ├── 09_TigerSingleColor_240x317x4_4Bit.bmp │ │ ├── 5in65f3.bmp │ │ ├── Bitmap640x384_1.bmp │ │ ├── Bitmap640x384_2.bmp │ │ ├── LOGO.BMP │ │ ├── bb4.bmp │ │ ├── betty_1.bmp │ │ ├── betty_4.bmp │ │ ├── eighth200x200.bmp │ │ ├── fifth200x200.bmp │ │ ├── first200x200.bmp │ │ ├── fourth200x200.bmp │ │ ├── logo200x200.bmp │ │ ├── marilyn_240x240x8.bmp │ │ ├── miniwoof.bmp │ │ ├── output5.bmp │ │ ├── output6.bmp │ │ ├── parrot.bmp │ │ ├── rgb32.bmp │ │ ├── second200x200.bmp │ │ ├── seventh200x200.bmp │ │ ├── sixth200x200.bmp │ │ ├── third200x200.bmp │ │ ├── tiger.bmp │ │ ├── tiger16T.bmp │ │ ├── tiger_178x160x4.bmp │ │ ├── tiger_240x317x4.bmp │ │ ├── tiger_320x200x24.bmp │ │ ├── tractor_1.bmp │ │ ├── tractor_11.bmp │ │ ├── tractor_4.bmp │ │ ├── tractor_44.bmp │ │ ├── tractor_8.bmp │ │ ├── tractor_88.bmp │ │ └── woof.bmp │ └── esp32.svd ├── GxEPD_HD_SD_WriteBitmap │ └── GxEPD_HD_SD_WriteBitmap.ino ├── GxEPD_HD_Scribble │ └── GxEPD_HD_Scribble.ino ├── GxEPD_HD_SerialFlash_Annotated │ └── GxEPD_HD_SerialFlash_Annotated.ino ├── GxEPD_HD_SerialFlash_Example │ └── GxEPD_HD_SerialFlash_Example.ino ├── GxEPD_HD_SerialFlash_Loader │ ├── GxEPD_HD_SerialFlash_Loader.ino │ └── GxEPD_HD_github_raw_certs.h ├── GxEPD_HD_SerialFlash_WriteBitmap │ └── GxEPD_HD_SerialFlash_WriteBitmap.ino ├── GxEPD_HD_Spiffs_Example │ ├── GxEPD_HD_Spiffs_Example.ino │ └── SPIFFS_Support.ino ├── GxEPD_HD_Spiffs_Loader │ ├── GxEPD_HD_Spiffs_Loader.ino │ ├── GxEPD_HD_github_raw_certs.h │ └── SPIFFS_Support.ino ├── GxEPD_HD_TouchMe │ └── GxEPD_HD_TouchMe.ino ├── GxEPD_HD_WiFi_Example │ ├── GxEPD_HD_WiFi_Example.ino │ └── GxEPD_HD_github_raw_certs.h └── STM32F103C8T6_IO_DRIVER │ └── STM32F103C8T6_IO_DRIVER.ino ├── extras └── SeQDoT │ ├── SeQDoT_SD_Merger │ └── SeQDoT_SD_Merger.ino │ ├── SeQDoT_SF_Merger │ └── SeQDoT_SF_Merger.ino │ └── SeQDoT_data │ └── 07_Tiger_320x240x24_4Bit_Hex.txt ├── library.properties └── src ├── Fonts └── Hindi12pt8b.h ├── GFX_FontExtension ├── GFX_FontExtension.cpp └── GFX_FontExtension.h ├── GxDESP32T ├── AVT6203A.cpp ├── AVT6203A.h ├── DESP32T_wiring.h ├── GxDESP32T.cpp ├── GxDESP32T.h ├── MCP23S17.cpp ├── MCP23S17.h ├── TPS65185.cpp ├── TPS65185.h ├── avt_config.h ├── old_waveform_table.h └── waveform_table.h ├── GxDESP32T_BP ├── AVT6203A_BP.cpp ├── AVT6203A_BP.h ├── DESP32T_BP_wiring.h ├── GxDESP32T_BP.cpp ├── GxDESP32T_BP.h ├── STM32F103C8T6_IO.cpp ├── STM32F103C8T6_IO.h ├── TPS65185_BP.cpp ├── TPS65185_BP.h ├── avt_config.h ├── old_waveform_table.h └── waveform_table.h ├── GxDESTM32T ├── AVT6203A.cpp ├── AVT6203A.h ├── DESTM32L1_board.h ├── DESTM32T_DEMO.cpp ├── DESTM32T_DEMO.h ├── GxDESTM32T.cpp ├── GxDESTM32T.h ├── TPS65185.cpp ├── TPS65185.h ├── avt_config.h ├── old_waveform_table.h ├── picture1024x768.h ├── picture800x600.h └── waveform_table.h ├── GxED060KC1.cpp ├── GxED060KC1.h ├── GxED060SCT.cpp ├── GxED060SCT.h ├── GxED078KC2.cpp ├── GxED078KC2.h ├── GxEPD_HD.h ├── GxEPD_HD_16G.h ├── GxEPD_HD_4G.h ├── GxEPD_HD_BW.h ├── GxEPD_HD_EPD.h ├── GxEPD_HD_GFX.h ├── GxES103TC1.cpp ├── GxES103TC1.h ├── GxFT5436 ├── GxFT5436.cpp ├── GxFT5436.h └── GxFT5436.ino ├── GxGDE043A2.cpp ├── GxGDE043A2.h ├── GxGDE060BA.cpp ├── GxGDE060BA.h ├── GxGDE060F3.cpp ├── GxGDE060F3.h ├── GxGDEW080T5.cpp ├── GxGDEW080T5.h ├── GxIT8951 ├── GxIT8951.cpp └── GxIT8951.h └── bitmaps ├── Bitmap_Tiger_320x240x24_4Bit.h ├── Bitmaps1024x758.h ├── Bitmaps1024x768.h ├── Bitmaps400x300.h ├── Bitmaps640x384.h └── Bitmaps800x600.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/README.md -------------------------------------------------------------------------------- /examples/GxEPD_HD_Example/GxEPD_HD_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Example/GxEPD_HD_Example.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_FontExtension/GxEPD_HD_FontExtension.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_FontExtension/GxEPD_HD_FontExtension.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_FontExtension/SomeHindiText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_FontExtension/SomeHindiText.h -------------------------------------------------------------------------------- /examples/GxEPD_HD_GreyGraphics/GxEPD_HD_GreyGraphics.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_GreyGraphics/GxEPD_HD_GreyGraphics.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/GxEPD_HD_SD_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/GxEPD_HD_SD_Example.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/01_Betty4_204x252x4_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/01_Betty4_204x252x4_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/02_BiologyLineArt_400x335x24_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/02_BiologyLineArt_400x335x24_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/03_EnglishAtLibrary_320x182x24_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/03_EnglishAtLibrary_320x182x24_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/04_Marilyn_240x240x8_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/04_Marilyn_240x240x8_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/05_ThreeBands_240x320x24_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/05_ThreeBands_240x320x24_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/06_Tiger_320x240x16_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/06_Tiger_320x240x16_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/07_Tiger_320x240x24_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/07_Tiger_320x240x24_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/08_TigerClipArt_178x160x4_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/08_TigerClipArt_178x160x4_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/09_TigerSingleColor_240x317x4_4Bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/09_TigerSingleColor_240x317x4_4Bit.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/5in65f3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/5in65f3.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/Bitmap640x384_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/Bitmap640x384_1.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/Bitmap640x384_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/Bitmap640x384_2.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/LOGO.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/LOGO.BMP -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/bb4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/bb4.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/betty_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/betty_1.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/betty_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/betty_4.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/eighth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/eighth200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/fifth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/fifth200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/first200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/first200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/fourth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/fourth200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/logo200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/logo200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/marilyn_240x240x8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/marilyn_240x240x8.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/miniwoof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/miniwoof.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/output5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/output5.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/output6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/output6.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/parrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/parrot.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/rgb32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/rgb32.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/second200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/second200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/seventh200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/seventh200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/sixth200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/sixth200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/third200x200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/third200x200.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tiger.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tiger.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tiger16T.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tiger16T.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tiger_178x160x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tiger_178x160x4.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tiger_240x317x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tiger_240x317x4.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tiger_320x200x24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tiger_320x200x24.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tractor_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tractor_1.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tractor_11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tractor_11.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tractor_4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tractor_4.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tractor_44.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tractor_44.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tractor_8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tractor_8.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/tractor_88.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/tractor_88.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/bitmaps/woof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/bitmaps/woof.bmp -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_Example/esp32.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_Example/esp32.svd -------------------------------------------------------------------------------- /examples/GxEPD_HD_SD_WriteBitmap/GxEPD_HD_SD_WriteBitmap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SD_WriteBitmap/GxEPD_HD_SD_WriteBitmap.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_Scribble/GxEPD_HD_Scribble.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Scribble/GxEPD_HD_Scribble.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_SerialFlash_Annotated/GxEPD_HD_SerialFlash_Annotated.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SerialFlash_Annotated/GxEPD_HD_SerialFlash_Annotated.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_SerialFlash_Example/GxEPD_HD_SerialFlash_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SerialFlash_Example/GxEPD_HD_SerialFlash_Example.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_SerialFlash_Loader/GxEPD_HD_SerialFlash_Loader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SerialFlash_Loader/GxEPD_HD_SerialFlash_Loader.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_SerialFlash_Loader/GxEPD_HD_github_raw_certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SerialFlash_Loader/GxEPD_HD_github_raw_certs.h -------------------------------------------------------------------------------- /examples/GxEPD_HD_SerialFlash_WriteBitmap/GxEPD_HD_SerialFlash_WriteBitmap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_SerialFlash_WriteBitmap/GxEPD_HD_SerialFlash_WriteBitmap.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_Spiffs_Example/GxEPD_HD_Spiffs_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Spiffs_Example/GxEPD_HD_Spiffs_Example.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_Spiffs_Example/SPIFFS_Support.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Spiffs_Example/SPIFFS_Support.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_Spiffs_Loader/GxEPD_HD_Spiffs_Loader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Spiffs_Loader/GxEPD_HD_Spiffs_Loader.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_Spiffs_Loader/GxEPD_HD_github_raw_certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Spiffs_Loader/GxEPD_HD_github_raw_certs.h -------------------------------------------------------------------------------- /examples/GxEPD_HD_Spiffs_Loader/SPIFFS_Support.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_Spiffs_Loader/SPIFFS_Support.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_TouchMe/GxEPD_HD_TouchMe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_TouchMe/GxEPD_HD_TouchMe.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_WiFi_Example/GxEPD_HD_WiFi_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_WiFi_Example/GxEPD_HD_WiFi_Example.ino -------------------------------------------------------------------------------- /examples/GxEPD_HD_WiFi_Example/GxEPD_HD_github_raw_certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/GxEPD_HD_WiFi_Example/GxEPD_HD_github_raw_certs.h -------------------------------------------------------------------------------- /examples/STM32F103C8T6_IO_DRIVER/STM32F103C8T6_IO_DRIVER.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/examples/STM32F103C8T6_IO_DRIVER/STM32F103C8T6_IO_DRIVER.ino -------------------------------------------------------------------------------- /extras/SeQDoT/SeQDoT_SD_Merger/SeQDoT_SD_Merger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/extras/SeQDoT/SeQDoT_SD_Merger/SeQDoT_SD_Merger.ino -------------------------------------------------------------------------------- /extras/SeQDoT/SeQDoT_SF_Merger/SeQDoT_SF_Merger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/extras/SeQDoT/SeQDoT_SF_Merger/SeQDoT_SF_Merger.ino -------------------------------------------------------------------------------- /extras/SeQDoT/SeQDoT_data/07_Tiger_320x240x24_4Bit_Hex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/extras/SeQDoT/SeQDoT_data/07_Tiger_320x240x24_4Bit_Hex.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/library.properties -------------------------------------------------------------------------------- /src/Fonts/Hindi12pt8b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/Fonts/Hindi12pt8b.h -------------------------------------------------------------------------------- /src/GFX_FontExtension/GFX_FontExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GFX_FontExtension/GFX_FontExtension.cpp -------------------------------------------------------------------------------- /src/GFX_FontExtension/GFX_FontExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GFX_FontExtension/GFX_FontExtension.h -------------------------------------------------------------------------------- /src/GxDESP32T/AVT6203A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/AVT6203A.cpp -------------------------------------------------------------------------------- /src/GxDESP32T/AVT6203A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/AVT6203A.h -------------------------------------------------------------------------------- /src/GxDESP32T/DESP32T_wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/DESP32T_wiring.h -------------------------------------------------------------------------------- /src/GxDESP32T/GxDESP32T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/GxDESP32T.cpp -------------------------------------------------------------------------------- /src/GxDESP32T/GxDESP32T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/GxDESP32T.h -------------------------------------------------------------------------------- /src/GxDESP32T/MCP23S17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/MCP23S17.cpp -------------------------------------------------------------------------------- /src/GxDESP32T/MCP23S17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/MCP23S17.h -------------------------------------------------------------------------------- /src/GxDESP32T/TPS65185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/TPS65185.cpp -------------------------------------------------------------------------------- /src/GxDESP32T/TPS65185.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/TPS65185.h -------------------------------------------------------------------------------- /src/GxDESP32T/avt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/avt_config.h -------------------------------------------------------------------------------- /src/GxDESP32T/old_waveform_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/old_waveform_table.h -------------------------------------------------------------------------------- /src/GxDESP32T/waveform_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T/waveform_table.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/AVT6203A_BP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/AVT6203A_BP.cpp -------------------------------------------------------------------------------- /src/GxDESP32T_BP/AVT6203A_BP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/AVT6203A_BP.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/DESP32T_BP_wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/DESP32T_BP_wiring.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/GxDESP32T_BP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/GxDESP32T_BP.cpp -------------------------------------------------------------------------------- /src/GxDESP32T_BP/GxDESP32T_BP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/GxDESP32T_BP.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/STM32F103C8T6_IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/STM32F103C8T6_IO.cpp -------------------------------------------------------------------------------- /src/GxDESP32T_BP/STM32F103C8T6_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/STM32F103C8T6_IO.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/TPS65185_BP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/TPS65185_BP.cpp -------------------------------------------------------------------------------- /src/GxDESP32T_BP/TPS65185_BP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/TPS65185_BP.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/avt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/avt_config.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/old_waveform_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/old_waveform_table.h -------------------------------------------------------------------------------- /src/GxDESP32T_BP/waveform_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESP32T_BP/waveform_table.h -------------------------------------------------------------------------------- /src/GxDESTM32T/AVT6203A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/AVT6203A.cpp -------------------------------------------------------------------------------- /src/GxDESTM32T/AVT6203A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/AVT6203A.h -------------------------------------------------------------------------------- /src/GxDESTM32T/DESTM32L1_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/DESTM32L1_board.h -------------------------------------------------------------------------------- /src/GxDESTM32T/DESTM32T_DEMO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/DESTM32T_DEMO.cpp -------------------------------------------------------------------------------- /src/GxDESTM32T/DESTM32T_DEMO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/DESTM32T_DEMO.h -------------------------------------------------------------------------------- /src/GxDESTM32T/GxDESTM32T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/GxDESTM32T.cpp -------------------------------------------------------------------------------- /src/GxDESTM32T/GxDESTM32T.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/GxDESTM32T.h -------------------------------------------------------------------------------- /src/GxDESTM32T/TPS65185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/TPS65185.cpp -------------------------------------------------------------------------------- /src/GxDESTM32T/TPS65185.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/TPS65185.h -------------------------------------------------------------------------------- /src/GxDESTM32T/avt_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/avt_config.h -------------------------------------------------------------------------------- /src/GxDESTM32T/old_waveform_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/old_waveform_table.h -------------------------------------------------------------------------------- /src/GxDESTM32T/picture1024x768.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/picture1024x768.h -------------------------------------------------------------------------------- /src/GxDESTM32T/picture800x600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/picture800x600.h -------------------------------------------------------------------------------- /src/GxDESTM32T/waveform_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxDESTM32T/waveform_table.h -------------------------------------------------------------------------------- /src/GxED060KC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxED060KC1.cpp -------------------------------------------------------------------------------- /src/GxED060KC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxED060KC1.h -------------------------------------------------------------------------------- /src/GxED060SCT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxED060SCT.cpp -------------------------------------------------------------------------------- /src/GxED060SCT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxED060SCT.h -------------------------------------------------------------------------------- /src/GxED078KC2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxED078KC2.cpp -------------------------------------------------------------------------------- /src/GxED078KC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxED078KC2.h -------------------------------------------------------------------------------- /src/GxEPD_HD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxEPD_HD.h -------------------------------------------------------------------------------- /src/GxEPD_HD_16G.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxEPD_HD_16G.h -------------------------------------------------------------------------------- /src/GxEPD_HD_4G.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxEPD_HD_4G.h -------------------------------------------------------------------------------- /src/GxEPD_HD_BW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxEPD_HD_BW.h -------------------------------------------------------------------------------- /src/GxEPD_HD_EPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxEPD_HD_EPD.h -------------------------------------------------------------------------------- /src/GxEPD_HD_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxEPD_HD_GFX.h -------------------------------------------------------------------------------- /src/GxES103TC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxES103TC1.cpp -------------------------------------------------------------------------------- /src/GxES103TC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxES103TC1.h -------------------------------------------------------------------------------- /src/GxFT5436/GxFT5436.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxFT5436/GxFT5436.cpp -------------------------------------------------------------------------------- /src/GxFT5436/GxFT5436.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxFT5436/GxFT5436.h -------------------------------------------------------------------------------- /src/GxFT5436/GxFT5436.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxFT5436/GxFT5436.ino -------------------------------------------------------------------------------- /src/GxGDE043A2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDE043A2.cpp -------------------------------------------------------------------------------- /src/GxGDE043A2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDE043A2.h -------------------------------------------------------------------------------- /src/GxGDE060BA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDE060BA.cpp -------------------------------------------------------------------------------- /src/GxGDE060BA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDE060BA.h -------------------------------------------------------------------------------- /src/GxGDE060F3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDE060F3.cpp -------------------------------------------------------------------------------- /src/GxGDE060F3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDE060F3.h -------------------------------------------------------------------------------- /src/GxGDEW080T5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDEW080T5.cpp -------------------------------------------------------------------------------- /src/GxGDEW080T5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxGDEW080T5.h -------------------------------------------------------------------------------- /src/GxIT8951/GxIT8951.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxIT8951/GxIT8951.cpp -------------------------------------------------------------------------------- /src/GxIT8951/GxIT8951.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/GxIT8951/GxIT8951.h -------------------------------------------------------------------------------- /src/bitmaps/Bitmap_Tiger_320x240x24_4Bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/bitmaps/Bitmap_Tiger_320x240x24_4Bit.h -------------------------------------------------------------------------------- /src/bitmaps/Bitmaps1024x758.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/bitmaps/Bitmaps1024x758.h -------------------------------------------------------------------------------- /src/bitmaps/Bitmaps1024x768.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/bitmaps/Bitmaps1024x768.h -------------------------------------------------------------------------------- /src/bitmaps/Bitmaps400x300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/bitmaps/Bitmaps400x300.h -------------------------------------------------------------------------------- /src/bitmaps/Bitmaps640x384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/bitmaps/Bitmaps640x384.h -------------------------------------------------------------------------------- /src/bitmaps/Bitmaps800x600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZinggJM/GxEPD_HD/HEAD/src/bitmaps/Bitmaps800x600.h --------------------------------------------------------------------------------