├── README.md ├── cat.bmp ├── docs └── issue_template.md ├── examples ├── ILI_Ada_FontTest4 │ └── ILI_Ada_FontTest4.ino ├── ST7735_t3_multiple │ └── ST7735_t3_multiple.ino ├── SpeedTest │ └── SpeedTest.ino ├── TFT_String_Align │ └── TFT_String_Align.ino ├── graphicstest │ └── graphicstest.ino ├── rotationtest │ └── rotationtest.ino ├── scrollTest │ └── scrollTest.ino ├── shieldtest │ └── shieldtest.ino ├── spitftbitmap │ └── spitftbitmap.ino ├── uncannyEyes7735 │ ├── config.h │ ├── graphics │ │ ├── catEye.h │ │ ├── defaultEye.h │ │ ├── doeEye.h │ │ ├── dragonEye.h │ │ ├── goatEye.h │ │ ├── logo.h │ │ ├── naugaEye.h │ │ ├── newtEye.h │ │ ├── noScleraEye.h │ │ ├── owlEye.h │ │ └── terminatorEye.h │ └── uncannyEyes7735.ino └── uncannyEyes_async_st7789_240x240 │ ├── config.h │ ├── graphics │ ├── catEye.h │ ├── defaultEye.h │ ├── default_large.h │ ├── doeEye.h │ ├── dragonEye.h │ ├── goatEye.h │ ├── logo.h │ ├── naugaEye.h │ ├── newtEye.h │ ├── noScleraEye.h │ ├── owlEye.h │ └── terminatorEye.h │ └── uncannyEyes_async_st7789_240x240.ino ├── flowers.bmp ├── fonts.zip ├── keywords.txt ├── library.properties ├── parrot.bmp └── src ├── ILI9341_fonts.h ├── ST7735_t3.cpp ├── ST7735_t3.h ├── ST7789_t3.cpp ├── ST7789_t3.h ├── ST7796_t3.cpp ├── ST7796_t3.h ├── glcdfont.c ├── st7735_t3_font_Arial.c ├── st7735_t3_font_Arial.h ├── st7735_t3_font_ComicSansMS.c └── st7735_t3_font_ComicSansMS.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/README.md -------------------------------------------------------------------------------- /cat.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/cat.bmp -------------------------------------------------------------------------------- /docs/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/docs/issue_template.md -------------------------------------------------------------------------------- /examples/ILI_Ada_FontTest4/ILI_Ada_FontTest4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/ILI_Ada_FontTest4/ILI_Ada_FontTest4.ino -------------------------------------------------------------------------------- /examples/ST7735_t3_multiple/ST7735_t3_multiple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/ST7735_t3_multiple/ST7735_t3_multiple.ino -------------------------------------------------------------------------------- /examples/SpeedTest/SpeedTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/SpeedTest/SpeedTest.ino -------------------------------------------------------------------------------- /examples/TFT_String_Align/TFT_String_Align.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/TFT_String_Align/TFT_String_Align.ino -------------------------------------------------------------------------------- /examples/graphicstest/graphicstest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/graphicstest/graphicstest.ino -------------------------------------------------------------------------------- /examples/rotationtest/rotationtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/rotationtest/rotationtest.ino -------------------------------------------------------------------------------- /examples/scrollTest/scrollTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/scrollTest/scrollTest.ino -------------------------------------------------------------------------------- /examples/shieldtest/shieldtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/shieldtest/shieldtest.ino -------------------------------------------------------------------------------- /examples/spitftbitmap/spitftbitmap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/spitftbitmap/spitftbitmap.ino -------------------------------------------------------------------------------- /examples/uncannyEyes7735/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/config.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/catEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/catEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/defaultEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/defaultEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/doeEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/doeEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/dragonEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/dragonEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/goatEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/goatEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/logo.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/naugaEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/naugaEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/newtEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/newtEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/noScleraEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/noScleraEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/owlEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/owlEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/graphics/terminatorEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/graphics/terminatorEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes7735/uncannyEyes7735.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes7735/uncannyEyes7735.ino -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/config.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/catEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/catEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/defaultEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/defaultEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/default_large.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/default_large.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/doeEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/doeEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/dragonEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/dragonEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/goatEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/goatEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/logo.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/naugaEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/naugaEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/newtEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/newtEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/noScleraEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/noScleraEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/owlEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/owlEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/graphics/terminatorEye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/graphics/terminatorEye.h -------------------------------------------------------------------------------- /examples/uncannyEyes_async_st7789_240x240/uncannyEyes_async_st7789_240x240.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/examples/uncannyEyes_async_st7789_240x240/uncannyEyes_async_st7789_240x240.ino -------------------------------------------------------------------------------- /flowers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/flowers.bmp -------------------------------------------------------------------------------- /fonts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/fonts.zip -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/library.properties -------------------------------------------------------------------------------- /parrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/parrot.bmp -------------------------------------------------------------------------------- /src/ILI9341_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ILI9341_fonts.h -------------------------------------------------------------------------------- /src/ST7735_t3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ST7735_t3.cpp -------------------------------------------------------------------------------- /src/ST7735_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ST7735_t3.h -------------------------------------------------------------------------------- /src/ST7789_t3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ST7789_t3.cpp -------------------------------------------------------------------------------- /src/ST7789_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ST7789_t3.h -------------------------------------------------------------------------------- /src/ST7796_t3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ST7796_t3.cpp -------------------------------------------------------------------------------- /src/ST7796_t3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/ST7796_t3.h -------------------------------------------------------------------------------- /src/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/glcdfont.c -------------------------------------------------------------------------------- /src/st7735_t3_font_Arial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/st7735_t3_font_Arial.c -------------------------------------------------------------------------------- /src/st7735_t3_font_Arial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/st7735_t3_font_Arial.h -------------------------------------------------------------------------------- /src/st7735_t3_font_ComicSansMS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/st7735_t3_font_ComicSansMS.c -------------------------------------------------------------------------------- /src/st7735_t3_font_ComicSansMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ST7735_t3/HEAD/src/st7735_t3_font_ComicSansMS.h --------------------------------------------------------------------------------