├── Adafruit_TFTLCD.cpp ├── Adafruit_TFTLCD.h ├── README.txt ├── bitmaps ├── miniwoof.bmp ├── test.bmp └── woof.bmp ├── examples ├── graphicstest │ └── graphicstest.pde ├── rotationtest │ └── rotationtest.pde ├── tftbmp │ └── tftbmp.pde ├── tftbmp_shield │ └── tftbmp_shield.pde ├── tftpaint │ └── tftpaint.ino └── tftpaint_shield │ ├── glcdfont.c │ └── tftpaint_shield.ino ├── pin_magic.h └── registers.h /Adafruit_TFTLCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/Adafruit_TFTLCD.cpp -------------------------------------------------------------------------------- /Adafruit_TFTLCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/Adafruit_TFTLCD.h -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/README.txt -------------------------------------------------------------------------------- /bitmaps/miniwoof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/bitmaps/miniwoof.bmp -------------------------------------------------------------------------------- /bitmaps/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/bitmaps/test.bmp -------------------------------------------------------------------------------- /bitmaps/woof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/bitmaps/woof.bmp -------------------------------------------------------------------------------- /examples/graphicstest/graphicstest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/graphicstest/graphicstest.pde -------------------------------------------------------------------------------- /examples/rotationtest/rotationtest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/rotationtest/rotationtest.pde -------------------------------------------------------------------------------- /examples/tftbmp/tftbmp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/tftbmp/tftbmp.pde -------------------------------------------------------------------------------- /examples/tftbmp_shield/tftbmp_shield.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/tftbmp_shield/tftbmp_shield.pde -------------------------------------------------------------------------------- /examples/tftpaint/tftpaint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/tftpaint/tftpaint.ino -------------------------------------------------------------------------------- /examples/tftpaint_shield/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/tftpaint_shield/glcdfont.c -------------------------------------------------------------------------------- /examples/tftpaint_shield/tftpaint_shield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/examples/tftpaint_shield/tftpaint_shield.ino -------------------------------------------------------------------------------- /pin_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/pin_magic.h -------------------------------------------------------------------------------- /registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuraijap/TFTLCD-Library/HEAD/registers.h --------------------------------------------------------------------------------