├── README.md ├── examples ├── Arial │ └── Arial.ino ├── ArialBlack_Impact │ └── ArialBlack_Impact.ino ├── Chancery_ComicSans │ └── Chancery_ComicSans.ino ├── CourierNew │ └── CourierNew.ino ├── Crystal_Logisoso_Michroma │ └── Crystal_Logisoso_Michroma.ino ├── DroidSans │ └── DroidSans.ino ├── DroidSerif │ └── DroidSerif.ino ├── Font_Awesome_F000 │ └── Font_Awesome_F000.ino ├── Font_Awesome_F080 │ └── Font_Awesome_F080.ino ├── Font_Awesome_F100 │ └── Font_Awesome_F100.ino ├── Font_Awesome_F180 │ └── Font_Awesome_F180.ino ├── Font_Awesome_F200 │ └── Font_Awesome_F200.ino ├── Georgia │ └── Georgia.ino ├── LiberationMono │ └── LiberationMono.ino ├── LiberationSans │ └── LiberationSans.ino ├── LiberationSansNarrow │ └── LiberationSansNarrow.ino ├── LiberationSerif │ └── LiberationSerif.ino ├── Nunito │ └── Nunito.ino └── TimesNewRoman │ └── TimesNewRoman.ino ├── extras ├── ArialBlack_Impact.jpg ├── AwesomeF000.jpg ├── AwesomeF080.jpg ├── AwesomeF100.jpg ├── AwesomeF180.jpg ├── AwesomeF200.jpg ├── Chancery_ComicSans.jpg ├── Courier.jpg ├── Georgia.jpg ├── LiberationMono.jpg ├── LiberationSans.jpg ├── LiberationSansNarrow.jpg ├── LiberationSerif.jpg └── TimesNewRoman.jpg ├── font_ArialBlack.c ├── font_ArialBlack.h ├── font_ArialBoldItalic.c ├── font_ArialBoldItalic.h ├── font_ArialItalic.c ├── font_ArialItalic.h ├── font_AwesomeF000.c ├── font_AwesomeF000.h ├── font_AwesomeF080.c ├── font_AwesomeF080.h ├── font_AwesomeF100.c ├── font_AwesomeF100.h ├── font_AwesomeF180.c ├── font_AwesomeF180.h ├── font_AwesomeF200.c ├── font_AwesomeF200.h ├── font_ChanceryItalic.c ├── font_ChanceryItalic.h ├── font_ComicSansMS.c ├── font_ComicSansMS.h ├── font_ComicSansMSBold.c ├── font_ComicSansMSBold.h ├── font_CourierNew.c ├── font_CourierNew.h ├── font_CourierNewBold.c ├── font_CourierNewBold.h ├── font_CourierNewBoldItalic.c ├── font_CourierNewBoldItalic.h ├── font_CourierNewItalic.c ├── font_CourierNewItalic.h ├── font_Crystal.c ├── font_Crystal.h ├── font_Crystal.txt ├── font_Droid.txt ├── font_DroidSans.c ├── font_DroidSans.h ├── font_DroidSansMono.c ├── font_DroidSansMono.h ├── font_DroidSans_Bold.c ├── font_DroidSans_Bold.h ├── font_DroidSerif_Bold.c ├── font_DroidSerif_Bold.h ├── font_DroidSerif_BoldItalic.c ├── font_DroidSerif_BoldItalic.h ├── font_DroidSerif_Italic.c ├── font_DroidSerif_Italic.h ├── font_DroidSerif_Regular.c ├── font_DroidSerif_Regular.h ├── font_Georgia.c ├── font_Georgia.h ├── font_GeorgiaBold.c ├── font_GeorgiaBold.h ├── font_GeorgiaBoldItalic.c ├── font_GeorgiaBoldItalic.h ├── font_GeorgiaItalic.c ├── font_GeorgiaItalic.h ├── font_Impact.c ├── font_Impact.h ├── font_LiberationMono.c ├── font_LiberationMono.h ├── font_LiberationMonoBold.c ├── font_LiberationMonoBold.h ├── font_LiberationMonoBoldItalic.c ├── font_LiberationMonoBoldItalic.h ├── font_LiberationMonoItalic.c ├── font_LiberationMonoItalic.h ├── font_LiberationSans.c ├── font_LiberationSans.h ├── font_LiberationSansBold.c ├── font_LiberationSansBold.h ├── font_LiberationSansBoldItalic.c ├── font_LiberationSansBoldItalic.h ├── font_LiberationSansItalic.c ├── font_LiberationSansItalic.h ├── font_LiberationSansNarrow.c ├── font_LiberationSansNarrow.h ├── font_LiberationSansNarrowBold.c ├── font_LiberationSansNarrowBold.h ├── font_LiberationSansNarrowBoldItalic.c ├── font_LiberationSansNarrowBoldItalic.h ├── font_LiberationSansNarrowItalic.c ├── font_LiberationSansNarrowItalic.h ├── font_LiberationSerif.c ├── font_LiberationSerif.h ├── font_LiberationSerifBold.c ├── font_LiberationSerifBold.h ├── font_LiberationSerifBoldItalic.c ├── font_LiberationSerifBoldItalic.h ├── font_LiberationSerifItalic.c ├── font_LiberationSerifItalic.h ├── font_Logisoso.c ├── font_Logisoso.h ├── font_Logisoso.txt ├── font_Michroma.c ├── font_Michroma.h ├── font_Michroma.txt ├── font_Nunito.c ├── font_Nunito.h ├── font_NunitoBold.c ├── font_NunitoBold.h ├── font_NunitoLight.c ├── font_NunitoLight.h ├── font_NunitoLight.txt ├── font_TimesNewRoman.c ├── font_TimesNewRoman.h ├── font_TimesNewRomanBold.c ├── font_TimesNewRomanBold.h ├── font_TimesNewRomanBoldItalic.c ├── font_TimesNewRomanBoldItalic.h ├── font_TimesNewRomanItalic.c ├── font_TimesNewRomanItalic.h └── library.json /README.md: -------------------------------------------------------------------------------- 1 | # Extra Fonts for ILI9341_t3 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/Arial/Arial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Arial/Arial.ino -------------------------------------------------------------------------------- /examples/ArialBlack_Impact/ArialBlack_Impact.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/ArialBlack_Impact/ArialBlack_Impact.ino -------------------------------------------------------------------------------- /examples/Chancery_ComicSans/Chancery_ComicSans.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Chancery_ComicSans/Chancery_ComicSans.ino -------------------------------------------------------------------------------- /examples/CourierNew/CourierNew.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/CourierNew/CourierNew.ino -------------------------------------------------------------------------------- /examples/Crystal_Logisoso_Michroma/Crystal_Logisoso_Michroma.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Crystal_Logisoso_Michroma/Crystal_Logisoso_Michroma.ino -------------------------------------------------------------------------------- /examples/DroidSans/DroidSans.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/DroidSans/DroidSans.ino -------------------------------------------------------------------------------- /examples/DroidSerif/DroidSerif.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/DroidSerif/DroidSerif.ino -------------------------------------------------------------------------------- /examples/Font_Awesome_F000/Font_Awesome_F000.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Font_Awesome_F000/Font_Awesome_F000.ino -------------------------------------------------------------------------------- /examples/Font_Awesome_F080/Font_Awesome_F080.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Font_Awesome_F080/Font_Awesome_F080.ino -------------------------------------------------------------------------------- /examples/Font_Awesome_F100/Font_Awesome_F100.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Font_Awesome_F100/Font_Awesome_F100.ino -------------------------------------------------------------------------------- /examples/Font_Awesome_F180/Font_Awesome_F180.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Font_Awesome_F180/Font_Awesome_F180.ino -------------------------------------------------------------------------------- /examples/Font_Awesome_F200/Font_Awesome_F200.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Font_Awesome_F200/Font_Awesome_F200.ino -------------------------------------------------------------------------------- /examples/Georgia/Georgia.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Georgia/Georgia.ino -------------------------------------------------------------------------------- /examples/LiberationMono/LiberationMono.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/LiberationMono/LiberationMono.ino -------------------------------------------------------------------------------- /examples/LiberationSans/LiberationSans.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/LiberationSans/LiberationSans.ino -------------------------------------------------------------------------------- /examples/LiberationSansNarrow/LiberationSansNarrow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/LiberationSansNarrow/LiberationSansNarrow.ino -------------------------------------------------------------------------------- /examples/LiberationSerif/LiberationSerif.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/LiberationSerif/LiberationSerif.ino -------------------------------------------------------------------------------- /examples/Nunito/Nunito.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/Nunito/Nunito.ino -------------------------------------------------------------------------------- /examples/TimesNewRoman/TimesNewRoman.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/examples/TimesNewRoman/TimesNewRoman.ino -------------------------------------------------------------------------------- /extras/ArialBlack_Impact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/ArialBlack_Impact.jpg -------------------------------------------------------------------------------- /extras/AwesomeF000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/AwesomeF000.jpg -------------------------------------------------------------------------------- /extras/AwesomeF080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/AwesomeF080.jpg -------------------------------------------------------------------------------- /extras/AwesomeF100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/AwesomeF100.jpg -------------------------------------------------------------------------------- /extras/AwesomeF180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/AwesomeF180.jpg -------------------------------------------------------------------------------- /extras/AwesomeF200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/AwesomeF200.jpg -------------------------------------------------------------------------------- /extras/Chancery_ComicSans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/Chancery_ComicSans.jpg -------------------------------------------------------------------------------- /extras/Courier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/Courier.jpg -------------------------------------------------------------------------------- /extras/Georgia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/Georgia.jpg -------------------------------------------------------------------------------- /extras/LiberationMono.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/LiberationMono.jpg -------------------------------------------------------------------------------- /extras/LiberationSans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/LiberationSans.jpg -------------------------------------------------------------------------------- /extras/LiberationSansNarrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/LiberationSansNarrow.jpg -------------------------------------------------------------------------------- /extras/LiberationSerif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/LiberationSerif.jpg -------------------------------------------------------------------------------- /extras/TimesNewRoman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/extras/TimesNewRoman.jpg -------------------------------------------------------------------------------- /font_ArialBlack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ArialBlack.c -------------------------------------------------------------------------------- /font_ArialBlack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ArialBlack.h -------------------------------------------------------------------------------- /font_ArialBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ArialBoldItalic.c -------------------------------------------------------------------------------- /font_ArialBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ArialBoldItalic.h -------------------------------------------------------------------------------- /font_ArialItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ArialItalic.c -------------------------------------------------------------------------------- /font_ArialItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ArialItalic.h -------------------------------------------------------------------------------- /font_AwesomeF000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF000.c -------------------------------------------------------------------------------- /font_AwesomeF000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF000.h -------------------------------------------------------------------------------- /font_AwesomeF080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF080.c -------------------------------------------------------------------------------- /font_AwesomeF080.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF080.h -------------------------------------------------------------------------------- /font_AwesomeF100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF100.c -------------------------------------------------------------------------------- /font_AwesomeF100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF100.h -------------------------------------------------------------------------------- /font_AwesomeF180.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF180.c -------------------------------------------------------------------------------- /font_AwesomeF180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF180.h -------------------------------------------------------------------------------- /font_AwesomeF200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF200.c -------------------------------------------------------------------------------- /font_AwesomeF200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_AwesomeF200.h -------------------------------------------------------------------------------- /font_ChanceryItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ChanceryItalic.c -------------------------------------------------------------------------------- /font_ChanceryItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ChanceryItalic.h -------------------------------------------------------------------------------- /font_ComicSansMS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ComicSansMS.c -------------------------------------------------------------------------------- /font_ComicSansMS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ComicSansMS.h -------------------------------------------------------------------------------- /font_ComicSansMSBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ComicSansMSBold.c -------------------------------------------------------------------------------- /font_ComicSansMSBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_ComicSansMSBold.h -------------------------------------------------------------------------------- /font_CourierNew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNew.c -------------------------------------------------------------------------------- /font_CourierNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNew.h -------------------------------------------------------------------------------- /font_CourierNewBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNewBold.c -------------------------------------------------------------------------------- /font_CourierNewBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNewBold.h -------------------------------------------------------------------------------- /font_CourierNewBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNewBoldItalic.c -------------------------------------------------------------------------------- /font_CourierNewBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNewBoldItalic.h -------------------------------------------------------------------------------- /font_CourierNewItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNewItalic.c -------------------------------------------------------------------------------- /font_CourierNewItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_CourierNewItalic.h -------------------------------------------------------------------------------- /font_Crystal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Crystal.c -------------------------------------------------------------------------------- /font_Crystal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Crystal.h -------------------------------------------------------------------------------- /font_Crystal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Crystal.txt -------------------------------------------------------------------------------- /font_Droid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Droid.txt -------------------------------------------------------------------------------- /font_DroidSans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSans.c -------------------------------------------------------------------------------- /font_DroidSans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSans.h -------------------------------------------------------------------------------- /font_DroidSansMono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSansMono.c -------------------------------------------------------------------------------- /font_DroidSansMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSansMono.h -------------------------------------------------------------------------------- /font_DroidSans_Bold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSans_Bold.c -------------------------------------------------------------------------------- /font_DroidSans_Bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSans_Bold.h -------------------------------------------------------------------------------- /font_DroidSerif_Bold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_Bold.c -------------------------------------------------------------------------------- /font_DroidSerif_Bold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_Bold.h -------------------------------------------------------------------------------- /font_DroidSerif_BoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_BoldItalic.c -------------------------------------------------------------------------------- /font_DroidSerif_BoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_BoldItalic.h -------------------------------------------------------------------------------- /font_DroidSerif_Italic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_Italic.c -------------------------------------------------------------------------------- /font_DroidSerif_Italic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_Italic.h -------------------------------------------------------------------------------- /font_DroidSerif_Regular.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_Regular.c -------------------------------------------------------------------------------- /font_DroidSerif_Regular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_DroidSerif_Regular.h -------------------------------------------------------------------------------- /font_Georgia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Georgia.c -------------------------------------------------------------------------------- /font_Georgia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Georgia.h -------------------------------------------------------------------------------- /font_GeorgiaBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_GeorgiaBold.c -------------------------------------------------------------------------------- /font_GeorgiaBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_GeorgiaBold.h -------------------------------------------------------------------------------- /font_GeorgiaBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_GeorgiaBoldItalic.c -------------------------------------------------------------------------------- /font_GeorgiaBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_GeorgiaBoldItalic.h -------------------------------------------------------------------------------- /font_GeorgiaItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_GeorgiaItalic.c -------------------------------------------------------------------------------- /font_GeorgiaItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_GeorgiaItalic.h -------------------------------------------------------------------------------- /font_Impact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Impact.c -------------------------------------------------------------------------------- /font_Impact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Impact.h -------------------------------------------------------------------------------- /font_LiberationMono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMono.c -------------------------------------------------------------------------------- /font_LiberationMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMono.h -------------------------------------------------------------------------------- /font_LiberationMonoBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMonoBold.c -------------------------------------------------------------------------------- /font_LiberationMonoBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMonoBold.h -------------------------------------------------------------------------------- /font_LiberationMonoBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMonoBoldItalic.c -------------------------------------------------------------------------------- /font_LiberationMonoBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMonoBoldItalic.h -------------------------------------------------------------------------------- /font_LiberationMonoItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMonoItalic.c -------------------------------------------------------------------------------- /font_LiberationMonoItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationMonoItalic.h -------------------------------------------------------------------------------- /font_LiberationSans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSans.c -------------------------------------------------------------------------------- /font_LiberationSans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSans.h -------------------------------------------------------------------------------- /font_LiberationSansBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansBold.c -------------------------------------------------------------------------------- /font_LiberationSansBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansBold.h -------------------------------------------------------------------------------- /font_LiberationSansBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansBoldItalic.c -------------------------------------------------------------------------------- /font_LiberationSansBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansBoldItalic.h -------------------------------------------------------------------------------- /font_LiberationSansItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansItalic.c -------------------------------------------------------------------------------- /font_LiberationSansItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansItalic.h -------------------------------------------------------------------------------- /font_LiberationSansNarrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrow.c -------------------------------------------------------------------------------- /font_LiberationSansNarrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrow.h -------------------------------------------------------------------------------- /font_LiberationSansNarrowBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrowBold.c -------------------------------------------------------------------------------- /font_LiberationSansNarrowBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrowBold.h -------------------------------------------------------------------------------- /font_LiberationSansNarrowBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrowBoldItalic.c -------------------------------------------------------------------------------- /font_LiberationSansNarrowBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrowBoldItalic.h -------------------------------------------------------------------------------- /font_LiberationSansNarrowItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrowItalic.c -------------------------------------------------------------------------------- /font_LiberationSansNarrowItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSansNarrowItalic.h -------------------------------------------------------------------------------- /font_LiberationSerif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerif.c -------------------------------------------------------------------------------- /font_LiberationSerif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerif.h -------------------------------------------------------------------------------- /font_LiberationSerifBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerifBold.c -------------------------------------------------------------------------------- /font_LiberationSerifBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerifBold.h -------------------------------------------------------------------------------- /font_LiberationSerifBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerifBoldItalic.c -------------------------------------------------------------------------------- /font_LiberationSerifBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerifBoldItalic.h -------------------------------------------------------------------------------- /font_LiberationSerifItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerifItalic.c -------------------------------------------------------------------------------- /font_LiberationSerifItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_LiberationSerifItalic.h -------------------------------------------------------------------------------- /font_Logisoso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Logisoso.c -------------------------------------------------------------------------------- /font_Logisoso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Logisoso.h -------------------------------------------------------------------------------- /font_Logisoso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Logisoso.txt -------------------------------------------------------------------------------- /font_Michroma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Michroma.c -------------------------------------------------------------------------------- /font_Michroma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Michroma.h -------------------------------------------------------------------------------- /font_Michroma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Michroma.txt -------------------------------------------------------------------------------- /font_Nunito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Nunito.c -------------------------------------------------------------------------------- /font_Nunito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_Nunito.h -------------------------------------------------------------------------------- /font_NunitoBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_NunitoBold.c -------------------------------------------------------------------------------- /font_NunitoBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_NunitoBold.h -------------------------------------------------------------------------------- /font_NunitoLight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_NunitoLight.c -------------------------------------------------------------------------------- /font_NunitoLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_NunitoLight.h -------------------------------------------------------------------------------- /font_NunitoLight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_NunitoLight.txt -------------------------------------------------------------------------------- /font_TimesNewRoman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRoman.c -------------------------------------------------------------------------------- /font_TimesNewRoman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRoman.h -------------------------------------------------------------------------------- /font_TimesNewRomanBold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRomanBold.c -------------------------------------------------------------------------------- /font_TimesNewRomanBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRomanBold.h -------------------------------------------------------------------------------- /font_TimesNewRomanBoldItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRomanBoldItalic.c -------------------------------------------------------------------------------- /font_TimesNewRomanBoldItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRomanBoldItalic.h -------------------------------------------------------------------------------- /font_TimesNewRomanItalic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRomanItalic.c -------------------------------------------------------------------------------- /font_TimesNewRomanItalic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/font_TimesNewRomanItalic.h -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulStoffregen/ILI9341_fonts/HEAD/library.json --------------------------------------------------------------------------------