├── .gitattributes ├── .gitignore ├── PDQ_GFX ├── .gitignore ├── Fonts │ ├── FreeMono12pt7b.h │ ├── FreeMono18pt7b.h │ ├── FreeMono24pt7b.h │ ├── FreeMono9pt7b.h │ ├── FreeMonoBold12pt7b.h │ ├── FreeMonoBold18pt7b.h │ ├── FreeMonoBold24pt7b.h │ ├── FreeMonoBold9pt7b.h │ ├── FreeMonoBoldOblique12pt7b.h │ ├── FreeMonoBoldOblique18pt7b.h │ ├── FreeMonoBoldOblique24pt7b.h │ ├── FreeMonoBoldOblique9pt7b.h │ ├── FreeMonoOblique12pt7b.h │ ├── FreeMonoOblique18pt7b.h │ ├── FreeMonoOblique24pt7b.h │ ├── FreeMonoOblique9pt7b.h │ ├── FreeSans12pt7b.h │ ├── FreeSans18pt7b.h │ ├── FreeSans24pt7b.h │ ├── FreeSans9pt7b.h │ ├── FreeSansBold12pt7b.h │ ├── FreeSansBold18pt7b.h │ ├── FreeSansBold24pt7b.h │ ├── FreeSansBold9pt7b.h │ ├── FreeSansBoldOblique12pt7b.h │ ├── FreeSansBoldOblique18pt7b.h │ ├── FreeSansBoldOblique24pt7b.h │ ├── FreeSansBoldOblique9pt7b.h │ ├── FreeSansOblique12pt7b.h │ ├── FreeSansOblique18pt7b.h │ ├── FreeSansOblique24pt7b.h │ ├── FreeSansOblique9pt7b.h │ ├── FreeSerif12pt7b.h │ ├── FreeSerif18pt7b.h │ ├── FreeSerif24pt7b.h │ ├── FreeSerif9pt7b.h │ ├── FreeSerifBold12pt7b.h │ ├── FreeSerifBold18pt7b.h │ ├── FreeSerifBold24pt7b.h │ ├── FreeSerifBold9pt7b.h │ ├── FreeSerifBoldItalic12pt7b.h │ ├── FreeSerifBoldItalic18pt7b.h │ ├── FreeSerifBoldItalic24pt7b.h │ ├── FreeSerifBoldItalic9pt7b.h │ ├── FreeSerifItalic12pt7b.h │ ├── FreeSerifItalic18pt7b.h │ ├── FreeSerifItalic24pt7b.h │ └── FreeSerifItalic9pt7b.h ├── PDQ_GFX.cpp ├── PDQ_GFX.h ├── README.txt ├── TTF2GFX │ ├── Sample.fonts │ │ ├── Arial_Narrow48.Digits.pck.h │ │ ├── Comic_Sans_MS28.h │ │ ├── Comic_Sans_MS28.pck.h │ │ ├── Tahoma24.h │ │ ├── Tahoma24.pck.h │ │ ├── Tahoma36.h │ │ └── Tahoma36.pck.h │ ├── Src │ │ ├── .gitignore │ │ ├── Project1.dpr │ │ ├── Project1.dproj │ │ ├── Project1.dproj.local │ │ ├── Project1.dsk │ │ ├── Project1.identcache │ │ ├── Project1.res │ │ ├── TTF2GFX.dpr │ │ ├── TTF2GFX.dproj │ │ ├── TTF2GFX.dproj.local │ │ ├── TTF2GFX.dsk │ │ ├── TTF2GFX.identcache │ │ ├── TTF2GFX.res │ │ ├── Unit1.dfm │ │ ├── Unit1.pas │ │ └── stat.txt │ ├── TTF2GFX.exe │ └── readme.txt ├── fontconvert │ ├── Makefile │ ├── fontconvert.c │ └── makefonts.sh ├── gfxfont.h ├── glcdfont.c ├── library.properties └── license.txt ├── PDQ_ILI9340 ├── PDQ_FastPin.h ├── PDQ_ILI9340.cpp ├── PDQ_ILI9340.h ├── README.txt ├── examples │ ├── PDQ_GFX_Button_test │ │ ├── PDQ_GFX_Button_test.ino │ │ └── PDQ_ILI9340_config.h │ └── PDQ_graphicstest │ │ ├── PDQ_ILI9340_config.h │ │ └── PDQ_graphicstest.ino ├── library.properties └── tools │ ├── HaD_240x320.bmp │ ├── Makefile │ ├── crunch_bmp_rle.cpp │ └── readme.txt ├── PDQ_ILI9341 ├── .gitignore ├── PDQ_FastPin.h ├── PDQ_ILI9341.cpp ├── PDQ_ILI9341.h ├── README.txt ├── examples │ ├── PDQ_GFX_Button_test │ │ ├── PDQ_GFX_Button_test.ino │ │ └── PDQ_ILI9341_config.h │ ├── PDQ_attinytest │ │ ├── PDQ_ILI9341_config.h │ │ └── PDQ_attinytest.ino │ └── PDQ_graphicstest │ │ ├── PDQ_ILI9341_config.h │ │ └── PDQ_graphicstest.ino ├── library.properties └── tools │ ├── HaD_240x320.bmp │ ├── Makefile │ ├── crunch_bmp_rle.cpp │ └── readme.txt ├── PDQ_ST7735 ├── PDQ_FastPin.h ├── PDQ_ST7735.cpp ├── PDQ_ST7735.h ├── README.txt ├── examples │ ├── PDQ_GFX_Button_test │ │ ├── PDQ_GFX_Button_test.ino │ │ └── PDQ_ILI9341_config.h │ └── PDQ_graphicstest │ │ ├── PDQ_ST7735_config.h │ │ └── PDQ_graphicstest.ino ├── library.properties └── tools │ ├── HaD_128x160.bmp │ ├── Makefile │ ├── crunch_bmp_rle.cpp │ └── readme.txt ├── PDQ_ST7781 ├── PDQ_FastPin.h ├── PDQ_ST7781.cpp ├── PDQ_ST7781.h ├── README.txt ├── examples │ ├── PDQ_GFX_Button_test │ │ ├── PDQ_GFX_Button_test.ino │ │ ├── PDQ_ILI9341_config.h │ │ └── PDQ_ST7781_config.h │ └── PDQ_graphicstest │ │ ├── PDQ_ST7781_config.h │ │ └── PDQ_graphicstest.ino ├── library.properties └── tools │ ├── HaD_240x320.bmp │ ├── Makefile │ ├── crunch_bmp_rle.cpp │ └── readme.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/.gitignore -------------------------------------------------------------------------------- /PDQ_GFX/.gitignore: -------------------------------------------------------------------------------- 1 | /__history/ 2 | -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /PDQ_GFX/PDQ_GFX.cpp: -------------------------------------------------------------------------------- 1 | // Not much here, all in the header 2 | #include "glcdfont.c" 3 | -------------------------------------------------------------------------------- /PDQ_GFX/PDQ_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/PDQ_GFX.h -------------------------------------------------------------------------------- /PDQ_GFX/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/README.txt -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Arial_Narrow48.Digits.pck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Arial_Narrow48.Digits.pck.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Comic_Sans_MS28.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Comic_Sans_MS28.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Comic_Sans_MS28.pck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Comic_Sans_MS28.pck.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma24.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma24.pck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma24.pck.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma36.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma36.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma36.pck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Sample.fonts/Tahoma36.pck.h -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/.gitignore: -------------------------------------------------------------------------------- 1 | /__history/ 2 | /Win32/ 3 | *.~* 4 | -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Project1.dpr -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Project1.dproj -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Project1.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Project1.dproj.local -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Project1.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Project1.dsk -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Project1.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Project1.identcache -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Project1.res -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/TTF2GFX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/TTF2GFX.dpr -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/TTF2GFX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/TTF2GFX.dproj -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/TTF2GFX.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/TTF2GFX.dproj.local -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/TTF2GFX.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/TTF2GFX.dsk -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/TTF2GFX.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/TTF2GFX.identcache -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/TTF2GFX.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/TTF2GFX.res -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Unit1.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Unit1.dfm -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/Unit1.pas -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/Src/stat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/Src/stat.txt -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/TTF2GFX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/TTF2GFX.exe -------------------------------------------------------------------------------- /PDQ_GFX/TTF2GFX/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/TTF2GFX/readme.txt -------------------------------------------------------------------------------- /PDQ_GFX/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/fontconvert/Makefile -------------------------------------------------------------------------------- /PDQ_GFX/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /PDQ_GFX/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /PDQ_GFX/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/gfxfont.h -------------------------------------------------------------------------------- /PDQ_GFX/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/glcdfont.c -------------------------------------------------------------------------------- /PDQ_GFX/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/library.properties -------------------------------------------------------------------------------- /PDQ_GFX/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_GFX/license.txt -------------------------------------------------------------------------------- /PDQ_ILI9340/PDQ_FastPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/PDQ_FastPin.h -------------------------------------------------------------------------------- /PDQ_ILI9340/PDQ_ILI9340.cpp: -------------------------------------------------------------------------------- 1 | // Nothing, all in the header 2 | -------------------------------------------------------------------------------- /PDQ_ILI9340/PDQ_ILI9340.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/PDQ_ILI9340.h -------------------------------------------------------------------------------- /PDQ_ILI9340/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/README.txt -------------------------------------------------------------------------------- /PDQ_ILI9340/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino -------------------------------------------------------------------------------- /PDQ_ILI9340/examples/PDQ_GFX_Button_test/PDQ_ILI9340_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/examples/PDQ_GFX_Button_test/PDQ_ILI9340_config.h -------------------------------------------------------------------------------- /PDQ_ILI9340/examples/PDQ_graphicstest/PDQ_ILI9340_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/examples/PDQ_graphicstest/PDQ_ILI9340_config.h -------------------------------------------------------------------------------- /PDQ_ILI9340/examples/PDQ_graphicstest/PDQ_graphicstest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/examples/PDQ_graphicstest/PDQ_graphicstest.ino -------------------------------------------------------------------------------- /PDQ_ILI9340/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/library.properties -------------------------------------------------------------------------------- /PDQ_ILI9340/tools/HaD_240x320.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/tools/HaD_240x320.bmp -------------------------------------------------------------------------------- /PDQ_ILI9340/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/tools/Makefile -------------------------------------------------------------------------------- /PDQ_ILI9340/tools/crunch_bmp_rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/tools/crunch_bmp_rle.cpp -------------------------------------------------------------------------------- /PDQ_ILI9340/tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9340/tools/readme.txt -------------------------------------------------------------------------------- /PDQ_ILI9341/.gitignore: -------------------------------------------------------------------------------- 1 | /__history/ 2 | -------------------------------------------------------------------------------- /PDQ_ILI9341/PDQ_FastPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/PDQ_FastPin.h -------------------------------------------------------------------------------- /PDQ_ILI9341/PDQ_ILI9341.cpp: -------------------------------------------------------------------------------- 1 | // Nothing, all in the header 2 | -------------------------------------------------------------------------------- /PDQ_ILI9341/PDQ_ILI9341.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/PDQ_ILI9341.h -------------------------------------------------------------------------------- /PDQ_ILI9341/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/README.txt -------------------------------------------------------------------------------- /PDQ_ILI9341/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino -------------------------------------------------------------------------------- /PDQ_ILI9341/examples/PDQ_GFX_Button_test/PDQ_ILI9341_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/examples/PDQ_GFX_Button_test/PDQ_ILI9341_config.h -------------------------------------------------------------------------------- /PDQ_ILI9341/examples/PDQ_attinytest/PDQ_ILI9341_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/examples/PDQ_attinytest/PDQ_ILI9341_config.h -------------------------------------------------------------------------------- /PDQ_ILI9341/examples/PDQ_attinytest/PDQ_attinytest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/examples/PDQ_attinytest/PDQ_attinytest.ino -------------------------------------------------------------------------------- /PDQ_ILI9341/examples/PDQ_graphicstest/PDQ_ILI9341_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/examples/PDQ_graphicstest/PDQ_ILI9341_config.h -------------------------------------------------------------------------------- /PDQ_ILI9341/examples/PDQ_graphicstest/PDQ_graphicstest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/examples/PDQ_graphicstest/PDQ_graphicstest.ino -------------------------------------------------------------------------------- /PDQ_ILI9341/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/library.properties -------------------------------------------------------------------------------- /PDQ_ILI9341/tools/HaD_240x320.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/tools/HaD_240x320.bmp -------------------------------------------------------------------------------- /PDQ_ILI9341/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/tools/Makefile -------------------------------------------------------------------------------- /PDQ_ILI9341/tools/crunch_bmp_rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/tools/crunch_bmp_rle.cpp -------------------------------------------------------------------------------- /PDQ_ILI9341/tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ILI9341/tools/readme.txt -------------------------------------------------------------------------------- /PDQ_ST7735/PDQ_FastPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/PDQ_FastPin.h -------------------------------------------------------------------------------- /PDQ_ST7735/PDQ_ST7735.cpp: -------------------------------------------------------------------------------- 1 | // Nothing, all in the header 2 | -------------------------------------------------------------------------------- /PDQ_ST7735/PDQ_ST7735.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/PDQ_ST7735.h -------------------------------------------------------------------------------- /PDQ_ST7735/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/README.txt -------------------------------------------------------------------------------- /PDQ_ST7735/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino -------------------------------------------------------------------------------- /PDQ_ST7735/examples/PDQ_GFX_Button_test/PDQ_ILI9341_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/examples/PDQ_GFX_Button_test/PDQ_ILI9341_config.h -------------------------------------------------------------------------------- /PDQ_ST7735/examples/PDQ_graphicstest/PDQ_ST7735_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/examples/PDQ_graphicstest/PDQ_ST7735_config.h -------------------------------------------------------------------------------- /PDQ_ST7735/examples/PDQ_graphicstest/PDQ_graphicstest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/examples/PDQ_graphicstest/PDQ_graphicstest.ino -------------------------------------------------------------------------------- /PDQ_ST7735/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/library.properties -------------------------------------------------------------------------------- /PDQ_ST7735/tools/HaD_128x160.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/tools/HaD_128x160.bmp -------------------------------------------------------------------------------- /PDQ_ST7735/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/tools/Makefile -------------------------------------------------------------------------------- /PDQ_ST7735/tools/crunch_bmp_rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/tools/crunch_bmp_rle.cpp -------------------------------------------------------------------------------- /PDQ_ST7735/tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7735/tools/readme.txt -------------------------------------------------------------------------------- /PDQ_ST7781/PDQ_FastPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/PDQ_FastPin.h -------------------------------------------------------------------------------- /PDQ_ST7781/PDQ_ST7781.cpp: -------------------------------------------------------------------------------- 1 | // Nothing, all in the header 2 | -------------------------------------------------------------------------------- /PDQ_ST7781/PDQ_ST7781.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/PDQ_ST7781.h -------------------------------------------------------------------------------- /PDQ_ST7781/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/README.txt -------------------------------------------------------------------------------- /PDQ_ST7781/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/examples/PDQ_GFX_Button_test/PDQ_GFX_Button_test.ino -------------------------------------------------------------------------------- /PDQ_ST7781/examples/PDQ_GFX_Button_test/PDQ_ILI9341_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/examples/PDQ_GFX_Button_test/PDQ_ILI9341_config.h -------------------------------------------------------------------------------- /PDQ_ST7781/examples/PDQ_GFX_Button_test/PDQ_ST7781_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/examples/PDQ_GFX_Button_test/PDQ_ST7781_config.h -------------------------------------------------------------------------------- /PDQ_ST7781/examples/PDQ_graphicstest/PDQ_ST7781_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/examples/PDQ_graphicstest/PDQ_ST7781_config.h -------------------------------------------------------------------------------- /PDQ_ST7781/examples/PDQ_graphicstest/PDQ_graphicstest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/examples/PDQ_graphicstest/PDQ_graphicstest.ino -------------------------------------------------------------------------------- /PDQ_ST7781/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/library.properties -------------------------------------------------------------------------------- /PDQ_ST7781/tools/HaD_240x320.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/tools/HaD_240x320.bmp -------------------------------------------------------------------------------- /PDQ_ST7781/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/tools/Makefile -------------------------------------------------------------------------------- /PDQ_ST7781/tools/crunch_bmp_rle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/tools/crunch_bmp_rle.cpp -------------------------------------------------------------------------------- /PDQ_ST7781/tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/PDQ_ST7781/tools/readme.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XarkLabs/PDQ_GFX_Libs/HEAD/README.md --------------------------------------------------------------------------------