2019-09-08 00:14:36 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the "bluetoothheater" distribution
|
|
|
|
* (https://gitlab.com/mrjones.id.au/bluetoothheater)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Ray Jones <ray@mrjones.id.au>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-12-16 07:39:23 +00:00
|
|
|
#include "FontTypes.h"
|
|
|
|
|
|
|
|
// Font data for Arial 8pt
|
|
|
|
extern const uint8_t PROGMEM arial_8ptBitmaps [];
|
|
|
|
extern const FONT_INFO arial_8ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_8ptDescriptors[];
|
|
|
|
|
|
|
|
// Font data for Arial 7pt
|
|
|
|
extern const uint8_t PROGMEM arial_7ptBitmaps [];
|
|
|
|
extern const FONT_INFO arial_7ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_7ptDescriptors[];
|
|
|
|
|
2019-07-27 14:28:39 +00:00
|
|
|
// Font data for Arial 8pt Bold
|
|
|
|
extern const uint8_t PROGMEM arial_8ptBoldBitmaps [];
|
|
|
|
extern const FONT_INFO arial_8ptBoldFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_8ptBoldDescriptors[];
|
|
|
|
|
|
|
|
// Font data for Arial 12pt
|
|
|
|
extern const uint8_t PROGMEM arial_12ptBitmaps [];
|
|
|
|
extern const FONT_INFO arial_12ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_12ptDescriptors[];
|
|
|
|
|
|
|
|
// Font data for Arial Black 12pt
|
|
|
|
extern const uint8_t PROGMEM arialBlack_12ptBitmaps [];
|
|
|
|
extern const FONT_INFO arialBlack_12ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arialBlack_12ptDescriptors[];
|
|
|
|
|