├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── Adafruit_TFTLCD.cpp ├── Adafruit_TFTLCD.h ├── README.md ├── assets └── image.jpg ├── bitmaps ├── miniwoof.bmp ├── test.bmp └── woof.bmp ├── examples ├── graphicstest │ └── graphicstest.ino ├── rotationtest │ └── rotationtest.ino ├── tftbmp │ └── tftbmp.ino ├── tftbmp_shield │ └── tftbmp_shield.ino ├── tftpaint │ └── tftpaint.ino └── tftpaint_shield │ ├── glcdfont.c │ └── tftpaint_shield.ino ├── library.properties ├── pin_magic.h └── registers.h /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Adafruit_TFTLCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/Adafruit_TFTLCD.cpp -------------------------------------------------------------------------------- /Adafruit_TFTLCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/Adafruit_TFTLCD.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/README.md -------------------------------------------------------------------------------- /assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/assets/image.jpg -------------------------------------------------------------------------------- /bitmaps/miniwoof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/bitmaps/miniwoof.bmp -------------------------------------------------------------------------------- /bitmaps/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/bitmaps/test.bmp -------------------------------------------------------------------------------- /bitmaps/woof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/bitmaps/woof.bmp -------------------------------------------------------------------------------- /examples/graphicstest/graphicstest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/graphicstest/graphicstest.ino -------------------------------------------------------------------------------- /examples/rotationtest/rotationtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/rotationtest/rotationtest.ino -------------------------------------------------------------------------------- /examples/tftbmp/tftbmp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/tftbmp/tftbmp.ino -------------------------------------------------------------------------------- /examples/tftbmp_shield/tftbmp_shield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/tftbmp_shield/tftbmp_shield.ino -------------------------------------------------------------------------------- /examples/tftpaint/tftpaint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/tftpaint/tftpaint.ino -------------------------------------------------------------------------------- /examples/tftpaint_shield/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/tftpaint_shield/glcdfont.c -------------------------------------------------------------------------------- /examples/tftpaint_shield/tftpaint_shield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/examples/tftpaint_shield/tftpaint_shield.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/library.properties -------------------------------------------------------------------------------- /pin_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/pin_magic.h -------------------------------------------------------------------------------- /registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/TFTLCD-Library/HEAD/registers.h --------------------------------------------------------------------------------