Clone repo

This commit is contained in:
2026-08-20 23:46:59 +04:00
commit e4343d4c5f
4800 changed files with 52828 additions and 0 deletions
+63
View File
@@ -0,0 +1,63 @@
[tocstart]: # (toc start)
[tocend]: # (toc end)
![https://raw.githubusercontent.com/wiki/olikraus/u8g2/img/uc1701_dogs102_uno_board_320.jpg](https://raw.githubusercontent.com/wiki/olikraus/u8g2/img/uc1701_dogs102_uno_board_320.jpg)
U8g2 is a monochrome graphics library for embedded devices.
* Supported Display Controller: SSD1305, SSD1306, SSD1309, SSD1316, SSD1322, SSD1325, SSD1327, SSD1329, SSD1606, SSD1607, SH1106, SH1107, SH1108, SH1122, T6963, RA8835, LC7981, PCD8544, PCF8812, HX1230, UC1601, UC1604, UC1608, UC1610, UC1611, UC1617, UC1701, ST7511, ST7528, ST7565, ST7567, ST7571, ST7586, ST7588, ST75256, ST75320, NT7534, ST7920, IST3020, IST7920, LD7032, KS0108, KS0713, SED1520, SBN1661, IL3820, MAX7219 (see [here](u8g2setupcpp) for a full list)
* The Arduino library U8g2 can be installed from the library manager of the Arduino IDE.
U8g2 also includes U8x8 library. Features for U8g2 and U8x8 are:
* U8g2
* Includes all graphics procedures (line/box/circle draw).
* Supports many fonts. (Almost) no restriction on the font height.
* Requires some memory in the microcontroller to render the display.
* U8x8
* Text output only (character) device.
* Only fonts allowed with fixed size per character (8x8 pixel).
* Writes directly to the display. No buffer in the microcontroller required.
There is one more class/sub-library "U8log", which emulates an output terminal
(like Arduino serial monitor): [U8log Reference Manual](u8logreference)
Overview
* [Gallery](gallery)
* [How to install U8g2](u8g2install)
* [Introduction to U8g2](setup_tutorial)
* [U8g vs. U8g2 (with code porting guide)](u8gvsu8g2)
* [Supported Arduino Boards](boardlist)
* [FAQ](https://github.com/olikraus/u8g2/blob/master/doc/faq.txt)
Code Reference
* [U8g2 C++/Arduino Setup](u8g2setupcpp)
* [U8g2 C Setup](u8g2setupc)
* [U8x8 C++/Arduino Setup](u8x8setupcpp)
* [U8x8 C Setup](u8x8setupc)
* [U8g2 Reference Manual](u8g2reference)
* [U8x8 Reference Manual](u8x8reference)
* [U8log Reference Manual](u8logreference)
* [MUI (Minimal User Interface) User Manual](muimanual)
* [MUI (Minimal User Interface) Reference](muiref)
Font Reference
* [U8g2 and U8x8 Font Groups](fntgrp)
* [Icon and Symbol Fonts](fnticons)
* [All U8g2 Fonts](fntlistall)
* [Monospace U8g2 Fonts](fntlistmono)
* [All U8x8 Fonts](fntlist8x8)
* [All U8g2 Fonts (PDF)](https://github.com/olikraus/u8g2/blob/master/doc/u8g2fntlistall.pdf) (might not be up to date, see [here](fntlistall) for the latest version.)
Other
* [U8g2 Memory Optimization and Feature Selection](u8g2optimization)
* [Porting to new MCR platform](Porting-to-new-MCU-platform)
* [U8g2 Developer Information](internal)
* [U8g2 Font Format](u8g2fontformat)
* [Windows Font Editor Fony 1.4.7](https://github.com/olikraus/u8g2/blob/master/tools/font/fony)
+511
View File
@@ -0,0 +1,511 @@
[tocstart]: # (toc start)
* [Introduction](#introduction)
* [The "uC specific" GPIO and Delay callback](#the-uc-specific-gpio-and-delay-callback)
* [Template for the GPIO and Delay callback](#template-for-the-gpio-and-delay-callback)
* [Notes ](#notes-)
* [Communication Callback (e.g. u8x8_byte_hw_i2c)](#communication-callback-eg-u8x8_byte_hw_i2c)
* [Hardware SPI Communication](#hardware-spi-communication)
* [DMA SPI Communication](#dma-spi-communication)
* [Hardware I2C Communication](#hardware-i2c-communication)
* [U8g2 Startup](#u8g2-startup)
* [System specific U8g2 ports](#system-specific-u8g2-ports)
* [Atmel SAM](#atmel-sam)
* [Atmel AVR](#atmel-avr)
* [RISC V](#risc-v)
* [STM32](#stm32)
* [ESP32 ESP-IDF](#esp32-espidf)
* [PSoC4200M/CY8CKIT-044](#psoc4200mcy8ckit044)
* [Raspberry Pi](#raspberry-pi)
* [Arm Linux](#arm-linux)
* [Raspberry Pi Library Package](#raspberry-pi-library-package)
* [RT-Thread](#rtthread)
* [nRF52](#nrf52)
* [RISCV](#riscv)
[tocend]: # (toc end)
# Introduction
In order to port the U8G2 library to another MCU platform you need to provide the functions to interface directly with the MCU hardware so that the U8G2 Hardware Abstraction Layer (HAL) can issue commands etc. to the display controller. There are two interface points for the HAL.
1. The "uC specific" GPIO and Delay callback (the last argument of the setup function)
2. The u8x8 byte communication callback (the second to last argument of the setup function)
These functions are both used as callbacks by the U8G2/U8X8 library. They are setup when you call the first initialization function e.g.
`u8x8_Setup(&u8x8, u8x8_d_ssd1306_128x64_noname, u8x8_cad_ssd13xx_i2c, u8x8_byte_hw_i2c, psoc_gpio_and_delay_cb);`
Writing a u8x8 byte communication callback is only required, if you want to use exisiting uC communication interfaces (I2C, SPI, etc). Several "bitbanging" communication callback procedures are already available (see below).
Important: U8g2 defaults to 8 bit mode, which means that the display size is limited to 240x240 pixel.
Activate 16 bit mode for larger displays (see https://github.com/olikraus/u8g2/blob/master/doc/faq.txt).
# The "uC specific" GPIO and Delay callback
The "uC specific" GPIO and Delay callback function (in fact all of the HAL function) function must conform with the function prototype:
`typedef uint8_t (*u8x8_msg_cb)(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);`
This function is used to set and reset GPIOs (in the case if software implemented interfaces) e.g. a software I2C, SPI, 8080 or 6800 interface.
In addition this function is used to implement busy-wait delays for pin timing.
This function takes a "msg" which is one of many #defines found in u8x8.h that are of the form "U8X8_MSG_GPIO" or "U8X8_DELAY" and then acts on that message
using a c-style argc/argv interface. In this specific case those are called "arg_int" and "arg_ptr".
There are three classes of messages sent by the HAL.
1. **Delay messages** of the form "U8X8_MSG_DELAY_". These messages are used to provide delay for the software implementation of I2C, SPI etc.
In order for the software (aka. bit-banged) interfaces to work you need to implement the MCU specific busy-wait loop to provide a correct amount of delay.
For the example implementation I used the Cypress PSoC specific delay functions of the form CyDelay*
2. **GPIO messages** of the form "U8X*_MSG_GPIO". These messages are used to write 1s and 0s to the GPIOs which are being used to interface to the device. i.e. the SCL/SDA or Reset or CS etc.
For the example implementation I used the Cypress pin write functions which all take the form of "pinname_Write()".
3. **GPIO menu pins** are used to get the state of an input pin. These messages are only required for the build in menu function and can be ignored, if the U8G2/U8X8 menu functions are not used.
## Template for the GPIO and Delay callback
```
uint8_t u8x8_gpio_and_delay_template(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
{
switch(msg)
{
case U8X8_MSG_GPIO_AND_DELAY_INIT: // called once during init phase of u8g2/u8x8
break; // can be used to setup pins
case U8X8_MSG_DELAY_NANO: // delay arg_int * 1 nano second
break;
case U8X8_MSG_DELAY_100NANO: // delay arg_int * 100 nano seconds
break;
case U8X8_MSG_DELAY_10MICRO: // delay arg_int * 10 micro seconds
break;
case U8X8_MSG_DELAY_MILLI: // delay arg_int * 1 milli second
break;
case U8X8_MSG_DELAY_I2C: // arg_int is the I2C speed in 100KHz, e.g. 4 = 400 KHz
break; // arg_int=1: delay by 5us, arg_int = 4: delay by 1.25us
case U8X8_MSG_GPIO_D0: // D0 or SPI clock pin: Output level in arg_int
//case U8X8_MSG_GPIO_SPI_CLOCK:
break;
case U8X8_MSG_GPIO_D1: // D1 or SPI data pin: Output level in arg_int
//case U8X8_MSG_GPIO_SPI_DATA:
break;
case U8X8_MSG_GPIO_D2: // D2 pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_D3: // D3 pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_D4: // D4 pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_D5: // D5 pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_D6: // D6 pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_D7: // D7 pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_E: // E/WR pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_CS: // CS (chip select) pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_DC: // DC (data/cmd, A0, register select) pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_RESET: // Reset pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_CS1: // CS1 (chip select) pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_CS2: // CS2 (chip select) pin: Output level in arg_int
break;
case U8X8_MSG_GPIO_I2C_CLOCK: // arg_int=0: Output low at I2C clock pin
break; // arg_int=1: Input dir with pullup high for I2C clock pin
case U8X8_MSG_GPIO_I2C_DATA: // arg_int=0: Output low at I2C data pin
break; // arg_int=1: Input dir with pullup high for I2C data pin
case U8X8_MSG_GPIO_MENU_SELECT:
u8x8_SetGPIOResult(u8x8, /* get menu select pin state */ 0);
break;
case U8X8_MSG_GPIO_MENU_NEXT:
u8x8_SetGPIOResult(u8x8, /* get menu next pin state */ 0);
break;
case U8X8_MSG_GPIO_MENU_PREV:
u8x8_SetGPIOResult(u8x8, /* get menu prev pin state */ 0);
break;
case U8X8_MSG_GPIO_MENU_HOME:
u8x8_SetGPIOResult(u8x8, /* get menu home pin state */ 0);
break;
default:
u8x8_SetGPIOResult(u8x8, 1); // default return value
break;
}
return 1;
}
```
## Notes
The return value of the GPIO and Delay callback should be 1 (true) for successful handling of the message.
U8X8_MSG_GPIO_SPI_CLOCK is an alias for U8X8_MSG_GPIO_D0 and U8X8_MSG_GPIO_SPI_DATA is an alias for U8X8_MSG_GPIO_D1.
Not all messages are required. If a pin is not connected to your hardware, then the message can be ignored (the case
can be removed from the code).
This is also true, if there is a special byte communication callback in which the GPIO is controlled by a uC communicaton subsystem (I2C, SPI).
Most messages just require an action without return value. For the menu messages, the level of the input pin has to be provided via the `u8x8_SetGPIOResult` function.
The second argument should be the level at the input pin.
The I2C message also do not poll any state from their pins: The build-in I2C procedures ignore the ACK signal from the I2C device.
# Communication Callback (e.g. u8x8_byte_hw_i2c)
In order to interface to the communication port of the display controller you need to have a byte orientated interface i.e. SPI, I2C, etc. This interface may either be implemented as a bit-banged software interface or using the MCU specific hardware. Several software bit-banged interface are provided as part of the U8X8 library in u8x8_byte.c:
| Byte Procedure | Description |
|---|---|
| u8x8_byte_4wire_sw_spi | Standard 8-bit SPI communication with "four pins" (SCK, MOSI, DC, CS) |
| u8x8_byte_3wire_sw_spi | 9-bit communication with "three pins" (SCK, MOSI, CS) |
| u8x8_byte_8bit_6800mode | Parallel interface, 6800 format |
| u8x8_byte_8bit_8080mode | Parallel interface, 8080 format |
| u8x8_byte_sw_i2c | Two wire, I2C communication |
| u8x8_byte_ks0108 | Special interface for KS0108 controller |
The above functions use the uC specific gpio and delay functions defined by you.
If you want to use the MCU specific hardware for these communication interfaces you can create your own function. This function must conform to the prototype:
`typedef uint8_t (*u8x8_msg_cb)(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr);`
The HW interface function needs to handle message from the rest of the system. The messages that you need to implement are:
| Message | Description |
|---|---|
| U8X8_MSG_BYTE_INIT | Send once during the init phase of the display. |
| U8X8_MSG_BYTE_SET_DC | Set the level of the data/command pin. `arg_int` contains the expected output level. Use `u8x8_gpio_SetDC(u8x8, arg_int)` to send a message to the GPIO procedure. |
| U8X8_MSG_BYTE_START_TRANSFER | Set the chip select line here. `u8x8->display_info->chip_enable_level` contains the expected level. Use `u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_enable_level)` to call the GPIO procedure. |
| U8X8_MSG_BYTE_SEND | Send one or more bytes, located at `arg_ptr`, `arg_int` contains the number of bytes. |
| U8X8_MSG_BYTE_END_TRANSFER | Unselect the device. Use the CS level from here: `u8x8->display_info->chip_disable_level`. |
## Hardware SPI Communication
The following code lists a typical SPI implementation. The messages are translated
to calls to the Arduino SPI library.
``` C++
extern "C" uint8_t u8x8_byte_arduino_hw_spi(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr) {
uint8_t *data;
uint8_t internal_spi_mode;
switch(msg) {
case U8X8_MSG_BYTE_SEND:
data = (uint8_t *)arg_ptr;
while( arg_int > 0 ) {
SPI.transfer((uint8_t)*data);
data++;
arg_int--;
}
break;
case U8X8_MSG_BYTE_INIT:
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_disable_level);
SPI.begin();
break;
case U8X8_MSG_BYTE_SET_DC:
/* Wait for SPI transfer completion might be required here */
u8x8_gpio_SetDC(u8x8, arg_int);
break;
case U8X8_MSG_BYTE_START_TRANSFER:
/* SPI mode has to be mapped to the mode of the current controller, at least Uno, Due, 101 have different SPI_MODEx values */
internal_spi_mode = 0;
switch(u8x8->display_info->spi_mode) {
case 0: internal_spi_mode = SPI_MODE0; break;
case 1: internal_spi_mode = SPI_MODE1; break;
case 2: internal_spi_mode = SPI_MODE2; break;
case 3: internal_spi_mode = SPI_MODE3; break;
}
SPI.beginTransaction(SPISettings(u8x8->display_info->sck_clock_hz, MSBFIRST, internal_spi_mode));
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_enable_level);
u8x8->gpio_and_delay_cb(u8x8, U8X8_MSG_DELAY_NANO, u8x8->display_info->post_chip_enable_wait_ns, NULL);
break;
case U8X8_MSG_BYTE_END_TRANSFER:
/* Wait for SPI transfer completion might be required here */
u8x8->gpio_and_delay_cb(u8x8, U8X8_MSG_DELAY_NANO, u8x8->display_info->pre_chip_disable_wait_ns, NULL);
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_disable_level);
SPI.endTransaction();
break;
default:
return 0;
}
return 1;
}
```
## DMA SPI Communication
"Direct Memory Access" (DMA) is available on many modern uC. DMA can transfer data independently from the uC to a target device.
This sounds good, but the problem with display devices is, that the data is not directly available for transfer:
* Data for the display has to be calculated on the fly
* Extra commands are required to position the data within the RAM of the display controller
* Sometimes the data itself has to be converted for the target device
* Data transfer has to be in sync with the CD (command/data) signal
As a result, this means, that the data argument ("arg_ptr") provided to the "byte" function becomes invalid after leaving the byte function.
The "arg_ptr" can't be used as soruce for any background data transfer.
The following template code shows a solution for this: The data is copied to a backup array, from where DMA takes the soruce data.
``` C++
uint8_t dma_buffer[256]; /* required for DMA transfer */
extern "C" uint8_t u8x8_byte_dma_spi(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr) {
uint16_t i;
switch(msg) {
case U8X8_MSG_BYTE_SEND:
/* wait for DMA completion */
/* ... */
/* create a copy of the input data */
for( i = 0; i < arg_int; i++ )
dma_buffer[i] = ((uint8_t *)arg_ptr)[i];
/* create DMA SPI Transfer for arg_int bytes, located at dma_buffer */
/* ... */
break;
case U8X8_MSG_BYTE_INIT:
/* setup SPI & DMA */
/* ... */
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_disable_level);
break;
case U8X8_MSG_BYTE_SET_DC:
/* Wait for DMA SPI transfer completion */
/* ... */
u8x8_gpio_SetDC(u8x8, arg_int);
break;
case U8X8_MSG_BYTE_START_TRANSFER:
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_enable_level);
u8x8->gpio_and_delay_cb(u8x8, U8X8_MSG_DELAY_NANO, u8x8->display_info->post_chip_enable_wait_ns, NULL);
break;
case U8X8_MSG_BYTE_END_TRANSFER:
/* Wait for DMA SPI transfer completion */
/* ... */
u8x8->gpio_and_delay_cb(u8x8, U8X8_MSG_DELAY_NANO, u8x8->display_info->pre_chip_disable_wait_ns, NULL);
u8x8_gpio_SetCS(u8x8, u8x8->display_info->chip_disable_level);
break;
default:
return 0;
}
return 1;
}
```
In the above template the uC can now continue with the calculation of the next data block, while the transfer of the previous data block is still ongoing.
However some preformance benefit is lost by the required `memcpy` operation.
Overall around 5% speed improvement is possible:
| Constructor | SysClk | Transfer | FPS | BSS (RAM) |
|---|---|---|---|---|
| uc1609_slg19264_f | 2MHz | HW SPI | 4.7 | 1692 |
| uc1609_slg19264_f | 2MHz | DMA SPI | 5.0 | 1948 |
| uc1609_slg19264_1 | 2MHz | HW SPI | 2.6 | 348 |
| uc1609_slg19264_1 | 2MHz | DMA SPI | 2.6 | 604 |
| Constructor | SysClk | Transfer | FPS | BSS (RAM) |
|---|---|---|---|---|
| uc1609_slg19264_f | 32MHz | HW SPI | 73.8 | 1692 |
| uc1609_slg19264_f | 32MHz | DMA SPI | 76.7 | 1948 |
| uc1609_slg19264_1 | 32MHz | HW SPI | 39.6 | 348 |
| uc1609_slg19264_1 | 32MHz | DMA SPI | 40.7 | 604 |
The performance has been measured on a STM32L031 system, full code is available here: https://github.com/olikraus/u8g2/tree/master/sys/arm/stm32l031x4
## Hardware I2C Communication
Hardware abstraction layers for a microcontroller may provide the following
ways to use the I2C subsystem:
1. Start-Send-End Interface, which usually contains three function calls. A popular example is the Arduino Wire library.
2. Transfer Interface, which is one function call for the transfer of the I2C data.
The code below is an example for the Start-Send-End Interface.
It shows the U8g2 implementation for the Arduino Environment.
The following functions will be called:
* `Wire.begin()`: Init the I2C interface.
* `Wire.beginTransmission()`: Provide the I2C address and start the transfer.
* `Wire.write()`: Send some data.
* `Wire.endTransmission()`: Finish I2C communication.
``` C++
uint8_t u8x8_byte_arduino_hw_i2c(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
{
switch(msg)
{
case U8X8_MSG_BYTE_SEND:
Wire.write((uint8_t *)arg_ptr, (int)arg_int);
break;
case U8X8_MSG_BYTE_INIT:
Wire.begin();
break;
case U8X8_MSG_BYTE_SET_DC:
break;
case U8X8_MSG_BYTE_START_TRANSFER:
if ( u8x8->display_info->i2c_bus_clock_100kHz >= 4 )
{
Wire.setClock(400000L);
}
Wire.beginTransmission(u8x8_GetI2CAddress(u8x8)>>1);
break;
case U8X8_MSG_BYTE_END_TRANSFER:
Wire.endTransmission();
break;
default:
return 0;
}
return 1;
}
```
On other systems you may only have one transfer function. Let us assume the
following prototype:
```
void i2c_transfer(uint8_t adr, uint8_t cnt, uint8_t *ptr);
```
* `adr`: I2C address (0..127)
* `cnt`: Number of bytes, which should be sent
* `ptr`: Pointer to a memory area, which contains the values to be sent
The byte callback procedure could look like this:
``` C++
uint8_t u8x8_byte_i2c(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
{
static uint8_t buffer[32]; /* u8g2/u8x8 will never send more than 32 bytes between START_TRANSFER and END_TRANSFER */
static uint8_t buf_idx;
uint8_t *data;
switch(msg)
{
case U8X8_MSG_BYTE_SEND:
data = (uint8_t *)arg_ptr;
while( arg_int > 0 )
{
buffer[buf_idx++] = *data;
data++;
arg_int--;
}
break;
case U8X8_MSG_BYTE_INIT:
/* add your custom code to init i2c subsystem */
break;
case U8X8_MSG_BYTE_SET_DC:
/* ignored for i2c */
break;
case U8X8_MSG_BYTE_START_TRANSFER:
buf_idx = 0;
break;
case U8X8_MSG_BYTE_END_TRANSFER:
i2c_transfer(u8x8_GetI2CAddress(u8x8) >> 1, buf_idx, buffer);
break;
default:
return 0;
}
return 1;
}
```
# U8g2 Startup
The startup sequence for U8g2 with plain C code is described
[here](https://github.com/olikraus/u8g2/wiki/u8g2setupc#introduction).
A complete example how to use your custom functions within Arduino Framework is available with
the code for the [I2C Parallel Interface Board
(I2CLCDBoard)](https://github.com/olikraus/u8g2/tree/master/sys/arduino/u8g2_page_buffer/I2CLCDBoard).
# System specific U8g2 ports
The following section links/notes to target specific ports. It is not guaranteed that the information below
is complete, but you may find some additional hints.
## Atmel SAM
Discussion: https://github.com/olikraus/u8g2/issues/117
## Atmel AVR
* If you're using [avr-libc](https://www.nongnu.org/avr-libc/) (and avr-binutils, avr-gcc):
* [sys/avr/lib](https://github.com/olikraus/u8g2/tree/master/sys/avr/avr-libc/lib) contains common code that should work on several uCs:
* Busy loop delays.
* Hardware SPI implementation.
* TODO: Hardware SPI.
* Please refer to the [README](https://github.com/olikraus/u8g2/blob/master/sys/avr/avr-libc/README) and the examples there to learn how to use it.
* If you're using Atmel Studio:
* Detailed instructions here https://github.com/olikraus/u8g2/wiki/u8g2as7.
* More recent step by step tutorial on instructables.com: https://www.instructables.com/ST7920-LCD-With-ATmega328-in-Atmel-Studio-Using-SP
* Software SPI example here https://github.com/olikraus/u8g2/issues/175.
* Video Tutorial (I2C SSD1306): https://youtu.be/TO7-yxT6Gvw (see also [issue 1578](https://github.com/olikraus/u8g2/issues/1578))
* Video Tutorial AVR, HW SPI: https://www.youtube.com/watch?v=LapgGY27OD8
* Hardware SPI with ST7920: https://github.com/olikraus/u8g2/issues/1954
## RISC V
U8g2 Example: https://github.com/monte-monte/u8g2-ch32fun-example/ (Issue https://github.com/olikraus/u8g2/issues/2726)
## STM32
Discussions: https://github.com/olikraus/u8g2/issues/179, https://github.com/olikraus/u8g2/issues/840, https://github.com/olikraus/u8g2/issues/2564
External Blog: https://elastic-notes.blogspot.com/2018/10/u8g2-library-usage-with-stm32-mcu.html
U8g2 Template for the STM32F103: https://github.com/nikola-v/u8g2_template_stm32f103c8t6
U8g2 Template for STM32L031@2MHz with SW I2C and HW SPI: https://github.com/olikraus/u8g2/blob/a0eb1bada3cd49b3808915069e661c5b336c0b2a/sys/arm/stm32l031x4/u8g2_test/u8x8cb.c
Video tutorial with good introduction to the callback functions: https://www.youtube.com/watch?v=LvjZdyTcakA
## ESP32 ESP-IDF
Discussion: https://github.com/olikraus/u8g2/issues/187
Code: https://github.com/nkolban/esp32-snippets/tree/master/hardware/displays/U8G2
Video: https://www.youtube.com/watch?v=MipOGBStBbI
## PSoC4200M/CY8CKIT-044
External link: [https://iotexpert.com/2017/02/01/pinball-driving-oled-using-u8g2-library/](https://iotexpert.com/2017/02/01/pinball-driving-oled-using-u8g2-library/)
## Raspberry Pi
Discussion: https://github.com/olikraus/u8g2/issues/457
Code: https://github.com/ribasco/u8g2-rpi-demo
## Arm Linux
Description: Port for general arm linux board such as raspberry pi, orange pi, nano pi, and etc.
Code: https://github.com/wuhanstudio/u8g2-arm-linux
This port for arm-linux is now also avaiable in the upstream repo:
Code: https://github.com/olikraus/u8g2/tree/master/sys/arm-linux
## Raspberry Pi Library Package
Project: [libu8g2arm](https://github.com/antiprism/libu8g2arm)
Description: A simple solution for using U8g2 on the Raspberry Pi. It packages U8g2 and the Arm Linux port to build as a regular C and C++ library.
Code: https://github.com/antiprism/libu8g2arm
## RT-Thread
Code: https://github.com/wuhanstudio/rt-u8g2
This port for RT-Thread is now also avaiable in the upstream repo:
Code: https://github.com/olikraus/u8g2/tree/master/sys/rt-thread
## nRF52
I2C, see here: https://github.com/olikraus/u8g2/issues/1377
SPI, see here: https://github.com/olikraus/u8g2/issues/1381
## RISCV
https://github.com/M-Minhaj/u8g2-with-RISC-V-MCU---CH32V305-7-MCU (https://github.com/olikraus/u8g2/discussions/1963)
+9
View File
@@ -0,0 +1,9 @@
SparkFun Transparent Graphical OLED is OK!
System:Transparent OLED <SSD1309>
Board:RED Board turbo <SAMD21>
Connector:Qwiic<I2C>
Contructor Command:U8G2_SSD1309_128×64_NONAME0_F_HW_I2C u8g2(U8G2_R0,U8X8_PIN_NONE,21,20);
[Demo code RUN](https://imgur.com/gallery/VnoS7io)
+1
View File
@@ -0,0 +1 @@
![https://raw.githubusercontent.com/wiki/olikraus/u8g2/ref/u8g2_logo_transparent_orange.png](https://raw.githubusercontent.com/wiki/olikraus/u8g2/ref/u8g2_logo_transparent_orange.png)
+38
View File
@@ -0,0 +1,38 @@
![https://raw.githubusercontent.com/wiki/olikraus/u8g2/ref/u8g2_logo_transparent_orange.png](https://raw.githubusercontent.com/wiki/olikraus/u8g2/ref/u8g2_logo_transparent_orange.png)
**[Home Page](https://github.com/olikraus/u8g2/wiki)** and **[Gallery](gallery)**
**[Installation (Arduino IDE) ](u8g2install)**
**[Hardware Setup and Wiring](setup_tutorial)**
**[Font Groups](fntgrp)** and **[Icon Fonts](fnticons)**
# U8g2
**[U8g2 Reference Manual](u8g2reference)**
**[U8g2 Fonts](fntlistall)**
**[U8g2 C++/Arduino Setup](u8g2setupcpp)**
**[U8g2 C Setup](u8g2setupc)**
# U8x8
**[U8x8 Reference Manual](u8x8reference)**
**[U8x8 Fonts](fntlist8x8)**
**[U8x8 C++/Arduino Setup](u8x8setupcpp)**
**[U8x8 C Setup](u8x8setupc)**
# MUI
**[MUI User Manual](muimanual)**
**[MUI Reference](muiref)**
+15
View File
@@ -0,0 +1,15 @@
U8g2 is much more portable than U8glib. It is expected, that U8g2 will work with almost all current and upcoming boards. The following table is my personal experience with boards tested by this project. Many other boards may also work.
Basically all boards with a (more or less) up to date Arduino API will be supported by U8g2. I have feedback that the following systems work with U8g2:
* Arduino Zero, Uno, Mega, Due, 101, MKR Zero and probably all other official Arduino boards.
* Feather M0, ESP32 and 32u4
* STM32 based boards supported by the Arduino IDE
* ESP8266 and ESP32 boards supported by the Arduino IDE
* Probably all other boards, which are supported by the Arduino IDE
* Adafruit RP2040 using Arduino Mbed Core works with HW and SW SPI (see Issue #1758)
* Teensy LC works using HW SPI and default MOSI and SCK pins, with Arduino SPI library (note there is an alternate spi4teensy3 library), other Teensy boards working reported on prjc forums
* Teensy 3.5 works using HW SPI and default MOSI, SCK pins, with Arduino SPI and Teensyduino 1.56
+205
View File
@@ -0,0 +1,205 @@
[tocstart]: # (toc start)
* [Font Groups](#font-groups)
* [Language Fonts](#language-fonts)
* [Other](#other)
[tocend]: # (toc end)
# Font Groups
Each U8g2 font is part of a group. Groups are listed below together with a word cloud of the included fonts.
Click on the group name to see all details to the fonts.
## Language Fonts
[Adobe X11](fntgrpadobex11): Serif and sans serf fonts of different types and sizes.
![fntgrpadobex11_word_cloud.png](word_cloud/fntgrpadobex11_word_cloud.png)
[Angel](fntgrpangel)
![fntgrpangel_word_cloud.png](word_cloud/fntgrpangel_word_cloud.png)
[bitfontmaker2](fntgrpbitfontmaker2)
![fntgrpbitfontmaker2_word_cloud.png](word_cloud/fntgrpbitfontmaker2_word_cloud.png)
[ChristinaAntoinetteNeofotistou](fntgrpchristinaneofotistou)
![fntgrpchristinaneofotistou_word_cloud.png](word_cloud/fntgrpchristinaneofotistou_word_cloud.png)
[Codeman38](fntgrpcodeman38): 8x8 pixel fonts.
![fntgrpcodeman38_word_cloud.png](word_cloud/fntgrpcodeman38_word_cloud.png)
[Crox](fntgrpcrox): Cyrillic fonts.
![fntgrpcrox_word_cloud.png](word_cloud/fntgrpcrox_word_cloud.png)
[cu12](fntgrpcu12): ClearlyU Unicode Bitmap Font with support for many languages.
![fntgrpcu12_word_cloud.png](word_cloud/fntgrpcu12_word_cloud.png)
[dafont](fntgrpdafont): Several fonts from dafont.com.
![fntgrpdafont_word_cloud.png](word_cloud/fntgrpdafont_word_cloud.png)
[Efont](fntgrpefont): Japanese Font.
![fntgrpefont_word_cloud.png](word_cloud/fntgrpefont_word_cloud.png)
[Extant](fntgrpextant)
![fntgrpextant_word_cloud.png](word_cloud/fntgrpextant_word_cloud.png)
[Fontstruct](fntgrpfontstruct): Bitmap fonts from fontstruct.com.
![fntgrpfontstruct_word_cloud.png](word_cloud/fntgrpfontstruct_word_cloud.png)
[Free Universal](fntgrpfreeuniversal): "Free Universal" font, different sizes.
![fntgrpfreeuniversal_word_cloud.png](word_cloud/fntgrpfreeuniversal_word_cloud.png)
[Geoff](fntgrpgeoff)
![fntgrpgeoff_word_cloud.png](word_cloud/fntgrpgeoff_word_cloud.png)
[GilesBooth](fntgrpgilesBooth)
![fntgrpgilesbooth_word_cloud.png](word_cloud/fntgrpgilesbooth_word_cloud.png)
[HasanKazan](fntgrphasankazan)
![fntgrphasankazan_word_cloud.png](word_cloud/fntgrphasankazan_word_cloud.png)
[Inconsolata](fntgrpinconsolata): "Inconsolata" font, different sizes.
![fntgrpinconsolata_word_cloud.png](word_cloud/fntgrpinconsolata_word_cloud.png)
[Integrated Mapping Ltd](fntgrpim): Fonts from Integrated Mapping Ltd
![fntgrpim_word_cloud.png](word_cloud/fntgrpim_word_cloud.png)
[JapanYoshi](fntgrpjapanyoshi)
![fntgrpjapanyoshi_word_cloud.png](word_cloud/fntgrpjapanyoshi_word_cloud.png)
[JayWright](fntgrpjaywright)
![fntgrpjaywright_word_cloud.png](word_cloud/fntgrpjaywright_word_cloud.png)
[JosephKnightcom](fntgrpjosephknightcom)
![fntgrpjosephknightcom_word_cloud.png](word_cloud/fntgrpjosephknightcom_word_cloud.png)
[Logisoso](fntgrplogisoso): "Logisoso" font, different sizes.
![fntgrplogisoso_word_cloud.png](word_cloud/fntgrplogisoso_word_cloud.png)
[Lucida](fntgrplucida): "Lucida" font (X11 bitmap font).
![fntgrplucida_word_cloud.png](word_cloud/fntgrplucida_word_cloud.png)
[MistressEllipsis](fntgrpmistressellipsis)
![fntgrpmistressellipsis_word_cloud.png](word_cloud/fntgrpmistressellipsis_word_cloud.png)
[Mystery Quest](fntgrpmysteryquest)
![fntgrpmysteryquest_word_cloud.png](word_cloud/fntgrpmysteryquest_word_cloud.png)
[NBP](fntgrpnbp): Bitmap fonts from font author Nate547.
![fntgrpnbp_word_cloud.png](word_cloud/fntgrpnbp_word_cloud.png)
[Old School PC Fonts](fntgrpoldschoolpcfonts)
![fntgrpoldschoolpcfonts_word_cloud.png](word_cloud/fntgrpoldschoolpcfonts_word_cloud.png)
[Old Standard](fntgrpoldstandard): "Old Standard" font, different sizes.
![fntgrpoldstandard_word_cloud.png](word_cloud/fntgrpoldstandard_word_cloud.png)
[Open Game Art](fntgrpopengameart): 8x8 fonts from opengameart.org.
![fntgrpopengameart_word_cloud.png](word_cloud/fntgrpopengameart_word_cloud.png)
[Pentacom](fntgrppentacom)
![fntgrppentacom_word_cloud.png](word_cloud/fntgrppentacom_word_cloud.png)
[Persian](fntgrppersian): Serveral fonts for Persian languages
![fntgrppersian_word_cloud.png](word_cloud/fntgrppersian_word_cloud.png)
[Profont](fntgrpprofont): Monospace font
![fntgrpprofont_word_cloud.png](word_cloud/fntgrpprofont_word_cloud.png)
[Spleen](fntgrpspleen): Spleen monospace font
![fntgrpspleen_word_cloud.png](word_cloud/fntgrpspleen_word_cloud.png)
[Thai Fonts](fntgrptlwg)
![fntgrptlwg_word_cloud.png](word_cloud/fntgrptlwg_word_cloud.png)
[Tom-Thumb](fntgrptomthumb): Very small monospaced font.
![fntgrptomthumb_word_cloud.png](word_cloud/fntgrptomthumb_word_cloud.png)
[tulamide](fntgrptulamide)
![fntgrptulamide_word_cloud.png](word_cloud/fntgrptulamide_word_cloud.png)
[U8g](fntgrpu8g): Fonts for the u8g and u8g2 projects.
![fntgrpu8g_word_cloud.png](word_cloud/fntgrpu8g_word_cloud.png)
[Unifont](fntgrpunifont): GNU Unifont with support for many languages.
![fntgrpunifont_word_cloud.png](word_cloud/fntgrpunifont_word_cloud.png)
[UW-ttyp0](fntgrpttyp0)
![fntgrpttyp0_word_cloud.png](word_cloud/fntgrpttyp0_word_cloud.png)
[WenQuanYi bitmap fonts](fntgrpwqy): Chinese fonts.
![fntgrpwqy_word_cloud.png](word_cloud/fntgrpwqy_word_cloud.png)
[BoutiqueBitmap fonts](fntgrpbb): Chinese fonts.
![fntgrpbb_word_cloud.png](word_cloud/fntgrpbb_word_cloud.png)
[Gulim fonts](fntgrpgulim): Korean fonts.
![fntgrpgulim_word_cloud.png](word_cloud/fntgrpgulim_word_cloud.png)
[X11](fntgrpx11): Monospace fonts from the X11 project.
![fntgrpx11_word_cloud.png](word_cloud/fntgrpx11_word_cloud.png)
## Other
[Siji Icon Font](fntgrpsiji) : Siji Icon Font
![fntgrpsiji_word_cloud.png](word_cloud/fntgrpsiji_word_cloud.png)
[Open Iconic](fntgrpiconic): Large number of icons with different sizes.
![fntgrpiconic_word_cloud.png](word_cloud/fntgrpiconic_word_cloud.png)
[Streamline](fntgrpstreamline): Icon collection from [https://app.streamlinehq.com/icons/pixel](https://app.streamlinehq.com/icons/pixel).
![fntgrpstreamline_word_cloud.png](word_cloud/fntgrpstreamline_word_cloud.png)
[Academia Sinica](fntgrpacademiasinica)
![fntgrpacademiasinica_word_cloud.png](word_cloud/fntgrpacademiasinica_word_cloud.png)
+83
View File
@@ -0,0 +1,83 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [gb16st](#gb16st)
* [gb24st](#gb24st)
[tocend]: # (toc end)
# Reference
Fonts on this page are part of the [X11 distribution](http://www.x.org/). On a Linux client these fonts are often located here: `/usr/share/fonts/X11/misc`.
X11 font sources are hosted [here](http://cgit.freedesktop.org/xorg/font/).
# Copyright
Copyright information for X11 fonts are available on the [x.org](http://www.x.org/archive/X11R7.5/doc/LICENSE.html) server.
Copyright string from the font file:
Copyright (C) 1988 The Institute of Software, Academia Sinica.
Correspondence Address: P.O.Box 8718, Beijing, China 100080.
Permission to use, copy, modify, and distribute this software and
its documentation for any purpose and without fee is hereby granted,
provided that the above copyright notices appear in all copies and
that both those copyright notices and this permission notice appear
in supporting documentation, and that the name of "the Institute of
Software, Academia Sinica" not be used in advertising or publicity
pertaining to distribution of the software without specific, written
prior permission. The Institute of Software, Academia Sinica,
makes no representations about the suitability of this software
for any purpose. It is provided "as is" without express or
implied warranty.
THE INSTITUTE OF SOFTWARE, ACADEMIA SINICA, DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE INSTITUTE OF
SOFTWARE, ACADEMIA SINICA, BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
The font gb16st is extend with glyphs from the 9x15 X11 font.
The font gb24st is extend with glyphs from the 10x20 X11 font.
U8g2lib font names are:
`u8g2_font_gb16st_t_1`
`u8g2_font_gb16st_t_2`
`u8g2_font_gb16st_t_3`
`u8g2_font_gb24st_t_1`
`u8g2_font_gb24st_t_2`
`u8g2_font_gb24st_t_3`
# Font Details
## gb16st
![fntpic/u8g2_font_gb16st_t_1.png](fntpic/u8g2_font_gb16st_t_1.png)
![fntpic/u8g2_font_gb16st_t_2.png](fntpic/u8g2_font_gb16st_t_2.png)
![fntpic/u8g2_font_gb16st_t_3.png](fntpic/u8g2_font_gb16st_t_3.png)
## gb24st
![fntpic/u8g2_font_gb24st_t_1.png](fntpic/u8g2_font_gb24st_t_1.png)
![fntpic/u8g2_font_gb24st_t_2.png](fntpic/u8g2_font_gb24st_t_2.png)
![fntpic/u8g2_font_gb24st_t_3.png](fntpic/u8g2_font_gb24st_t_3.png)
+380
View File
@@ -0,0 +1,380 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [courB08](#courb08)
* [courB10](#courb10)
* [courB12](#courb12)
* [courB14](#courb14)
* [courB18](#courb18)
* [courB24](#courb24)
* [courR08](#courr08)
* [courR10](#courr10)
* [courR12](#courr12)
* [courR14](#courr14)
* [courR18](#courr18)
* [courR24](#courr24)
* [courB18_2x3](#courb18_2x3)
* [courR18_2x3](#courr18_2x3)
* [courB24_3x4](#courb24_3x4)
* [courR24_3x4](#courr24_3x4)
* [helvB08](#helvb08)
* [helvB10](#helvb10)
* [helvB12](#helvb12)
* [helvB14](#helvb14)
* [helvB18](#helvb18)
* [helvB24](#helvb24)
* [helvR08](#helvr08)
* [helvR10](#helvr10)
* [helvR12](#helvr12)
* [helvR14](#helvr14)
* [helvR18](#helvr18)
* [helvR24](#helvr24)
* [ncenB08](#ncenb08)
* [ncenB10](#ncenb10)
* [ncenB12](#ncenb12)
* [ncenB14](#ncenb14)
* [ncenB18](#ncenb18)
* [ncenB24](#ncenb24)
* [ncenR08](#ncenr08)
* [ncenR10](#ncenr10)
* [ncenR12](#ncenr12)
* [ncenR14](#ncenr14)
* [ncenR18](#ncenr18)
* [ncenR24](#ncenr24)
* [timB08](#timb08)
* [timB10](#timb10)
* [timB12](#timb12)
* [timB14](#timb14)
* [timB18](#timb18)
* [timB24](#timb24)
* [timR08](#timr08)
* [timR10](#timr10)
* [timR12](#timr12)
* [timR14](#timr14)
* [timR18](#timr18)
* [timR24](#timr24)
[tocend]: # (toc end)
**NOTE:** Fonts on this page will be available with v1.09 of u8glib.
# Reference
Fonts on this page are part of the [X11 distribution](http://www.x.org/).
X11 font sources are hosted [here](http://cgit.freedesktop.org/xorg/font/).
# Copyright
Copyright 1984-1989, 1994 Adobe Systems Incorporated.
Copyright 1988, 1994 Digital Equipment Corporation.
Adobe is a trademark of Adobe Systems Incorporated which may be
registered in certain jurisdictions.
Permission to use these trademarks is hereby granted only in
association with the images described in this file.
Permission to use, copy, modify, distribute and sell this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notices appear in all
copies and that both those copyright notices and this permission
notice appear in supporting documentation, and that the names of
Adobe Systems and Digital Equipment Corporation not be used in
advertising or publicity pertaining to distribution of the software
without specific, written prior permission. Adobe Systems and
Digital Equipment Corporation make no representations about the
suitability of this software for any purpose. It is provided "as
is" without express or implied warranty.
Font Copyright Statement: "Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved."
# Font Details
## courB08
![fntpic/u8g2_font_courB08_tf.png](fntpic/u8g2_font_courB08_tf.png)
![fntpic/u8g2_font_courB08_tr.png](fntpic/u8g2_font_courB08_tr.png)
![fntpic/u8g2_font_courB08_tn.png](fntpic/u8g2_font_courB08_tn.png)
## courB10
![fntpic/u8g2_font_courB10_tf.png](fntpic/u8g2_font_courB10_tf.png)
![fntpic/u8g2_font_courB10_tr.png](fntpic/u8g2_font_courB10_tr.png)
![fntpic/u8g2_font_courB10_tn.png](fntpic/u8g2_font_courB10_tn.png)
## courB12
![fntpic/u8g2_font_courB12_tf.png](fntpic/u8g2_font_courB12_tf.png)
![fntpic/u8g2_font_courB12_tr.png](fntpic/u8g2_font_courB12_tr.png)
![fntpic/u8g2_font_courB12_tn.png](fntpic/u8g2_font_courB12_tn.png)
## courB14
![fntpic/u8g2_font_courB14_tf.png](fntpic/u8g2_font_courB14_tf.png)
![fntpic/u8g2_font_courB14_tr.png](fntpic/u8g2_font_courB14_tr.png)
![fntpic/u8g2_font_courB14_tn.png](fntpic/u8g2_font_courB14_tn.png)
## courB18
![fntpic/u8g2_font_courB18_tf.png](fntpic/u8g2_font_courB18_tf.png)
![fntpic/u8g2_font_courB18_tr.png](fntpic/u8g2_font_courB18_tr.png)
![fntpic/u8g2_font_courB18_tn.png](fntpic/u8g2_font_courB18_tn.png)
## courB24
![fntpic/u8g2_font_courB24_tf.png](fntpic/u8g2_font_courB24_tf.png)
![fntpic/u8g2_font_courB24_tr.png](fntpic/u8g2_font_courB24_tr.png)
![fntpic/u8g2_font_courB24_tn.png](fntpic/u8g2_font_courB24_tn.png)
## courR08
![fntpic/u8g2_font_courR08_tf.png](fntpic/u8g2_font_courR08_tf.png)
![fntpic/u8g2_font_courR08_tr.png](fntpic/u8g2_font_courR08_tr.png)
![fntpic/u8g2_font_courR08_tn.png](fntpic/u8g2_font_courR08_tn.png)
## courR10
![fntpic/u8g2_font_courR10_tf.png](fntpic/u8g2_font_courR10_tf.png)
![fntpic/u8g2_font_courR10_tr.png](fntpic/u8g2_font_courR10_tr.png)
![fntpic/u8g2_font_courR10_tn.png](fntpic/u8g2_font_courR10_tn.png)
## courR12
![fntpic/u8g2_font_courR12_tf.png](fntpic/u8g2_font_courR12_tf.png)
![fntpic/u8g2_font_courR12_tr.png](fntpic/u8g2_font_courR12_tr.png)
![fntpic/u8g2_font_courR12_tn.png](fntpic/u8g2_font_courR12_tn.png)
## courR14
![fntpic/u8g2_font_courR14_tf.png](fntpic/u8g2_font_courR14_tf.png)
![fntpic/u8g2_font_courR14_tr.png](fntpic/u8g2_font_courR14_tr.png)
![fntpic/u8g2_font_courR14_tn.png](fntpic/u8g2_font_courR14_tn.png)
## courR18
![fntpic/u8g2_font_courR18_tf.png](fntpic/u8g2_font_courR18_tf.png)
![fntpic/u8g2_font_courR18_tr.png](fntpic/u8g2_font_courR18_tr.png)
![fntpic/u8g2_font_courR18_tn.png](fntpic/u8g2_font_courR18_tn.png)
## courR24
![fntpic/u8g2_font_courR24_tf.png](fntpic/u8g2_font_courR24_tf.png)
![fntpic/u8g2_font_courR24_tr.png](fntpic/u8g2_font_courR24_tr.png)
![fntpic/u8g2_font_courR24_tn.png](fntpic/u8g2_font_courR24_tn.png)
## courB18_2x3
![fntpic/u8x8_font_courB18_2x3_f.png](fntpic/u8x8_font_courB18_2x3_f.png)
![fntpic/u8x8_font_courB18_2x3_r.png](fntpic/u8x8_font_courB18_2x3_r.png)
![fntpic/u8x8_font_courB18_2x3_n.png](fntpic/u8x8_font_courB18_2x3_n.png)
## courR18_2x3
![fntpic/u8x8_font_courR18_2x3_f.png](fntpic/u8x8_font_courR18_2x3_f.png)
![fntpic/u8x8_font_courR18_2x3_r.png](fntpic/u8x8_font_courR18_2x3_r.png)
![fntpic/u8x8_font_courR18_2x3_n.png](fntpic/u8x8_font_courR18_2x3_n.png)
## courB24_3x4
![fntpic/u8x8_font_courB24_3x4_f.png](fntpic/u8x8_font_courB24_3x4_f.png)
![fntpic/u8x8_font_courB24_3x4_r.png](fntpic/u8x8_font_courB24_3x4_r.png)
![fntpic/u8x8_font_courB24_3x4_n.png](fntpic/u8x8_font_courB24_3x4_n.png)
## courR24_3x4
![fntpic/u8x8_font_courR24_3x4_f.png](fntpic/u8x8_font_courR24_3x4_f.png)
![fntpic/u8x8_font_courR24_3x4_r.png](fntpic/u8x8_font_courR24_3x4_r.png)
![fntpic/u8x8_font_courR24_3x4_n.png](fntpic/u8x8_font_courR24_3x4_n.png)
## helvB08
![fntpic/u8g2_font_helvB08_tf.png](fntpic/u8g2_font_helvB08_tf.png)
![fntpic/u8g2_font_helvB08_tr.png](fntpic/u8g2_font_helvB08_tr.png)
![fntpic/u8g2_font_helvB08_tn.png](fntpic/u8g2_font_helvB08_tn.png)
![fntpic/u8g2_font_helvB08_te.png](fntpic/u8g2_font_helvB08_te.png)
## helvB10
![fntpic/u8g2_font_helvB10_tf.png](fntpic/u8g2_font_helvB10_tf.png)
![fntpic/u8g2_font_helvB10_tr.png](fntpic/u8g2_font_helvB10_tr.png)
![fntpic/u8g2_font_helvB10_tn.png](fntpic/u8g2_font_helvB10_tn.png)
![fntpic/u8g2_font_helvB10_te.png](fntpic/u8g2_font_helvB10_te.png)
## helvB12
![fntpic/u8g2_font_helvB12_tf.png](fntpic/u8g2_font_helvB12_tf.png)
![fntpic/u8g2_font_helvB12_tr.png](fntpic/u8g2_font_helvB12_tr.png)
![fntpic/u8g2_font_helvB12_tn.png](fntpic/u8g2_font_helvB12_tn.png)
![fntpic/u8g2_font_helvB12_te.png](fntpic/u8g2_font_helvB12_te.png)
## helvB14
![fntpic/u8g2_font_helvB14_tf.png](fntpic/u8g2_font_helvB14_tf.png)
![fntpic/u8g2_font_helvB14_tr.png](fntpic/u8g2_font_helvB14_tr.png)
![fntpic/u8g2_font_helvB14_tn.png](fntpic/u8g2_font_helvB14_tn.png)
![fntpic/u8g2_font_helvB14_te.png](fntpic/u8g2_font_helvB14_te.png)
## helvB18
![fntpic/u8g2_font_helvB18_tf.png](fntpic/u8g2_font_helvB18_tf.png)
![fntpic/u8g2_font_helvB18_tr.png](fntpic/u8g2_font_helvB18_tr.png)
![fntpic/u8g2_font_helvB18_tn.png](fntpic/u8g2_font_helvB18_tn.png)
![fntpic/u8g2_font_helvB18_te.png](fntpic/u8g2_font_helvB18_te.png)
## helvB24
![fntpic/u8g2_font_helvB24_tf.png](fntpic/u8g2_font_helvB24_tf.png)
![fntpic/u8g2_font_helvB24_tr.png](fntpic/u8g2_font_helvB24_tr.png)
![fntpic/u8g2_font_helvB24_tn.png](fntpic/u8g2_font_helvB24_tn.png)
![fntpic/u8g2_font_helvB24_te.png](fntpic/u8g2_font_helvB24_te.png)
## helvR08
![fntpic/u8g2_font_helvR08_tf.png](fntpic/u8g2_font_helvR08_tf.png)
![fntpic/u8g2_font_helvR08_tr.png](fntpic/u8g2_font_helvR08_tr.png)
![fntpic/u8g2_font_helvR08_tn.png](fntpic/u8g2_font_helvR08_tn.png)
![fntpic/u8g2_font_helvR08_te.png](fntpic/u8g2_font_helvR08_te.png)
## helvR10
![fntpic/u8g2_font_helvR10_tf.png](fntpic/u8g2_font_helvR10_tf.png)
![fntpic/u8g2_font_helvR10_tr.png](fntpic/u8g2_font_helvR10_tr.png)
![fntpic/u8g2_font_helvR10_tn.png](fntpic/u8g2_font_helvR10_tn.png)
![fntpic/u8g2_font_helvR10_te.png](fntpic/u8g2_font_helvR10_te.png)
## helvR12
![fntpic/u8g2_font_helvR12_tf.png](fntpic/u8g2_font_helvR12_tf.png)
![fntpic/u8g2_font_helvR12_tr.png](fntpic/u8g2_font_helvR12_tr.png)
![fntpic/u8g2_font_helvR12_tn.png](fntpic/u8g2_font_helvR12_tn.png)
![fntpic/u8g2_font_helvR12_te.png](fntpic/u8g2_font_helvR12_te.png)
## helvR14
![fntpic/u8g2_font_helvR14_tf.png](fntpic/u8g2_font_helvR14_tf.png)
![fntpic/u8g2_font_helvR14_tr.png](fntpic/u8g2_font_helvR14_tr.png)
![fntpic/u8g2_font_helvR14_tn.png](fntpic/u8g2_font_helvR14_tn.png)
![fntpic/u8g2_font_helvR14_te.png](fntpic/u8g2_font_helvR14_te.png)
## helvR18
![fntpic/u8g2_font_helvR18_tf.png](fntpic/u8g2_font_helvR18_tf.png)
![fntpic/u8g2_font_helvR18_tr.png](fntpic/u8g2_font_helvR18_tr.png)
![fntpic/u8g2_font_helvR18_tn.png](fntpic/u8g2_font_helvR18_tn.png)
![fntpic/u8g2_font_helvR18_te.png](fntpic/u8g2_font_helvR18_te.png)
## helvR24
![fntpic/u8g2_font_helvR24_tf.png](fntpic/u8g2_font_helvR24_tf.png)
![fntpic/u8g2_font_helvR24_tr.png](fntpic/u8g2_font_helvR24_tr.png)
![fntpic/u8g2_font_helvR24_tn.png](fntpic/u8g2_font_helvR24_tn.png)
![fntpic/u8g2_font_helvR24_te.png](fntpic/u8g2_font_helvR24_te.png)
## ncenB08
![fntpic/u8g2_font_ncenB08_tf.png](fntpic/u8g2_font_ncenB08_tf.png)
![fntpic/u8g2_font_ncenB08_tr.png](fntpic/u8g2_font_ncenB08_tr.png)
![fntpic/u8g2_font_ncenB08_tn.png](fntpic/u8g2_font_ncenB08_tn.png)
![fntpic/u8g2_font_ncenB08_te.png](fntpic/u8g2_font_ncenB08_te.png)
## ncenB10
![fntpic/u8g2_font_ncenB10_tf.png](fntpic/u8g2_font_ncenB10_tf.png)
![fntpic/u8g2_font_ncenB10_tr.png](fntpic/u8g2_font_ncenB10_tr.png)
![fntpic/u8g2_font_ncenB10_tn.png](fntpic/u8g2_font_ncenB10_tn.png)
![fntpic/u8g2_font_ncenB10_te.png](fntpic/u8g2_font_ncenB10_te.png)
## ncenB12
![fntpic/u8g2_font_ncenB12_tf.png](fntpic/u8g2_font_ncenB12_tf.png)
![fntpic/u8g2_font_ncenB12_tr.png](fntpic/u8g2_font_ncenB12_tr.png)
![fntpic/u8g2_font_ncenB12_tn.png](fntpic/u8g2_font_ncenB12_tn.png)
![fntpic/u8g2_font_ncenB12_te.png](fntpic/u8g2_font_ncenB12_te.png)
## ncenB14
![fntpic/u8g2_font_ncenB14_tf.png](fntpic/u8g2_font_ncenB14_tf.png)
![fntpic/u8g2_font_ncenB14_tr.png](fntpic/u8g2_font_ncenB14_tr.png)
![fntpic/u8g2_font_ncenB14_tn.png](fntpic/u8g2_font_ncenB14_tn.png)
![fntpic/u8g2_font_ncenB14_te.png](fntpic/u8g2_font_ncenB14_te.png)
## ncenB18
![fntpic/u8g2_font_ncenB18_tf.png](fntpic/u8g2_font_ncenB18_tf.png)
![fntpic/u8g2_font_ncenB18_tr.png](fntpic/u8g2_font_ncenB18_tr.png)
![fntpic/u8g2_font_ncenB18_tn.png](fntpic/u8g2_font_ncenB18_tn.png)
![fntpic/u8g2_font_ncenB18_te.png](fntpic/u8g2_font_ncenB18_te.png)
## ncenB24
![fntpic/u8g2_font_ncenB24_tf.png](fntpic/u8g2_font_ncenB24_tf.png)
![fntpic/u8g2_font_ncenB24_tr.png](fntpic/u8g2_font_ncenB24_tr.png)
![fntpic/u8g2_font_ncenB24_tn.png](fntpic/u8g2_font_ncenB24_tn.png)
![fntpic/u8g2_font_ncenB24_te.png](fntpic/u8g2_font_ncenB24_te.png)
## ncenR08
![fntpic/u8g2_font_ncenR08_tf.png](fntpic/u8g2_font_ncenR08_tf.png)
![fntpic/u8g2_font_ncenR08_tr.png](fntpic/u8g2_font_ncenR08_tr.png)
![fntpic/u8g2_font_ncenR08_tn.png](fntpic/u8g2_font_ncenR08_tn.png)
![fntpic/u8g2_font_ncenR08_te.png](fntpic/u8g2_font_ncenR08_te.png)
## ncenR10
![fntpic/u8g2_font_ncenR10_tf.png](fntpic/u8g2_font_ncenR10_tf.png)
![fntpic/u8g2_font_ncenR10_tr.png](fntpic/u8g2_font_ncenR10_tr.png)
![fntpic/u8g2_font_ncenR10_tn.png](fntpic/u8g2_font_ncenR10_tn.png)
![fntpic/u8g2_font_ncenR10_te.png](fntpic/u8g2_font_ncenR10_te.png)
## ncenR12
![fntpic/u8g2_font_ncenR12_tf.png](fntpic/u8g2_font_ncenR12_tf.png)
![fntpic/u8g2_font_ncenR12_tr.png](fntpic/u8g2_font_ncenR12_tr.png)
![fntpic/u8g2_font_ncenR12_tn.png](fntpic/u8g2_font_ncenR12_tn.png)
![fntpic/u8g2_font_ncenR12_te.png](fntpic/u8g2_font_ncenR12_te.png)
## ncenR14
![fntpic/u8g2_font_ncenR14_tf.png](fntpic/u8g2_font_ncenR14_tf.png)
![fntpic/u8g2_font_ncenR14_tr.png](fntpic/u8g2_font_ncenR14_tr.png)
![fntpic/u8g2_font_ncenR14_tn.png](fntpic/u8g2_font_ncenR14_tn.png)
![fntpic/u8g2_font_ncenR14_te.png](fntpic/u8g2_font_ncenR14_te.png)
## ncenR18
![fntpic/u8g2_font_ncenR18_tf.png](fntpic/u8g2_font_ncenR18_tf.png)
![fntpic/u8g2_font_ncenR18_tr.png](fntpic/u8g2_font_ncenR18_tr.png)
![fntpic/u8g2_font_ncenR18_tn.png](fntpic/u8g2_font_ncenR18_tn.png)
![fntpic/u8g2_font_ncenR18_te.png](fntpic/u8g2_font_ncenR18_te.png)
## ncenR24
![fntpic/u8g2_font_ncenR24_tf.png](fntpic/u8g2_font_ncenR24_tf.png)
![fntpic/u8g2_font_ncenR24_tr.png](fntpic/u8g2_font_ncenR24_tr.png)
![fntpic/u8g2_font_ncenR24_tn.png](fntpic/u8g2_font_ncenR24_tn.png)
![fntpic/u8g2_font_ncenR24_te.png](fntpic/u8g2_font_ncenR24_te.png)
## timB08
![fntpic/u8g2_font_timB08_tf.png](fntpic/u8g2_font_timB08_tf.png)
![fntpic/u8g2_font_timB08_tr.png](fntpic/u8g2_font_timB08_tr.png)
![fntpic/u8g2_font_timB08_tn.png](fntpic/u8g2_font_timB08_tn.png)
## timB10
![fntpic/u8g2_font_timB10_tf.png](fntpic/u8g2_font_timB10_tf.png)
![fntpic/u8g2_font_timB10_tr.png](fntpic/u8g2_font_timB10_tr.png)
![fntpic/u8g2_font_timB10_tn.png](fntpic/u8g2_font_timB10_tn.png)
## timB12
![fntpic/u8g2_font_timB12_tf.png](fntpic/u8g2_font_timB12_tf.png)
![fntpic/u8g2_font_timB12_tr.png](fntpic/u8g2_font_timB12_tr.png)
![fntpic/u8g2_font_timB12_tn.png](fntpic/u8g2_font_timB12_tn.png)
## timB14
![fntpic/u8g2_font_timB14_tf.png](fntpic/u8g2_font_timB14_tf.png)
![fntpic/u8g2_font_timB14_tr.png](fntpic/u8g2_font_timB14_tr.png)
![fntpic/u8g2_font_timB14_tn.png](fntpic/u8g2_font_timB14_tn.png)
## timB18
![fntpic/u8g2_font_timB18_tf.png](fntpic/u8g2_font_timB18_tf.png)
![fntpic/u8g2_font_timB18_tr.png](fntpic/u8g2_font_timB18_tr.png)
![fntpic/u8g2_font_timB18_tn.png](fntpic/u8g2_font_timB18_tn.png)
## timB24
![fntpic/u8g2_font_timB24_tf.png](fntpic/u8g2_font_timB24_tf.png)
![fntpic/u8g2_font_timB24_tr.png](fntpic/u8g2_font_timB24_tr.png)
![fntpic/u8g2_font_timB24_tn.png](fntpic/u8g2_font_timB24_tn.png)
## timR08
![fntpic/u8g2_font_timR08_tf.png](fntpic/u8g2_font_timR08_tf.png)
![fntpic/u8g2_font_timR08_tr.png](fntpic/u8g2_font_timR08_tr.png)
![fntpic/u8g2_font_timR08_tn.png](fntpic/u8g2_font_timR08_tn.png)
## timR10
![fntpic/u8g2_font_timR10_tf.png](fntpic/u8g2_font_timR10_tf.png)
![fntpic/u8g2_font_timR10_tr.png](fntpic/u8g2_font_timR10_tr.png)
![fntpic/u8g2_font_timR10_tn.png](fntpic/u8g2_font_timR10_tn.png)
## timR12
![fntpic/u8g2_font_timR12_tf.png](fntpic/u8g2_font_timR12_tf.png)
![fntpic/u8g2_font_timR12_tr.png](fntpic/u8g2_font_timR12_tr.png)
![fntpic/u8g2_font_timR12_tn.png](fntpic/u8g2_font_timR12_tn.png)
## timR14
![fntpic/u8g2_font_timR14_tf.png](fntpic/u8g2_font_timR14_tf.png)
![fntpic/u8g2_font_timR14_tr.png](fntpic/u8g2_font_timR14_tr.png)
![fntpic/u8g2_font_timR14_tn.png](fntpic/u8g2_font_timR14_tn.png)
## timR18
![fntpic/u8g2_font_timR18_tf.png](fntpic/u8g2_font_timR18_tf.png)
![fntpic/u8g2_font_timR18_tr.png](fntpic/u8g2_font_timR18_tr.png)
![fntpic/u8g2_font_timR18_tn.png](fntpic/u8g2_font_timR18_tn.png)
## timR24
![fntpic/u8g2_font_timR24_tf.png](fntpic/u8g2_font_timR24_tf.png)
![fntpic/u8g2_font_timR24_tr.png](fntpic/u8g2_font_timR24_tr.png)
![fntpic/u8g2_font_timR24_tn.png](fntpic/u8g2_font_timR24_tn.png)
+56
View File
@@ -0,0 +1,56 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [cupcakemetoyourleader](#cupcakemetoyourleader)
* [oldwizard](#oldwizard)
* [squirrel](#squirrel)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "Angel".
Fonts will be available with U8g2 v2.25.
# Copyright
CupcakeMeToYourLeader by Angel
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1047
OldWizard
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=168
Squirrel by Angel
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2229
# Font Pictures
## cupcakemetoyourleader
![fntpic/u8g2_font_cupcakemetoyourleader_tr.png](fntpic/u8g2_font_cupcakemetoyourleader_tr.png)
![fntpic/u8g2_font_cupcakemetoyourleader_tn.png](fntpic/u8g2_font_cupcakemetoyourleader_tn.png)
![fntpic/u8g2_font_cupcakemetoyourleader_tu.png](fntpic/u8g2_font_cupcakemetoyourleader_tu.png)
## oldwizard
![fntpic/u8g2_font_oldwizard_tf.png](fntpic/u8g2_font_oldwizard_tf.png)
![fntpic/u8g2_font_oldwizard_tr.png](fntpic/u8g2_font_oldwizard_tr.png)
![fntpic/u8g2_font_oldwizard_tn.png](fntpic/u8g2_font_oldwizard_tn.png)
![fntpic/u8g2_font_oldwizard_tu.png](fntpic/u8g2_font_oldwizard_tu.png)
## squirrel
![fntpic/u8g2_font_squirrel_tr.png](fntpic/u8g2_font_squirrel_tr.png)
![fntpic/u8g2_font_squirrel_tn.png](fntpic/u8g2_font_squirrel_tn.png)
![fntpic/u8g2_font_squirrel_tu.png](fntpic/u8g2_font_squirrel_tu.png)
+97
View File
@@ -0,0 +1,97 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [boutique_bitmap_7x7](#boutique_bitmap_7x7)
* [boutique_bitmap_9x9](#boutique_bitmap_9x9)
* [boutique_bitmap_9x9_bold](#boutique_bitmap_9x9_bold)
[tocend]: # (toc end)
# Reference
The BoutiqueBitmap fonts are maintained here: https://github.com/scott0107000?tab=repositories
7x7:Version 1.7
9x9: Version 1.9
# Copyright
https://github.com/scott0107000/BoutiqueBitmap7x7/blob/main/OFL.txt
https://github.com/scott0107000/BoutiqueBitmap9x9/blob/main/OFL.txt
```
These fonts are free software.
Unlimited permission is granted to use, copy, and distribute them, with or without modification, either commercially or noncommercially.
THESE FONTS ARE PROVIDED "AS IS" WITHOUT WARRANTY.
```
# Font Details
## boutique_bitmap_7x7
![fntpic/u8g2_font_boutique_bitmap_7x7_tf.png](fntpic/u8g2_font_boutique_bitmap_7x7_tf.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_tr.png](fntpic/u8g2_font_boutique_bitmap_7x7_tr.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_tn.png](fntpic/u8g2_font_boutique_bitmap_7x7_tn.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_te.png](fntpic/u8g2_font_boutique_bitmap_7x7_te.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_all.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_all.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese1.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese1.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese2.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese2.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese3.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese3.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312a.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312a.png)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312b.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312b.png)
## boutique_bitmap_9x9
![fntpic/u8g2_font_boutique_bitmap_9x9_tf.png](fntpic/u8g2_font_boutique_bitmap_9x9_tf.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_tr.png](fntpic/u8g2_font_boutique_bitmap_9x9_tr.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_tn.png](fntpic/u8g2_font_boutique_bitmap_9x9_tn.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_te.png](fntpic/u8g2_font_boutique_bitmap_9x9_te.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_all.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_all.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese1.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese1.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese2.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese2.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese3.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese3.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312a.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312a.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312b.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312b.png)
## boutique_bitmap_9x9_bold
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_tf.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_tf.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_tr.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_tr.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_tn.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_tn.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_te.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_te.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_all.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_all.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese1.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese1.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese2.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese2.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese3.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese3.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312a.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312a.png)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312b.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312b.png)
+587
View File
@@ -0,0 +1,587 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [adventurer](#adventurer)
* [bracketedbabies](#bracketedbabies)
* [frikativ](#frikativ)
* [fancypixels](#fancypixels)
* [heavybottom](#heavybottom)
* [iconquadpix](#iconquadpix)
* [tallpix](#tallpix)
* [botmaker](#botmaker)
* [efraneextracondensed](#efraneextracondensed)
* [minimal3x3](#minimal3x3)
* [3x3basic](#3x3basic)
* [tiny_gk](#tiny_gk)
* [threepix](#threepix)
* [eventhrees](#eventhrees)
* [fourmat](#fourmat)
* [tiny_simon](#tiny_simon)
* [smolfont](#smolfont)
* [tinyunicode](#tinyunicode)
* [micropixel](#micropixel)
* [tinypixie2](#tinypixie2)
* [standardized3x5](#standardized3x5)
* [fivepx](#fivepx)
* [3x5im](#3x5im)
* [wedge](#wedge)
* [kibibyte](#kibibyte)
* [tinyface](#tinyface)
* [smallsimple](#smallsimple)
* [simple1](#simple1)
* [likeminecraft](#likeminecraft)
* [medsans](#medsans)
* [heisans](#heisans)
* [originalsans](#originalsans)
* [minicute](#minicute)
* [scrum](#scrum)
* [stylishcharm](#stylishcharm)
* [sisterserif](#sisterserif)
* [princess](#princess)
* [dystopia](#dystopia)
* [lastapprenticethin](#lastapprenticethin)
* [lastapprenticebold](#lastapprenticebold)
* [bpixel](#bpixel)
* [bpixeldouble](#bpixeldouble)
* [mildras](#mildras)
* [minuteconsole](#minuteconsole)
* [busdisplay11x5](#busdisplay11x5)
* [busdisplay8x5](#busdisplay8x5)
* [sticker100complete](#sticker100complete)
* [doomalpha04](#doomalpha04)
* [greenbloodserif2](#greenbloodserif2)
* [eckpixel](#eckpixel)
* [elispe](#elispe)
* [neuecraft](#neuecraft)
* [8bitclassic](#8bitclassic)
* [littlemissloudonbold](#littlemissloudonbold)
* [commodore64](#commodore64)
* [new3x9pixelfont](#new3x9pixelfont)
* [sonicmania](#sonicmania)
* [bytesize](#bytesize)
* [pixzillav1](#pixzillav1)
* [ciircle13](#ciircle13)
* [pxclassic](#pxclassic)
* [moosenooks](#moosenooks)
* [tallpixelextended](#tallpixelextended)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created with bitfontmaker2. Font authors are mentioned below.
Fonts will be available with U8g2 v2.25.
# Copyright
Adventurer by Brian J Smith
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=195
license : (Creative Commons Attribution)
BracketedBabies by EmbeePyonPon
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=70
license : (Public Domain)
Frikativ by DominikKrotscheck
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=550
license : (Public Domain)
FancyPixels by ClockworkPrince
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3287
license : (Creative Commons NonCommercial)
HEAVYBOTTOM by Madameberry
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2348
license : (Public Domain)
IconQuadPix by ravee de
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=244
license : (Creative Commons NonCommercial)
LastApprenticeBold by AlexanderZaytsev
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1323
license : (Creative Commons NonCommercial)
LastApprenticeThin by AlexanderZaytsev
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1324
license : (Creative Commons NonCommercial)
Tallpix by xbost
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=235
license : (Public Domain)
BOTMAKER by RSKO
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9968
license : (Public Domain)
Efrane Extra Condensed by Anonymous
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10166
license : (Public Domain)
Minimal3x3 by Anonymous
license : (Creative Commons Attribution)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10155
3x3Basic by 8bit-ninja
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4043
tiny by GK (renamed to tiny4)
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10108
ThreePix by Tsutsen
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9693
eventhrees by manumanu
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9842
Fourmat by CeruleanStimuli
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2092
tiny by simon
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9731
smolFont by Racuh
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9959
TinyUnicode by DuffsDevice
license : (Creative Commons Attribution)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=468
MicroPixel by SpicyGame
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9254
TinyPixie2 by Tiny Pixie
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5554
Standardized 3x5 by parzivail
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9866
fivepx by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5504
3x5 by Ife Mena
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=7785
Wedge by Arvin
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3950
Kibibyte by Physics Fighter
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6597
TinyFace by nickbrick
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=7473
SmallSimple by GK
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10152
Simple(1) by GK
license : (Creative Commons Attribution)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10169
LikeMinecraft by GK
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=10128
MedSans by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8938
HeiSans by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9029
Original Sans by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=7464
Minicute by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8792
Scrum by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5304
SisterSerif by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8570
Stylish Charm by Anonymous
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8520
Princess by Kit Sovereign
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1294
Dystopia by KitSovereign
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1293
LastApprenticeThin by Alexander Zaytsev
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1324
LastApprenticeBold by Alexander Zaytsev
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1323
Mildras by samf
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8262
MinuteConsole by Cipheroid
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3370
BusDisplay8x5 by BusDisplayMaker
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3790
BusDisplay11x5 by BusDisplayMaker
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3789
Sticker 100% Complete by iDecay
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2618
DoomAlpha04 by VSJKai0041
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6915
Green Blood Serif 2 by Winston
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5359
Eckpixel by MERIKARE
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5879
Elispe by Kirishaann Vijithkumar
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6161
Neuecraft by Down10
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6206
8bit Classic by Paul Novel
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6076
LittleMissLoudon-Bold by HeavenCastro
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5650
Commodore 64 by Vuce
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5612
NEW3x9PixelFont by MarioMaker54321
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5134
SonicMania by FabulousNinji
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4905
Byte Size by JOEY
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4843
Pixzilla V1 by Odyssey Productions
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=4728
Ciircle13 by lsttrn
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3904
PxClassic by MH
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3715
MooseNooks by bavarianrobotdiner
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2095
TallPixelExtended by ZacharyRy
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1608
# Font Pictures
## adventurer
![fntpic/u8g2_font_adventurer_tf.png](fntpic/u8g2_font_adventurer_tf.png)
![fntpic/u8g2_font_adventurer_tr.png](fntpic/u8g2_font_adventurer_tr.png)
![fntpic/u8g2_font_adventurer_t_all.png](fntpic/u8g2_font_adventurer_t_all.png)
## bracketedbabies
![fntpic/u8g2_font_bracketedbabies_tr.png](fntpic/u8g2_font_bracketedbabies_tr.png)
## frikativ
![fntpic/u8g2_font_frikativ_tf.png](fntpic/u8g2_font_frikativ_tf.png)
![fntpic/u8g2_font_frikativ_tr.png](fntpic/u8g2_font_frikativ_tr.png)
![fntpic/u8g2_font_frikativ_t_all.png](fntpic/u8g2_font_frikativ_t_all.png)
## fancypixels
![fntpic/u8g2_font_fancypixels_tf.png](fntpic/u8g2_font_fancypixels_tf.png)
![fntpic/u8g2_font_fancypixels_tr.png](fntpic/u8g2_font_fancypixels_tr.png)
## heavybottom
![fntpic/u8g2_font_heavybottom_tr.png](fntpic/u8g2_font_heavybottom_tr.png)
## iconquadpix
![fntpic/u8g2_font_iconquadpix_m_all.png](fntpic/u8g2_font_iconquadpix_m_all.png)
## tallpix
![fntpic/u8g2_font_tallpix_tr.png](fntpic/u8g2_font_tallpix_tr.png)
## botmaker
![fntpic/u8g2_font_botmaker_te.png](fntpic/u8g2_font_botmaker_te.png)
## efraneextracondensed
![fntpic/u8g2_font_efraneextracondensed_te.png](fntpic/u8g2_font_efraneextracondensed_te.png)
## minimal3x3
![fntpic/u8g2_font_minimal3x3_tu.png](fntpic/u8g2_font_minimal3x3_tu.png)
## 3x3basic
![fntpic/u8g2_font_3x3basic_tr.png](fntpic/u8g2_font_3x3basic_tr.png)
## tiny_gk
![fntpic/u8g2_font_tiny_gk_tr.png](fntpic/u8g2_font_tiny_gk_tr.png)
## threepix
![fntpic/u8g2_font_threepix_tr.png](fntpic/u8g2_font_threepix_tr.png)
## eventhrees
![fntpic/u8g2_font_eventhrees_tr.png](fntpic/u8g2_font_eventhrees_tr.png)
## fourmat
![fntpic/u8g2_font_fourmat_tf.png](fntpic/u8g2_font_fourmat_tf.png)
![fntpic/u8g2_font_fourmat_tr.png](fntpic/u8g2_font_fourmat_tr.png)
![fntpic/u8g2_font_fourmat_te.png](fntpic/u8g2_font_fourmat_te.png)
## tiny_simon
![fntpic/u8g2_font_tiny_simon_tr.png](fntpic/u8g2_font_tiny_simon_tr.png)
![fntpic/u8g2_font_tiny_simon_mr.png](fntpic/u8g2_font_tiny_simon_mr.png)
## smolfont
![fntpic/u8g2_font_smolfont_tf.png](fntpic/u8g2_font_smolfont_tf.png)
![fntpic/u8g2_font_smolfont_tr.png](fntpic/u8g2_font_smolfont_tr.png)
![fntpic/u8g2_font_smolfont_te.png](fntpic/u8g2_font_smolfont_te.png)
## tinyunicode
![fntpic/u8g2_font_tinyunicode_tf.png](fntpic/u8g2_font_tinyunicode_tf.png)
![fntpic/u8g2_font_tinyunicode_tr.png](fntpic/u8g2_font_tinyunicode_tr.png)
![fntpic/u8g2_font_tinyunicode_te.png](fntpic/u8g2_font_tinyunicode_te.png)
## micropixel
![fntpic/u8g2_font_micropixel_tf.png](fntpic/u8g2_font_micropixel_tf.png)
![fntpic/u8g2_font_micropixel_tr.png](fntpic/u8g2_font_micropixel_tr.png)
![fntpic/u8g2_font_micropixel_te.png](fntpic/u8g2_font_micropixel_te.png)
## tinypixie2
![fntpic/u8g2_font_tinypixie2_tr.png](fntpic/u8g2_font_tinypixie2_tr.png)
## standardized3x5
![fntpic/u8g2_font_standardized3x5_tr.png](fntpic/u8g2_font_standardized3x5_tr.png)
## fivepx
![fntpic/u8g2_font_fivepx_tr.png](fntpic/u8g2_font_fivepx_tr.png)
## 3x5im
![fntpic/u8g2_font_3x5im_tr.png](fntpic/u8g2_font_3x5im_tr.png)
![fntpic/u8g2_font_3x5im_te.png](fntpic/u8g2_font_3x5im_te.png)
![fntpic/u8g2_font_3x5im_mr.png](fntpic/u8g2_font_3x5im_mr.png)
## wedge
![fntpic/u8g2_font_wedge_tr.png](fntpic/u8g2_font_wedge_tr.png)
## kibibyte
![fntpic/u8g2_font_kibibyte_tr.png](fntpic/u8g2_font_kibibyte_tr.png)
![fntpic/u8g2_font_kibibyte_te.png](fntpic/u8g2_font_kibibyte_te.png)
## tinyface
![fntpic/u8g2_font_tinyface_tr.png](fntpic/u8g2_font_tinyface_tr.png)
![fntpic/u8g2_font_tinyface_te.png](fntpic/u8g2_font_tinyface_te.png)
## smallsimple
![fntpic/u8g2_font_smallsimple_tr.png](fntpic/u8g2_font_smallsimple_tr.png)
![fntpic/u8g2_font_smallsimple_te.png](fntpic/u8g2_font_smallsimple_te.png)
## simple1
![fntpic/u8g2_font_simple1_tf.png](fntpic/u8g2_font_simple1_tf.png)
![fntpic/u8g2_font_simple1_tr.png](fntpic/u8g2_font_simple1_tr.png)
![fntpic/u8g2_font_simple1_te.png](fntpic/u8g2_font_simple1_te.png)
## likeminecraft
![fntpic/u8g2_font_likeminecraft_te.png](fntpic/u8g2_font_likeminecraft_te.png)
## medsans
![fntpic/u8g2_font_medsans_tr.png](fntpic/u8g2_font_medsans_tr.png)
## heisans
![fntpic/u8g2_font_heisans_tr.png](fntpic/u8g2_font_heisans_tr.png)
## originalsans
![fntpic/u8g2_font_originalsans_tr.png](fntpic/u8g2_font_originalsans_tr.png)
## minicute
![fntpic/u8g2_font_minicute_tr.png](fntpic/u8g2_font_minicute_tr.png)
![fntpic/u8g2_font_minicute_te.png](fntpic/u8g2_font_minicute_te.png)
## scrum
![fntpic/u8g2_font_scrum_tf.png](fntpic/u8g2_font_scrum_tf.png)
![fntpic/u8g2_font_scrum_tr.png](fntpic/u8g2_font_scrum_tr.png)
![fntpic/u8g2_font_scrum_te.png](fntpic/u8g2_font_scrum_te.png)
## stylishcharm
![fntpic/u8g2_font_stylishcharm_tr.png](fntpic/u8g2_font_stylishcharm_tr.png)
![fntpic/u8g2_font_stylishcharm_te.png](fntpic/u8g2_font_stylishcharm_te.png)
## sisterserif
![fntpic/u8g2_font_sisterserif_tr.png](fntpic/u8g2_font_sisterserif_tr.png)
## princess
![fntpic/u8g2_font_princess_tr.png](fntpic/u8g2_font_princess_tr.png)
![fntpic/u8g2_font_princess_te.png](fntpic/u8g2_font_princess_te.png)
## dystopia
![fntpic/u8g2_font_dystopia_tr.png](fntpic/u8g2_font_dystopia_tr.png)
![fntpic/u8g2_font_dystopia_te.png](fntpic/u8g2_font_dystopia_te.png)
## lastapprenticethin
![fntpic/u8g2_font_lastapprenticethin_tr.png](fntpic/u8g2_font_lastapprenticethin_tr.png)
![fntpic/u8g2_font_lastapprenticethin_te.png](fntpic/u8g2_font_lastapprenticethin_te.png)
## lastapprenticebold
![fntpic/u8g2_font_lastapprenticebold_tr.png](fntpic/u8g2_font_lastapprenticebold_tr.png)
![fntpic/u8g2_font_lastapprenticebold_te.png](fntpic/u8g2_font_lastapprenticebold_te.png)
## bpixel
![fntpic/u8g2_font_bpixel_tr.png](fntpic/u8g2_font_bpixel_tr.png)
![fntpic/u8g2_font_bpixel_te.png](fntpic/u8g2_font_bpixel_te.png)
## bpixeldouble
![fntpic/u8g2_font_bpixeldouble_tr.png](fntpic/u8g2_font_bpixeldouble_tr.png)
## mildras
![fntpic/u8g2_font_mildras_tr.png](fntpic/u8g2_font_mildras_tr.png)
![fntpic/u8g2_font_mildras_te.png](fntpic/u8g2_font_mildras_te.png)
## minuteconsole
![fntpic/u8g2_font_minuteconsole_mr.png](fntpic/u8g2_font_minuteconsole_mr.png)
![fntpic/u8g2_font_minuteconsole_tr.png](fntpic/u8g2_font_minuteconsole_tr.png)
## busdisplay11x5
![fntpic/u8g2_font_busdisplay11x5_tr.png](fntpic/u8g2_font_busdisplay11x5_tr.png)
![fntpic/u8g2_font_busdisplay11x5_te.png](fntpic/u8g2_font_busdisplay11x5_te.png)
## busdisplay8x5
![fntpic/u8g2_font_busdisplay8x5_tr.png](fntpic/u8g2_font_busdisplay8x5_tr.png)
## sticker100complete
![fntpic/u8g2_font_sticker100complete_tr.png](fntpic/u8g2_font_sticker100complete_tr.png)
![fntpic/u8g2_font_sticker100complete_te.png](fntpic/u8g2_font_sticker100complete_te.png)
## doomalpha04
![fntpic/u8g2_font_doomalpha04_tr.png](fntpic/u8g2_font_doomalpha04_tr.png)
![fntpic/u8g2_font_doomalpha04_te.png](fntpic/u8g2_font_doomalpha04_te.png)
## greenbloodserif2
![fntpic/u8g2_font_greenbloodserif2_tr.png](fntpic/u8g2_font_greenbloodserif2_tr.png)
## eckpixel
![fntpic/u8g2_font_eckpixel_tr.png](fntpic/u8g2_font_eckpixel_tr.png)
## elispe
![fntpic/u8g2_font_elispe_tr.png](fntpic/u8g2_font_elispe_tr.png)
## neuecraft
![fntpic/u8g2_font_neuecraft_tr.png](fntpic/u8g2_font_neuecraft_tr.png)
![fntpic/u8g2_font_neuecraft_te.png](fntpic/u8g2_font_neuecraft_te.png)
## 8bitclassic
![fntpic/u8g2_font_8bitclassic_tf.png](fntpic/u8g2_font_8bitclassic_tf.png)
![fntpic/u8g2_font_8bitclassic_tr.png](fntpic/u8g2_font_8bitclassic_tr.png)
![fntpic/u8g2_font_8bitclassic_te.png](fntpic/u8g2_font_8bitclassic_te.png)
## littlemissloudonbold
![fntpic/u8g2_font_littlemissloudonbold_tr.png](fntpic/u8g2_font_littlemissloudonbold_tr.png)
![fntpic/u8g2_font_littlemissloudonbold_te.png](fntpic/u8g2_font_littlemissloudonbold_te.png)
## commodore64
![fntpic/u8g2_font_commodore64_tr.png](fntpic/u8g2_font_commodore64_tr.png)
## new3x9pixelfont
![fntpic/u8g2_font_new3x9pixelfont_tf.png](fntpic/u8g2_font_new3x9pixelfont_tf.png)
![fntpic/u8g2_font_new3x9pixelfont_tr.png](fntpic/u8g2_font_new3x9pixelfont_tr.png)
![fntpic/u8g2_font_new3x9pixelfont_te.png](fntpic/u8g2_font_new3x9pixelfont_te.png)
## sonicmania
![fntpic/u8g2_font_sonicmania_tr.png](fntpic/u8g2_font_sonicmania_tr.png)
![fntpic/u8g2_font_sonicmania_te.png](fntpic/u8g2_font_sonicmania_te.png)
## bytesize
![fntpic/u8g2_font_bytesize_tf.png](fntpic/u8g2_font_bytesize_tf.png)
![fntpic/u8g2_font_bytesize_tr.png](fntpic/u8g2_font_bytesize_tr.png)
![fntpic/u8g2_font_bytesize_te.png](fntpic/u8g2_font_bytesize_te.png)
## pixzillav1
![fntpic/u8g2_font_pixzillav1_tf.png](fntpic/u8g2_font_pixzillav1_tf.png)
![fntpic/u8g2_font_pixzillav1_tr.png](fntpic/u8g2_font_pixzillav1_tr.png)
![fntpic/u8g2_font_pixzillav1_te.png](fntpic/u8g2_font_pixzillav1_te.png)
## ciircle13
![fntpic/u8g2_font_ciircle13_tr.png](fntpic/u8g2_font_ciircle13_tr.png)
## pxclassic
![fntpic/u8g2_font_pxclassic_tf.png](fntpic/u8g2_font_pxclassic_tf.png)
![fntpic/u8g2_font_pxclassic_tr.png](fntpic/u8g2_font_pxclassic_tr.png)
![fntpic/u8g2_font_pxclassic_te.png](fntpic/u8g2_font_pxclassic_te.png)
## moosenooks
![fntpic/u8g2_font_moosenooks_tr.png](fntpic/u8g2_font_moosenooks_tr.png)
## tallpixelextended
![fntpic/u8g2_font_tallpixelextended_tf.png](fntpic/u8g2_font_tallpixelextended_tf.png)
![fntpic/u8g2_font_tallpixelextended_tr.png](fntpic/u8g2_font_tallpixelextended_tr.png)
![fntpic/u8g2_font_tallpixelextended_te.png](fntpic/u8g2_font_tallpixelextended_te.png)
+44
View File
@@ -0,0 +1,44 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [jinxedwizards](#jinxedwizards)
* [lastpriestess](#lastpriestess)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "ChristinaAntoinetteNeofotistou" (https://castpixel.artstation.com/).
Fonts will be available with U8g2 v2.25.
# Copyright
LastPriestess by christinaNeofotistou
license : (Creative Commons Attribution)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=488
R
JinxedWizards by ChristinaAntoinetteNeofotistou
license : (Creative Commons Attribution)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1362
N, U, R
# Font Pictures
## jinxedwizards
![fntpic/u8g2_font_jinxedwizards_tr.png](fntpic/u8g2_font_jinxedwizards_tr.png)
## lastpriestess
![fntpic/u8g2_font_lastpriestess_tr.png](fntpic/u8g2_font_lastpriestess_tr.png)
![fntpic/u8g2_font_lastpriestess_tu.png](fntpic/u8g2_font_lastpriestess_tu.png)
+91
View File
@@ -0,0 +1,91 @@
[tocstart]: # (toc start)
* [Press Start 2P](#press-start-2p)
* [Reference](#reference)
* [Copyright](#copyright)
* [PC Senior](#pc-senior)
* [Reference](#reference)
* [Copyright (from zip file)](#copyright-from-zip-file)
* [Font Pictures](#font-pictures)
* [pressstart2p](#pressstart2p)
* [pcsenior](#pcsenior)
[tocend]: # (toc end)
This page contains fonts from http://zone38.net/font/.
# Press Start 2P
## Reference
http://zone38.net/font/
## Copyright
Copyright (c) 2011, Cody "CodeMan38" Boisclair (cody@zone38.net),
with Reserved Font Name "Press Start".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
http://scripts.sil.org/OFL
# PC Senior
## Reference
http://zone38.net/font/
## Copyright (from zip file)
Thanks for downloading one of codeman38's retro video game fonts, as seen on Memepool, BoingBoing, and all around the blogosphere.
So, you're wondering what the license is for these fonts? Pretty simple; it's based upon that used for Bitstream's Vera font set <http://www.gno
me.org/fonts/>.
Basically, here are the key points summarized, in as little legalese as possible; I hate reading license agreements as much as you probably do:
With one specific exception, you have full permission to bundle these fonts in your own free or commercial projects-- and by projects, I'm refer
ring to not just software but also electronic documents and print publications.
So what's the exception? Simple: you can't re-sell these fonts in a commercial font collection. I've seen too many font CDs for sale in stores t
hat are just a repackaging of thousands of freeware fonts found on the internet, and in my mind, that's quite a bit like highway robbery. Note t
hat this *only* applies to products that are font collections in and of themselves; you may freely bundle these fonts with an operating system,
application program, or the like.
Feel free to modify these fonts and even to release the modified versions, as long as you change the original font names (to ensure consistency
among people with the font installed) and as long as you give credit somewhere in the font file to codeman38 or zone38.net. I may even incorpora
te these changes into a later version of my fonts if you wish to send me the modifed fonts via e-mail.
Also, feel free to mirror these fonts on your own site, as long as you make it reasonably clear that these fonts are not your own work. I'm not
asking for much; linking to zone38.net or even just mentioning the nickname codeman38 should be enough.
Well, that pretty much sums it up... so without further ado, install and enjoy these fonts from the golden age of video games.
# Font Pictures
## pressstart2p
![fntpic/u8g2_font_pressstart2p_8f.png](fntpic/u8g2_font_pressstart2p_8f.png)
![fntpic/u8g2_font_pressstart2p_8r.png](fntpic/u8g2_font_pressstart2p_8r.png)
![fntpic/u8g2_font_pressstart2p_8n.png](fntpic/u8g2_font_pressstart2p_8n.png)
![fntpic/u8g2_font_pressstart2p_8u.png](fntpic/u8g2_font_pressstart2p_8u.png)
![fntpic/u8x8_font_pressstart2p_f.png](fntpic/u8x8_font_pressstart2p_f.png)
![fntpic/u8x8_font_pressstart2p_r.png](fntpic/u8x8_font_pressstart2p_r.png)
![fntpic/u8x8_font_pressstart2p_n.png](fntpic/u8x8_font_pressstart2p_n.png)
![fntpic/u8x8_font_pressstart2p_u.png](fntpic/u8x8_font_pressstart2p_u.png)
## pcsenior
![fntpic/u8g2_font_pcsenior_8f.png](fntpic/u8g2_font_pcsenior_8f.png)
![fntpic/u8g2_font_pcsenior_8r.png](fntpic/u8g2_font_pcsenior_8r.png)
![fntpic/u8g2_font_pcsenior_8n.png](fntpic/u8g2_font_pcsenior_8n.png)
![fntpic/u8g2_font_pcsenior_8u.png](fntpic/u8g2_font_pcsenior_8u.png)
![fntpic/u8x8_font_pcsenior_f.png](fntpic/u8x8_font_pcsenior_f.png)
![fntpic/u8x8_font_pcsenior_r.png](fntpic/u8x8_font_pcsenior_r.png)
![fntpic/u8x8_font_pcsenior_n.png](fntpic/u8x8_font_pcsenior_n.png)
![fntpic/u8x8_font_pcsenior_u.png](fntpic/u8x8_font_pcsenior_u.png)
+211
View File
@@ -0,0 +1,211 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [crox1cb](#crox1cb)
* [crox1c](#crox1c)
* [crox1hb](#crox1hb)
* [crox1h](#crox1h)
* [crox1tb](#crox1tb)
* [crox1t](#crox1t)
* [crox2cb](#crox2cb)
* [crox2c](#crox2c)
* [crox2hb](#crox2hb)
* [crox2h](#crox2h)
* [crox2tb](#crox2tb)
* [crox2t](#crox2t)
* [crox3cb](#crox3cb)
* [crox3c](#crox3c)
* [crox3hb](#crox3hb)
* [crox3h](#crox3h)
* [crox3tb](#crox3tb)
* [crox3t](#crox3t)
* [crox4hb](#crox4hb)
* [crox4h](#crox4h)
* [crox4tb](#crox4tb)
* [crox4t](#crox4t)
* [crox5hb](#crox5hb)
* [crox5h](#crox5h)
* [crox5tb](#crox5tb)
* [crox5t](#crox5t)
[tocend]: # (toc end)
# Reference
`win_crox` has been downloaded from http://www.kovrik.com/sib/russify/x-windows/
(Xrus CP 1251 fonts).
# Copyright
```
Copyright (C) 1990-1991 EWT Consulting
Portions Copyright (C) 1994-1995 Cronyx Ltd.
Modified by Serge Vakulenko, <vak@cronyx.ru>
Encoding changed to CP1251 by Rabinovich Moisei, <moisei@cs.bgu.ac.il>,$
This software may be used, modified, copied, distributed, and sold,
in both source and binary form provided that the copyright
and these terms are retained. Under no circumstances is the author
responsible for the proper functioning of this software, nor does
the author assume any responsibility for damages incurred with its use.
```
# Font Details
## crox1cb
![fntpic/u8g2_font_crox1cb_tf.png](fntpic/u8g2_font_crox1cb_tf.png)
![fntpic/u8g2_font_crox1cb_tr.png](fntpic/u8g2_font_crox1cb_tr.png)
![fntpic/u8g2_font_crox1cb_tn.png](fntpic/u8g2_font_crox1cb_tn.png)
![fntpic/u8g2_font_crox1cb_mf.png](fntpic/u8g2_font_crox1cb_mf.png)
![fntpic/u8g2_font_crox1cb_mr.png](fntpic/u8g2_font_crox1cb_mr.png)
![fntpic/u8g2_font_crox1cb_mn.png](fntpic/u8g2_font_crox1cb_mn.png)
## crox1c
![fntpic/u8g2_font_crox1c_tf.png](fntpic/u8g2_font_crox1c_tf.png)
![fntpic/u8g2_font_crox1c_tr.png](fntpic/u8g2_font_crox1c_tr.png)
![fntpic/u8g2_font_crox1c_tn.png](fntpic/u8g2_font_crox1c_tn.png)
![fntpic/u8g2_font_crox1c_mf.png](fntpic/u8g2_font_crox1c_mf.png)
![fntpic/u8g2_font_crox1c_mr.png](fntpic/u8g2_font_crox1c_mr.png)
![fntpic/u8g2_font_crox1c_mn.png](fntpic/u8g2_font_crox1c_mn.png)
## crox1hb
![fntpic/u8g2_font_crox1hb_tf.png](fntpic/u8g2_font_crox1hb_tf.png)
![fntpic/u8g2_font_crox1hb_tr.png](fntpic/u8g2_font_crox1hb_tr.png)
![fntpic/u8g2_font_crox1hb_tn.png](fntpic/u8g2_font_crox1hb_tn.png)
## crox1h
![fntpic/u8g2_font_crox1h_tf.png](fntpic/u8g2_font_crox1h_tf.png)
![fntpic/u8g2_font_crox1h_tr.png](fntpic/u8g2_font_crox1h_tr.png)
![fntpic/u8g2_font_crox1h_tn.png](fntpic/u8g2_font_crox1h_tn.png)
## crox1tb
![fntpic/u8g2_font_crox1tb_tf.png](fntpic/u8g2_font_crox1tb_tf.png)
![fntpic/u8g2_font_crox1tb_tr.png](fntpic/u8g2_font_crox1tb_tr.png)
![fntpic/u8g2_font_crox1tb_tn.png](fntpic/u8g2_font_crox1tb_tn.png)
## crox1t
![fntpic/u8g2_font_crox1t_tf.png](fntpic/u8g2_font_crox1t_tf.png)
![fntpic/u8g2_font_crox1t_tr.png](fntpic/u8g2_font_crox1t_tr.png)
![fntpic/u8g2_font_crox1t_tn.png](fntpic/u8g2_font_crox1t_tn.png)
## crox2cb
![fntpic/u8g2_font_crox2cb_tf.png](fntpic/u8g2_font_crox2cb_tf.png)
![fntpic/u8g2_font_crox2cb_tr.png](fntpic/u8g2_font_crox2cb_tr.png)
![fntpic/u8g2_font_crox2cb_tn.png](fntpic/u8g2_font_crox2cb_tn.png)
![fntpic/u8g2_font_crox2cb_mf.png](fntpic/u8g2_font_crox2cb_mf.png)
![fntpic/u8g2_font_crox2cb_mr.png](fntpic/u8g2_font_crox2cb_mr.png)
![fntpic/u8g2_font_crox2cb_mn.png](fntpic/u8g2_font_crox2cb_mn.png)
## crox2c
![fntpic/u8g2_font_crox2c_tf.png](fntpic/u8g2_font_crox2c_tf.png)
![fntpic/u8g2_font_crox2c_tr.png](fntpic/u8g2_font_crox2c_tr.png)
![fntpic/u8g2_font_crox2c_tn.png](fntpic/u8g2_font_crox2c_tn.png)
![fntpic/u8g2_font_crox2c_mf.png](fntpic/u8g2_font_crox2c_mf.png)
![fntpic/u8g2_font_crox2c_mr.png](fntpic/u8g2_font_crox2c_mr.png)
![fntpic/u8g2_font_crox2c_mn.png](fntpic/u8g2_font_crox2c_mn.png)
## crox2hb
![fntpic/u8g2_font_crox2hb_tf.png](fntpic/u8g2_font_crox2hb_tf.png)
![fntpic/u8g2_font_crox2hb_tr.png](fntpic/u8g2_font_crox2hb_tr.png)
![fntpic/u8g2_font_crox2hb_tn.png](fntpic/u8g2_font_crox2hb_tn.png)
## crox2h
![fntpic/u8g2_font_crox2h_tf.png](fntpic/u8g2_font_crox2h_tf.png)
![fntpic/u8g2_font_crox2h_tr.png](fntpic/u8g2_font_crox2h_tr.png)
![fntpic/u8g2_font_crox2h_tn.png](fntpic/u8g2_font_crox2h_tn.png)
## crox2tb
![fntpic/u8g2_font_crox2tb_tf.png](fntpic/u8g2_font_crox2tb_tf.png)
![fntpic/u8g2_font_crox2tb_tr.png](fntpic/u8g2_font_crox2tb_tr.png)
![fntpic/u8g2_font_crox2tb_tn.png](fntpic/u8g2_font_crox2tb_tn.png)
## crox2t
![fntpic/u8g2_font_crox2t_tf.png](fntpic/u8g2_font_crox2t_tf.png)
![fntpic/u8g2_font_crox2t_tr.png](fntpic/u8g2_font_crox2t_tr.png)
![fntpic/u8g2_font_crox2t_tn.png](fntpic/u8g2_font_crox2t_tn.png)
## crox3cb
![fntpic/u8g2_font_crox3cb_tf.png](fntpic/u8g2_font_crox3cb_tf.png)
![fntpic/u8g2_font_crox3cb_tr.png](fntpic/u8g2_font_crox3cb_tr.png)
![fntpic/u8g2_font_crox3cb_tn.png](fntpic/u8g2_font_crox3cb_tn.png)
![fntpic/u8g2_font_crox3cb_mf.png](fntpic/u8g2_font_crox3cb_mf.png)
![fntpic/u8g2_font_crox3cb_mr.png](fntpic/u8g2_font_crox3cb_mr.png)
![fntpic/u8g2_font_crox3cb_mn.png](fntpic/u8g2_font_crox3cb_mn.png)
## crox3c
![fntpic/u8g2_font_crox3c_tf.png](fntpic/u8g2_font_crox3c_tf.png)
![fntpic/u8g2_font_crox3c_tr.png](fntpic/u8g2_font_crox3c_tr.png)
![fntpic/u8g2_font_crox3c_tn.png](fntpic/u8g2_font_crox3c_tn.png)
![fntpic/u8g2_font_crox3c_mf.png](fntpic/u8g2_font_crox3c_mf.png)
![fntpic/u8g2_font_crox3c_mr.png](fntpic/u8g2_font_crox3c_mr.png)
![fntpic/u8g2_font_crox3c_mn.png](fntpic/u8g2_font_crox3c_mn.png)
## crox3hb
![fntpic/u8g2_font_crox3hb_tf.png](fntpic/u8g2_font_crox3hb_tf.png)
![fntpic/u8g2_font_crox3hb_tr.png](fntpic/u8g2_font_crox3hb_tr.png)
![fntpic/u8g2_font_crox3hb_tn.png](fntpic/u8g2_font_crox3hb_tn.png)
## crox3h
![fntpic/u8g2_font_crox3h_tf.png](fntpic/u8g2_font_crox3h_tf.png)
![fntpic/u8g2_font_crox3h_tr.png](fntpic/u8g2_font_crox3h_tr.png)
![fntpic/u8g2_font_crox3h_tn.png](fntpic/u8g2_font_crox3h_tn.png)
## crox3tb
![fntpic/u8g2_font_crox3tb_tf.png](fntpic/u8g2_font_crox3tb_tf.png)
![fntpic/u8g2_font_crox3tb_tr.png](fntpic/u8g2_font_crox3tb_tr.png)
![fntpic/u8g2_font_crox3tb_tn.png](fntpic/u8g2_font_crox3tb_tn.png)
## crox3t
![fntpic/u8g2_font_crox3t_tf.png](fntpic/u8g2_font_crox3t_tf.png)
![fntpic/u8g2_font_crox3t_tr.png](fntpic/u8g2_font_crox3t_tr.png)
![fntpic/u8g2_font_crox3t_tn.png](fntpic/u8g2_font_crox3t_tn.png)
## crox4hb
![fntpic/u8g2_font_crox4hb_tf.png](fntpic/u8g2_font_crox4hb_tf.png)
![fntpic/u8g2_font_crox4hb_tr.png](fntpic/u8g2_font_crox4hb_tr.png)
![fntpic/u8g2_font_crox4hb_tn.png](fntpic/u8g2_font_crox4hb_tn.png)
## crox4h
![fntpic/u8g2_font_crox4h_tf.png](fntpic/u8g2_font_crox4h_tf.png)
![fntpic/u8g2_font_crox4h_tr.png](fntpic/u8g2_font_crox4h_tr.png)
![fntpic/u8g2_font_crox4h_tn.png](fntpic/u8g2_font_crox4h_tn.png)
## crox4tb
![fntpic/u8g2_font_crox4tb_tf.png](fntpic/u8g2_font_crox4tb_tf.png)
![fntpic/u8g2_font_crox4tb_tr.png](fntpic/u8g2_font_crox4tb_tr.png)
![fntpic/u8g2_font_crox4tb_tn.png](fntpic/u8g2_font_crox4tb_tn.png)
## crox4t
![fntpic/u8g2_font_crox4t_tf.png](fntpic/u8g2_font_crox4t_tf.png)
![fntpic/u8g2_font_crox4t_tr.png](fntpic/u8g2_font_crox4t_tr.png)
![fntpic/u8g2_font_crox4t_tn.png](fntpic/u8g2_font_crox4t_tn.png)
## crox5hb
![fntpic/u8g2_font_crox5hb_tf.png](fntpic/u8g2_font_crox5hb_tf.png)
![fntpic/u8g2_font_crox5hb_tr.png](fntpic/u8g2_font_crox5hb_tr.png)
![fntpic/u8g2_font_crox5hb_tn.png](fntpic/u8g2_font_crox5hb_tn.png)
## crox5h
![fntpic/u8g2_font_crox5h_tf.png](fntpic/u8g2_font_crox5h_tf.png)
![fntpic/u8g2_font_crox5h_tr.png](fntpic/u8g2_font_crox5h_tr.png)
![fntpic/u8g2_font_crox5h_tn.png](fntpic/u8g2_font_crox5h_tn.png)
## crox5tb
![fntpic/u8g2_font_crox5tb_tf.png](fntpic/u8g2_font_crox5tb_tf.png)
![fntpic/u8g2_font_crox5tb_tr.png](fntpic/u8g2_font_crox5tb_tr.png)
![fntpic/u8g2_font_crox5tb_tn.png](fntpic/u8g2_font_crox5tb_tn.png)
## crox5t
![fntpic/u8g2_font_crox5t_tf.png](fntpic/u8g2_font_crox5t_tf.png)
![fntpic/u8g2_font_crox5t_tr.png](fntpic/u8g2_font_crox5t_tr.png)
![fntpic/u8g2_font_crox5t_tn.png](fntpic/u8g2_font_crox5t_tn.png)
+82
View File
@@ -0,0 +1,82 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [cu12](#cu12)
[tocend]: # (toc end)
# Reference
Name: **cu12**
ClearlyU by M. Leisher
Font download location is [here](http://sofia.nmsu.edu/~mleisher/Software/cu/).
see also: https://gitlab.freedesktop.org/xorg/font/mutt-misc
# Copyright
Font Copyright Statement: (c) 2001 Computing Research Lab, New Mexico State University.
License (from bdf file):
Copyright 2002 Computing Research Labs, New Mexico State University
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB
OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Font Details
## cu12
![fntpic/u8g2_font_cu12_tf.png](fntpic/u8g2_font_cu12_tf.png)
![fntpic/u8g2_font_cu12_tr.png](fntpic/u8g2_font_cu12_tr.png)
![fntpic/u8g2_font_cu12_tn.png](fntpic/u8g2_font_cu12_tn.png)
![fntpic/u8g2_font_cu12_te.png](fntpic/u8g2_font_cu12_te.png)
![fntpic/u8g2_font_cu12_hf.png](fntpic/u8g2_font_cu12_hf.png)
![fntpic/u8g2_font_cu12_hr.png](fntpic/u8g2_font_cu12_hr.png)
![fntpic/u8g2_font_cu12_hn.png](fntpic/u8g2_font_cu12_hn.png)
![fntpic/u8g2_font_cu12_he.png](fntpic/u8g2_font_cu12_he.png)
![fntpic/u8g2_font_cu12_mf.png](fntpic/u8g2_font_cu12_mf.png)
![fntpic/u8g2_font_cu12_mr.png](fntpic/u8g2_font_cu12_mr.png)
![fntpic/u8g2_font_cu12_mn.png](fntpic/u8g2_font_cu12_mn.png)
![fntpic/u8g2_font_cu12_me.png](fntpic/u8g2_font_cu12_me.png)
![fntpic/u8g2_font_cu12_t_symbols.png](fntpic/u8g2_font_cu12_t_symbols.png)
![fntpic/u8g2_font_cu12_h_symbols.png](fntpic/u8g2_font_cu12_h_symbols.png)
![fntpic/u8g2_font_cu12_t_greek.png](fntpic/u8g2_font_cu12_t_greek.png)
![fntpic/u8g2_font_cu12_t_cyrillic.png](fntpic/u8g2_font_cu12_t_cyrillic.png)
![fntpic/u8g2_font_cu12_t_tibetan.png](fntpic/u8g2_font_cu12_t_tibetan.png)
![fntpic/u8g2_font_cu12_t_hebrew.png](fntpic/u8g2_font_cu12_t_hebrew.png)
![fntpic/u8g2_font_cu12_t_arabic.png](fntpic/u8g2_font_cu12_t_arabic.png)
+194
View File
@@ -0,0 +1,194 @@
[tocstart]: # (toc start)
* [Nokia Cellphone (nokiafc22)](#nokia-cellphone-nokiafc22)
* [Reference](#reference)
* [Copyright](#copyright)
* [Author](#author)
* [VCR OSD MONO](#vcr-osd-mono)
* [Reference](#reference)
* [Copyright](#copyright)
* [Author](#author)
* [pixellari](#pixellari)
* [Reference](#reference)
* [Copyright](#copyright)
* [Author](#author)
* [pixelpoiiz](#pixelpoiiz)
* [Reference](#reference)
* [Copyright](#copyright)
* [Author](#author)
* [DigitalDisco](#digitaldisco)
* [Reference](#reference)
* [Copyright](#copyright)
* [pearfont](#pearfont)
* [Reference](#reference)
* [Copyright](#copyright)
* [Author](#author)
* [Font Details](#font-details)
* [nokiafc22](#nokiafc22)
* [VCR_OSD](#vcr_osd)
* [Pixellari](#pixellari)
* [pixelpoiiz](#pixelpoiiz)
* [DigitalDiscoThin](#digitaldiscothin)
* [DigitalDisco](#digitaldisco)
* [pearfont](#pearfont)
[tocend]: # (toc end)
This page contains fonts from http://dafont.com .
# Nokia Cellphone (nokiafc22)
## Reference
Download: https://www.dafont.com/nokia-cellphone.font
## Copyright
This is a free font/file, distribute as you wish to who you wish. Do NOT sell
this font within a CD or any other media; it's not yours and you can't make
money of it. You'd rather ask me first via email, I may probably let you do it
as long as it's for a good cause.
I don't know if the original Nokia font has some copyright which prevents
people from making new fonts based on it. I hope not. Anyways, buy a Nokia,
and I think everything's gonna be alright.
Special thanks on this version go out to Carlos Bêla (www.goldenshower.gs) and
Diogo Kalil (www.sincolor.com.br) for helping me out with the Mac version of
the font. It has been extensively tested to ensure it's as smooth (hint,
kerning, spacing and aliasing-wise) as the pc one is.
## Author
This font was done by Zeh Fernando on Fontlab 4 (www.fontlab.com) on a PC.
# VCR OSD MONO
## Reference
Download: https://www.dafont.com/vcr-osd-mono.font
## Copyright
dafont.com: 100% free
## Author
Riciery Leal
# pixellari
## Reference
Download: https://www.dafont.com/pixellari.font
## Copyright
dafont.com: 100% free
TTF: "ZaccharyDempseyP"
## Author
Zacchary Dempsey-Plante
# pixelpoiiz
## Reference
Download: https://www.dafont.com/pixelpoiiz.font
## Copyright
dafont.com: 100% free
TTF: "(C) poiiz"
## Author
poiiz
# DigitalDisco
## Reference
Download: https://www.dafont.com/digital-disco.font
## Copyright
Copyright: "Public domain / GPL / OFL - 2" according to dafont.com.
Note of the author
Digital Disco by jeti: A groovy, round typeface with chunky '70s charm and an optional thin style.
You are free to use this font for personal or commercial projects, all I ask is that you include credit.
Licensed under CC BY 4.0: https://creativecommons.org/licenses/by/4.0/
More info: https://fontenddev.com/fonts/digital-disco/
# pearfont
## Reference
Download: https://www.dafont.com/pearfont.font
## Copyright
Copyright: "Public domain / GPL / OFL" according to dafont.com.
Note of the author:
A really really tiny font! Originally made for my game Pear Quest. Use at your own risk. Enjoy!
## Author
rubna
# Font Details
## nokiafc22
![fntpic/u8g2_font_nokiafc22_tf.png](fntpic/u8g2_font_nokiafc22_tf.png)
![fntpic/u8g2_font_nokiafc22_tr.png](fntpic/u8g2_font_nokiafc22_tr.png)
![fntpic/u8g2_font_nokiafc22_tn.png](fntpic/u8g2_font_nokiafc22_tn.png)
![fntpic/u8g2_font_nokiafc22_tu.png](fntpic/u8g2_font_nokiafc22_tu.png)
## VCR_OSD
![fntpic/u8g2_font_VCR_OSD_tf.png](fntpic/u8g2_font_VCR_OSD_tf.png)
![fntpic/u8g2_font_VCR_OSD_tr.png](fntpic/u8g2_font_VCR_OSD_tr.png)
![fntpic/u8g2_font_VCR_OSD_tn.png](fntpic/u8g2_font_VCR_OSD_tn.png)
![fntpic/u8g2_font_VCR_OSD_tu.png](fntpic/u8g2_font_VCR_OSD_tu.png)
![fntpic/u8g2_font_VCR_OSD_mf.png](fntpic/u8g2_font_VCR_OSD_mf.png)
![fntpic/u8g2_font_VCR_OSD_mr.png](fntpic/u8g2_font_VCR_OSD_mr.png)
![fntpic/u8g2_font_VCR_OSD_mn.png](fntpic/u8g2_font_VCR_OSD_mn.png)
![fntpic/u8g2_font_VCR_OSD_mu.png](fntpic/u8g2_font_VCR_OSD_mu.png)
## Pixellari
![fntpic/u8g2_font_Pixellari_tf.png](fntpic/u8g2_font_Pixellari_tf.png)
![fntpic/u8g2_font_Pixellari_tr.png](fntpic/u8g2_font_Pixellari_tr.png)
![fntpic/u8g2_font_Pixellari_tn.png](fntpic/u8g2_font_Pixellari_tn.png)
![fntpic/u8g2_font_Pixellari_tu.png](fntpic/u8g2_font_Pixellari_tu.png)
![fntpic/u8g2_font_Pixellari_te.png](fntpic/u8g2_font_Pixellari_te.png)
## pixelpoiiz
![fntpic/u8g2_font_pixelpoiiz_tr.png](fntpic/u8g2_font_pixelpoiiz_tr.png)
## DigitalDiscoThin
![fntpic/u8g2_font_DigitalDiscoThin_tf.png](fntpic/u8g2_font_DigitalDiscoThin_tf.png)
![fntpic/u8g2_font_DigitalDiscoThin_tr.png](fntpic/u8g2_font_DigitalDiscoThin_tr.png)
![fntpic/u8g2_font_DigitalDiscoThin_tn.png](fntpic/u8g2_font_DigitalDiscoThin_tn.png)
![fntpic/u8g2_font_DigitalDiscoThin_tu.png](fntpic/u8g2_font_DigitalDiscoThin_tu.png)
![fntpic/u8g2_font_DigitalDiscoThin_te.png](fntpic/u8g2_font_DigitalDiscoThin_te.png)
## DigitalDisco
![fntpic/u8g2_font_DigitalDisco_tf.png](fntpic/u8g2_font_DigitalDisco_tf.png)
![fntpic/u8g2_font_DigitalDisco_tr.png](fntpic/u8g2_font_DigitalDisco_tr.png)
![fntpic/u8g2_font_DigitalDisco_tn.png](fntpic/u8g2_font_DigitalDisco_tn.png)
![fntpic/u8g2_font_DigitalDisco_tu.png](fntpic/u8g2_font_DigitalDisco_tu.png)
![fntpic/u8g2_font_DigitalDisco_te.png](fntpic/u8g2_font_DigitalDisco_te.png)
## pearfont
![fntpic/u8g2_font_pearfont_tr.png](fntpic/u8g2_font_pearfont_tr.png)
+395
View File
@@ -0,0 +1,395 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Notes ](#notes-)
* [Copyright](#copyright)
* [File README](#file-readme)
* [File README.baekmuk](#file-readmebaekmuk)
* [File Copyright](#file-copyright)
* [File README.naga10](#file-readmenaga10)
* [b10](#b10)
* [b10_b](#b10_b)
* [f10](#f10)
* [f10_b](#f10_b)
* [b12](#b12)
* [b12_b](#b12_b)
* [f12](#f12)
* [f12_b](#f12_b)
* [b16](#b16)
* [b16_b](#b16_b)
* [f16](#f16)
* [f16_b](#f16_b)
[tocend]: # (toc end)
# Reference
Name: **efont project**
Font download location is [here](http://openlab.ring.gr.jp/efont/unicode/).
# Notes
* All fonts are included in two variantes and are selected from [this site](http://www.tonypottier.info/Unicode_And_Japanese_Kanji/Appendix2.html)
* Japanese1: Learning level 1-6
* Japanese2: Learning level 1-7
* Japanese3: Extended version with halfwidth and fullwidth forms.
* 24 pixel font is not included because of the size.
* 14 pixel font is not included because of a problem with the sources (failure of the font build tool chain)
* Only the 10 pixel version on may fit into Arduino Uno Flash ROM
# Copyright
## File README
```
efont-unicode-bdf (The /efont/ Unicode Bitmap Fonts)
/efont/ The Electronic Font Open Laboratory
http://openlab.ring.gr.jp/efont/
Kazuhiko <kazuhiko@ring.gr.jp>
Kenji Kano <kc@ring.gr.jp>
The /efont/ unicode bitmap fonts include the following bitmaps. Also
many characters are designed by /efont/ project. Please see ChangeLog
for detail.
If you want to help us in extending or improving the fonts, please see
README.contrib.
================
10 pixels
================
5x7.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Add 2 blank pixles to top and 1 blank pixel to bottom so as to fit 5x10.)
5x8.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Add 1 blank pixles to top and 1 blank pixel to bottom so as to fit 5x10.)
*** optional ***
5x10rk.bdf 5x10a.bdf knj10.bdf (naga10-1.1)
(c) Copyright 1998, 1999, NAGAO, Sadakazu
http://www.vector.co.jp/authors/VA013391/
License: Freely usable, but restricted. See README.naga10 for detail
(Japanese).
================
12 pixels
================
gulim12.bdf
http://zinc.skku.ac.kr/~wkpark/baekmuk/20001116/
(c) Copyright 1986-2000, Hwan Design Inc.
License: see 'README.baekmuk'
K12-[12].bdf 0.15
Created by Toshiyuki Imamura
http://www.mars.sphere.ne.jp/imamura/jisx0213.html
License: Public Domain
shnmk12.bdf, shnm6x12r.bdf (shinonome-0.9.6)
Maintained by /efont/
http://openlab.ring.gr.jp/efont/shinonome/
License: Public Domain
6x12.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Most characters are shifted 1 dot right so as to conform to the design
rule of efont-unicode-bdf.)
================
14 pixels
================
dotum14.bdf
(c) Copyright 1986-2000, Hwan Design Inc.
License: see 'README.baekmuk'
(Modify 2628, 262A, 262B, 2638, 263A, 263B, 2651, 2652, 2655, 2656,
2659, 265A, 265D, 2663 so as to fit 14x14.)
johab14.hex
(c) Copyright 2000 /efont/
License: See COPYRIGHT
K14-[12].bdf 0.99a
Created by Toshiyuki Imamura
http://www.mars.sphere.ne.jp/imamura/jisx0213.html
License: Public Domain
shnmk14.bdf (shinonome-0.9.6)
Maintained by /efont/
http://openlab.ring.gr.jp/efont/shinonome/
License: Public Domain
thai14.bdf (GNU intlfonts-1.2)
Created by Manop Wongsaisuwan <manop@ee.chula.edu>.
License: Public Domain
lao14-mule.bdf (GNU intlfonts-1.2)
Created by Sihattha Rasphone <sihattha@jaist.ac.jp>.
License: Public Domain
7x14.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Most characters are shifted 1 dot right so as to conform to the design
rule of efont-unicode-bdf.)
etl14-unicode.bdf 2000-02-18
ftp://ftp.ring.gr.jp/pub/X/opengroup/contrib/fonts/
License: Public Domain
================
16 pixels
================
dotum16.bdf
(c) Copyright 1986-2000, Hwan Design Inc.
License: see 'README.baekmuk'
(Modify 2566, 2628, 262A, 262B, 2638, 263A, 263B, 2651, 2652, 2655,
2656, 2659, 265A, 2757, 2768, 3477 so as to fit 16x16.)
taipei16.bdf (GNU intlfonts-1.2)
ftp.ifcss.org: /software/fonts
License: Public Domain
gb16fs.bdf (GNU intlfonts-1.2)
Copyright (c) 1988 The Institute of Software, Academia Sinica.
License: See below *1
jiskan16-2000-[12].bdf 1.03
Created by Toshiyuki Imamura and HANATAKA Shinya
http://www.mars.sphere.ne.jp/imamura/jisx0213.html
License: Public Domain
shnmk16.bdf (shinonome-0.9.6)
Maintained by /efont/
http://openlab.ring.gr.jp/efont/shinonome/
License: Public Domain
thai16.bdf (GNU intlfonts-1.2)
Created by Manop Wongsaisuwan <manop@ee.chula.edu>.
License: Public Domain
lao16-mule.bdf (GNU intlfonts-1.2)
Created by Sihattha Rasphone <sihattha@jaist.ac.jp>.
License: Public Domain
ind16-uni.bdf (GNU intlfonts-1.2)
License: Public Domain
8x13.bdf 2001-07-18
http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html
License: Public Domain
(Add 2 blank pixles to top and 1 blank pixel to bottom so as to fit 8x16.)
etl16-unicode.bdf 2000-02-18
ftp://ftp.ring.gr.jp/pub/X/opengroup/contrib/fonts/
License: Public Domain
================
24 pixels
================
taipei24.bdf (GNU intlfonts-1.2)
ftp.ifcss.org: /software/fonts
License: Public Domain
gb24st.bdf (GNU intlfonts-1.2)
Copyright (c) 1988 The Institute of Software, Academia Sinica.
License: See below *1
johab24.hex (based on hanglm24.bdf)
(c) Copyright 2001 /efont/
License: See COPYRIGHT
hanglm24.bdf (GNU intlfonts-1.2)
Copyright (c) 1987, 1988 Daewoo Electronics Co.,Ltd.
License: X License
jiskan24.bdf (GNU intlfonts-1.2)
Copyright 1984, Japanese Industrial Standard
License: Public Domain
etl24-unicode.bdf 2000-02-18
ftp://ftp.ring.gr.jp/pub/X/opengroup/contrib/fonts/
License: Public Domain
================
Tools
================
mkbold
Sadakazu Nagao <snagao@cs.titech.ac.jp>
http://hp.vector.co.jp/authors/VA013391/tools/#mkbold
Modified by Yasuyuki Furukawa <yasu@on.cs.keio.ac.jp>
License: Public Domain
mkitalic (Perl version)
Yusuke Shinnyama <euske@cl.cs.titech.ac.jp>
License: Public Domain
*1 gb16fs.bdf, gb24st.bdf
Copyright (C) 1988 The Institute of Software, Academia Sinica.
Correspondence Address: P.O.Box 8718, Beijing, China 100080.
Permission to use, copy, modify, and distribute this software and
its documentation for any purpose and without fee is hereby granted,
provided that the above copyright notices appear in all copies and
that both those copyright notices and this permission notice appear
in supporting documentation, and that the name of "the Institute of
Software, Academia Sinica" not be used in advertising or publicity
pertaining to distribution of the software without specific, written
prior permission. The Institute of Software, Academia Sinica,
makes no representations about the suitability of this software
for any purpose. It is provided "as is" without express or
implied warranty.
THE INSTITUTE OF SOFTWARE, ACADEMIA SINICA, DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE INSTITUTE OF
SOFTWARE, ACADEMIA SINICA, BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
```
## File README.baekmuk
```
(c) Copyright 1986-2000, Hwan Design Inc.
You are hereby granted permission under all Hwan Design propriety rights
to use, copy, modify, sublicense, sell, and redistribute the 4 Baekmuk
truetype outline fonts for any purpose and without restriction;
provided, that this notice is left intact on all copies of such fonts
and that Hwan Design Int.'s trademark is acknowledged as shown below
on all copies of the 4 Baekmuk truetype fonts.
BAEKMUK BATANG is a registered trademark of Hwan Design Inc.
BAEKMUK GULIM is a registered trademark of Hwan Design Inc.
BAEKMUK DOTUM is a registered trademark of Hwan Design Inc.
BAEKMUK HEADLINE is a registered trademark of Hwan Design Inc.
```
## File Copyright
```
(c) Copyright 2000-2001 /efont/ The Electronic Font Open Laboratory.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the team nor the names of its contributors
may be used to endorse or promote products derived from this font
without specific prior written permission.
THIS FONT IS PROVIDED BY THE TEAM AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE TEAM OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS FONT, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
```
## File README.naga10
This file is in japanese only, please download [here](http://openlab.ring.gr.jp/efont/unicode/).
## b10
![fntpic/u8g2_font_b10_t_japanese1.png](fntpic/u8g2_font_b10_t_japanese1.png)
![fntpic/u8g2_font_b10_t_japanese2.png](fntpic/u8g2_font_b10_t_japanese2.png)
## b10_b
![fntpic/u8g2_font_b10_b_t_japanese1.png](fntpic/u8g2_font_b10_b_t_japanese1.png)
![fntpic/u8g2_font_b10_b_t_japanese2.png](fntpic/u8g2_font_b10_b_t_japanese2.png)
## f10
![fntpic/u8g2_font_f10_t_japanese1.png](fntpic/u8g2_font_f10_t_japanese1.png)
![fntpic/u8g2_font_f10_t_japanese2.png](fntpic/u8g2_font_f10_t_japanese2.png)
## f10_b
![fntpic/u8g2_font_f10_b_t_japanese1.png](fntpic/u8g2_font_f10_b_t_japanese1.png)
![fntpic/u8g2_font_f10_b_t_japanese2.png](fntpic/u8g2_font_f10_b_t_japanese2.png)
## b12
![fntpic/u8g2_font_b12_t_japanese1.png](fntpic/u8g2_font_b12_t_japanese1.png)
![fntpic/u8g2_font_b12_t_japanese2.png](fntpic/u8g2_font_b12_t_japanese2.png)
![fntpic/u8g2_font_b12_t_japanese3.png](fntpic/u8g2_font_b12_t_japanese3.png)
## b12_b
![fntpic/u8g2_font_b12_b_t_japanese1.png](fntpic/u8g2_font_b12_b_t_japanese1.png)
![fntpic/u8g2_font_b12_b_t_japanese2.png](fntpic/u8g2_font_b12_b_t_japanese2.png)
![fntpic/u8g2_font_b12_b_t_japanese3.png](fntpic/u8g2_font_b12_b_t_japanese3.png)
## f12
![fntpic/u8g2_font_f12_t_japanese1.png](fntpic/u8g2_font_f12_t_japanese1.png)
![fntpic/u8g2_font_f12_t_japanese2.png](fntpic/u8g2_font_f12_t_japanese2.png)
## f12_b
![fntpic/u8g2_font_f12_b_t_japanese1.png](fntpic/u8g2_font_f12_b_t_japanese1.png)
![fntpic/u8g2_font_f12_b_t_japanese2.png](fntpic/u8g2_font_f12_b_t_japanese2.png)
## b16
![fntpic/u8g2_font_b16_t_japanese1.png](fntpic/u8g2_font_b16_t_japanese1.png)
![fntpic/u8g2_font_b16_t_japanese2.png](fntpic/u8g2_font_b16_t_japanese2.png)
![fntpic/u8g2_font_b16_t_japanese3.png](fntpic/u8g2_font_b16_t_japanese3.png)
## b16_b
![fntpic/u8g2_font_b16_b_t_japanese1.png](fntpic/u8g2_font_b16_b_t_japanese1.png)
![fntpic/u8g2_font_b16_b_t_japanese2.png](fntpic/u8g2_font_b16_b_t_japanese2.png)
![fntpic/u8g2_font_b16_b_t_japanese3.png](fntpic/u8g2_font_b16_b_t_japanese3.png)
## f16
![fntpic/u8g2_font_f16_t_japanese1.png](fntpic/u8g2_font_f16_t_japanese1.png)
![fntpic/u8g2_font_f16_t_japanese2.png](fntpic/u8g2_font_f16_t_japanese2.png)
## f16_b
![fntpic/u8g2_font_f16_b_t_japanese1.png](fntpic/u8g2_font_f16_b_t_japanese1.png)
![fntpic/u8g2_font_f16_b_t_japanese2.png](fntpic/u8g2_font_f16_b_t_japanese2.png)
+96
View File
@@ -0,0 +1,96 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [habsburgchancery](#habsburgchancery)
* [missingplanet](#missingplanet)
* [ordinarybasis](#ordinarybasis)
* [pixelmordred](#pixelmordred)
* [secretaryhand](#secretaryhand)
* [garbagecan](#garbagecan)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "Extant".
Fonts will be available with U8g2 v2.25.
# Copyright
HabsburgChancery by Extant
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=803
OrdinaryBasis by Extant
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=804
Secretary Hand by Extant
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1066
MissingPlanet by Extant
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3730
PixelMordred by Extant
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=735
U8g2 v2.32
Garbage Can by Extant
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6188
# Font Pictures
## habsburgchancery
![fntpic/u8g2_font_habsburgchancery_tf.png](fntpic/u8g2_font_habsburgchancery_tf.png)
![fntpic/u8g2_font_habsburgchancery_tr.png](fntpic/u8g2_font_habsburgchancery_tr.png)
![fntpic/u8g2_font_habsburgchancery_tn.png](fntpic/u8g2_font_habsburgchancery_tn.png)
![fntpic/u8g2_font_habsburgchancery_t_all.png](fntpic/u8g2_font_habsburgchancery_t_all.png)
## missingplanet
![fntpic/u8g2_font_missingplanet_tf.png](fntpic/u8g2_font_missingplanet_tf.png)
![fntpic/u8g2_font_missingplanet_tr.png](fntpic/u8g2_font_missingplanet_tr.png)
![fntpic/u8g2_font_missingplanet_tn.png](fntpic/u8g2_font_missingplanet_tn.png)
![fntpic/u8g2_font_missingplanet_t_all.png](fntpic/u8g2_font_missingplanet_t_all.png)
## ordinarybasis
![fntpic/u8g2_font_ordinarybasis_tf.png](fntpic/u8g2_font_ordinarybasis_tf.png)
![fntpic/u8g2_font_ordinarybasis_tr.png](fntpic/u8g2_font_ordinarybasis_tr.png)
![fntpic/u8g2_font_ordinarybasis_tn.png](fntpic/u8g2_font_ordinarybasis_tn.png)
![fntpic/u8g2_font_ordinarybasis_t_all.png](fntpic/u8g2_font_ordinarybasis_t_all.png)
## pixelmordred
![fntpic/u8g2_font_pixelmordred_tf.png](fntpic/u8g2_font_pixelmordred_tf.png)
![fntpic/u8g2_font_pixelmordred_tr.png](fntpic/u8g2_font_pixelmordred_tr.png)
![fntpic/u8g2_font_pixelmordred_tn.png](fntpic/u8g2_font_pixelmordred_tn.png)
![fntpic/u8g2_font_pixelmordred_t_all.png](fntpic/u8g2_font_pixelmordred_t_all.png)
## secretaryhand
![fntpic/u8g2_font_secretaryhand_tf.png](fntpic/u8g2_font_secretaryhand_tf.png)
![fntpic/u8g2_font_secretaryhand_tr.png](fntpic/u8g2_font_secretaryhand_tr.png)
![fntpic/u8g2_font_secretaryhand_tn.png](fntpic/u8g2_font_secretaryhand_tn.png)
![fntpic/u8g2_font_secretaryhand_t_all.png](fntpic/u8g2_font_secretaryhand_t_all.png)
## garbagecan
![fntpic/u8g2_font_garbagecan_tf.png](fntpic/u8g2_font_garbagecan_tf.png)
![fntpic/u8g2_font_garbagecan_tr.png](fntpic/u8g2_font_garbagecan_tr.png)
+459
View File
@@ -0,0 +1,459 @@
[tocstart]: # (toc start)
* [Amstrad CPC extended](#amstrad-cpc-extended)
* [Reference](#reference)
* [Copyright](#copyright)
* [Baby](#baby)
* [Reference](#reference)
* [Copyright](#copyright)
* [Blipfest 07](#blipfest-07)
* [Reference](#reference)
* [Copyright](#copyright)
* [Chikita](#chikita)
* [Reference](#reference)
* [Copyright](#copyright)
* [Lucasfont Alternate](#lucasfont-alternate)
* [Reference](#reference)
* [Copyright](#copyright)
* [P01type](#p01type)
* [Reference](#reference)
* [Copyright](#copyright)
* [Pixelle (Micro)](#pixelle-micro)
* [Reference](#reference)
* [Copyright](#copyright)
* [Robot de Niro](#robot-de-niro)
* [Reference](#reference)
* [Copyright](#copyright)
* [Trixel Square](#trixel-square)
* [Reference](#reference)
* [Copyright](#copyright)
* [HaxrCorp 4089](#haxrcorp-4089)
* [Reference](#reference)
* [Copyright](#copyright)
* [Bubble](#bubble)
* [Reference](#reference)
* [Copyright](#copyright)
* [Cardimon pixel](#cardimon-pixel)
* [Reference](#reference)
* [Copyright](#copyright)
* [Maniac](#maniac)
* [Reference](#reference)
* [Copyright](#copyright)
* [LucasArts SCUMM - Subtitle - Roman Outline](#lucasarts-scumm--subtitle--roman-outline)
* [Reference](#reference)
* [Copyright](#copyright)
* [LucasArts SCUMM - Subtitle - Roman](#lucasarts-scumm--subtitle--roman)
* [Reference](#reference)
* [Copyright](#copyright)
* [Utopia24](#utopia24)
* [Reference](#reference)
* [Copyright](#copyright)
* [M.C. Kids (NES) Credits Font](#mc-kids-nes-credits-font)
* [Reference](#reference)
* [Copyright](#copyright)
* [CHARGEN '92](#chargen-92)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [amstrad_cpc_extended](#amstrad_cpc_extended)
* [baby](#baby)
* [blipfest_07](#blipfest_07)
* [chikita](#chikita)
* [lucasfont_alternate](#lucasfont_alternate)
* [p01type](#p01type)
* [pixelle_micro](#pixelle_micro)
* [robot_de_niro](#robot_de_niro)
* [trixel_square](#trixel_square)
* [haxrcorp4089](#haxrcorp4089)
* [bubble](#bubble)
* [cardimon_pixel](#cardimon_pixel)
* [maniac](#maniac)
* [lucasarts_scumm_subtitle_o](#lucasarts_scumm_subtitle_o)
* [lucasarts_scumm_subtitle_r](#lucasarts_scumm_subtitle_r)
* [lucasarts_scumm_subtitle_o_2x2](#lucasarts_scumm_subtitle_o_2x2)
* [lucasarts_scumm_subtitle_r_2x2](#lucasarts_scumm_subtitle_r_2x2)
* [utopia24](#utopia24)
* [m_c_kids_nes_credits_font](#m_c_kids_nes_credits_font)
* [chargen_92](#chargen_92)
[tocend]: # (toc end)
This page contains fonts from http://fontstruct.com.
# Amstrad CPC extended
Additionally encodings 128 to 159 had been added to this font by this project.
## Reference
Link: http://fontstruct.com/fontstructions/show/25590
## Copyright
The FontStruction "Amstrad CPC extended"
(http://fontstruct.com/fontstructions/show/25590) by "ruboku" is licensed
under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
# Baby
## Reference
Link: http://fontstruct.com/fontstructions/show/baby_4
## Copyright
The `FontStruction` "Baby"
(http://fontstruct.com/fontstructions/show/35496) by "mrsbarrett" is
licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Blipfest 07
## Reference
Link: http://fontstruct.com/fontstructions/show/blipfest_07
## Copyright
The `FontStruction` "Blipfest 07"
(http://fontstruct.com/fontstructions/show/45675) by "cwillmor" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Chikita
## Reference
Link: http://fontstruct.com/fontstructions/show/chikita
## Copyright
The `FontStruction` "Chikita"
(http://fontstruct.com/Ffontstructions/show/52325) by "southernmedia" is
licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
"Chikita" was originally cloned (copied) from the `FontStruction`
"pixelspace 5x5" (http://fontstruct.com/FontStructions/show/42130) by David
Chiu, which is licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Lucasfont Alternate
## Reference
Link: http://fontstruct.com/fontstructions/show/lucasfont_alternate
## Copyright
The `FontStruction` "Lucasfont Alternate"
(http://fontstruct.com/fontstructions/show/653734) by Patrick Lauke is licensed
under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
"Lucasfont Alternate" was originally cloned (copied) from the `FontStruction`
"Lucasfont" (http://fontstruct.com/FontStructions/show/653577) by Patrick
Lauke, which is licensed under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
# P01type
## Reference
Link: http://fontstruct.com/fontstructions/show/p01type
## Copyright
The `FontStruction` "P01type"
(http://fontstruct.com/fontstructions/show/668719) by Patrick Lauke is licensed
under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
# Pixelle (Micro)
## Reference
Link: http://fontstruct.com/fontstructions/show/pixelle_micro
## Copyright
The `FontStruction` "Pixelle (Micro)"
(http://fontstruct.com/fontstructions/show/91737) by "rdonaghy" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Robot de Niro
## Reference
Link: http://fontstruct.com/fontstructions/show/robot_de_niro_2
## Copyright
The `FontStruction` "Robot de Niro"
(http://fontstruct.com/fontstructions/show/52809) by "BMoser" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Trixel Square
## Reference
Link: http://fontstruct.com/fontstructions/show/trixel_square_1
## Copyright
The `FontStruction` "Trixel Square"
(http://fontstruct.com/fontstructions/show/54103) by "julischka" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# HaxrCorp 4089
## Reference
Link: https://fontstruct.com/fontstructions/show/192981/haxrcorp_4089
## Copyright
The FontStruction “HaxrCorp 4089”
(https://fontstruct.com/fontstructions/show/192981) by “sahwar” is licensed
under a Creative Commons Attribution Share Alike
license (http://creativecommons.org/licenses/by-sa/3.0/).
# Bubble
## Reference
Link: https://fontstruct.com/fontstructions/show/1533797/bubble-100
## Copyright
The FontStruction “Bubble”
(https://fontstruct.com/fontstructions/show/1533797) by “Omegaville” is
licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Cardimon pixel
## Reference
Link: https://fontstruct.com/fontstructions/show/1266554/cardimon-pixel
## Copyright
The FontStruction “Cardimon pixel”
(https://fontstruct.com/fontstructions/show/1266554) by “helenadejuan” is
licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Maniac
## Reference
Link: https://fontstruct.com/fontstructions/show/604350/maniac_2
## Copyright
The FontStruction “Maniac”
(https://fontstruct.com/fontstructions/show/604350) by “D-Sheep” is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# LucasArts SCUMM - Subtitle - Roman Outline
## Reference
Link: https://fontstruct.com/fontstructions/show/786126/lucasarts-scumm-subtitle-roman-outline
## Copyright
The FontStruction “LucasArts SCUMM - Subtitle - Roman Outline”
(https://fontstruct.com/fontstructions/show/786126) by “Goatmeal” is
licensed under a Creative Commons Attribution Non-commercial Share Alike license
(http://creativecommons.org/licenses/by-nc-sa/3.0/).
“LucasArts SCUMM - Subtitle - Roman Outline” was originally cloned (copied)
from the FontStruction “LucasArts SCUMM - Subtitle - Roman”
(https://fontstruct.com/fontstructions/show/778619) by “Goatmeal”, which is
licensed under a Creative Commons Attribution Non-commercial Share Alike license
(http://creativecommons.org/licenses/by-nc-sa/3.0/).
# LucasArts SCUMM - Subtitle - Roman
## Reference
Link: https://fontstruct.com/fontstructions/show/778619/lucasarts-scumm-subtitle-roman
## Copyright
The FontStruction “LucasArts SCUMM - Subtitle - Roman”
(https://fontstruct.com/fontstructions/show/778619) by “Goatmeal” is
licensed under a Creative Commons Attribution Non-commercial Share Alike license
(http://creativecommons.org/licenses/by-nc-sa/3.0/).
# Utopia24
## Reference
Link: https://fontstruct.com/fontstructions/show/1963904/utopia24
## Copyright
The FontStruction “utopia24” (https://fontstruct.com/fontstructions/show/1963904) by
“ParadigmTheGreat” is licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# M.C. Kids (NES) Credits Font
## Reference
Link: https://fontstruct.com/fontstructions/show/1963150/m-c-kids-nes-credits-font
## Copyright
The FontStruction “M.C. Kids (NES) Credits Font”
(https://fontstruct.com/fontstructions/show/1963150) by “ParadigmTheGreat” is licensed
under a Creative Commons CC0 Public Domain Dedication license
(http://creativecommons.org/publicdomain/zero/1.0/).
# CHARGEN '92
## Reference
Link: https://fontstruct.com/fontstructions/show/1599418/chargen-92-1
## Copyright
The FontStruction “CHARGEN '92” (https://fontstruct.com/fontstructions/show/1599418) by
“ParadigmTheGreat” is licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
# Font Details
## amstrad_cpc_extended
![fntpic/u8g2_font_amstrad_cpc_extended_8f.png](fntpic/u8g2_font_amstrad_cpc_extended_8f.png)
![fntpic/u8g2_font_amstrad_cpc_extended_8r.png](fntpic/u8g2_font_amstrad_cpc_extended_8r.png)
![fntpic/u8g2_font_amstrad_cpc_extended_8n.png](fntpic/u8g2_font_amstrad_cpc_extended_8n.png)
![fntpic/u8g2_font_amstrad_cpc_extended_8u.png](fntpic/u8g2_font_amstrad_cpc_extended_8u.png)
![fntpic/u8x8_font_amstrad_cpc_extended_f.png](fntpic/u8x8_font_amstrad_cpc_extended_f.png)
![fntpic/u8x8_font_amstrad_cpc_extended_r.png](fntpic/u8x8_font_amstrad_cpc_extended_r.png)
![fntpic/u8x8_font_amstrad_cpc_extended_n.png](fntpic/u8x8_font_amstrad_cpc_extended_n.png)
![fntpic/u8x8_font_amstrad_cpc_extended_u.png](fntpic/u8x8_font_amstrad_cpc_extended_u.png)
## baby
![fntpic/u8g2_font_baby_tf.png](fntpic/u8g2_font_baby_tf.png)
![fntpic/u8g2_font_baby_tr.png](fntpic/u8g2_font_baby_tr.png)
![fntpic/u8g2_font_baby_tn.png](fntpic/u8g2_font_baby_tn.png)
## blipfest_07
![fntpic/u8g2_font_blipfest_07_tr.png](fntpic/u8g2_font_blipfest_07_tr.png)
![fntpic/u8g2_font_blipfest_07_tn.png](fntpic/u8g2_font_blipfest_07_tn.png)
## chikita
![fntpic/u8g2_font_chikita_tf.png](fntpic/u8g2_font_chikita_tf.png)
![fntpic/u8g2_font_chikita_tr.png](fntpic/u8g2_font_chikita_tr.png)
![fntpic/u8g2_font_chikita_tn.png](fntpic/u8g2_font_chikita_tn.png)
## lucasfont_alternate
![fntpic/u8g2_font_lucasfont_alternate_tf.png](fntpic/u8g2_font_lucasfont_alternate_tf.png)
![fntpic/u8g2_font_lucasfont_alternate_tr.png](fntpic/u8g2_font_lucasfont_alternate_tr.png)
![fntpic/u8g2_font_lucasfont_alternate_tn.png](fntpic/u8g2_font_lucasfont_alternate_tn.png)
## p01type
![fntpic/u8g2_font_p01type_tf.png](fntpic/u8g2_font_p01type_tf.png)
![fntpic/u8g2_font_p01type_tr.png](fntpic/u8g2_font_p01type_tr.png)
![fntpic/u8g2_font_p01type_tn.png](fntpic/u8g2_font_p01type_tn.png)
## pixelle_micro
![fntpic/u8g2_font_pixelle_micro_tr.png](fntpic/u8g2_font_pixelle_micro_tr.png)
![fntpic/u8g2_font_pixelle_micro_tn.png](fntpic/u8g2_font_pixelle_micro_tn.png)
## robot_de_niro
![fntpic/u8g2_font_robot_de_niro_tf.png](fntpic/u8g2_font_robot_de_niro_tf.png)
![fntpic/u8g2_font_robot_de_niro_tr.png](fntpic/u8g2_font_robot_de_niro_tr.png)
![fntpic/u8g2_font_robot_de_niro_tn.png](fntpic/u8g2_font_robot_de_niro_tn.png)
## trixel_square
![fntpic/u8g2_font_trixel_square_tf.png](fntpic/u8g2_font_trixel_square_tf.png)
![fntpic/u8g2_font_trixel_square_tr.png](fntpic/u8g2_font_trixel_square_tr.png)
![fntpic/u8g2_font_trixel_square_tn.png](fntpic/u8g2_font_trixel_square_tn.png)
## haxrcorp4089
![fntpic/u8g2_font_haxrcorp4089_tr.png](fntpic/u8g2_font_haxrcorp4089_tr.png)
![fntpic/u8g2_font_haxrcorp4089_tn.png](fntpic/u8g2_font_haxrcorp4089_tn.png)
![fntpic/u8g2_font_haxrcorp4089_t_cyrillic.png](fntpic/u8g2_font_haxrcorp4089_t_cyrillic.png)
## bubble
![fntpic/u8g2_font_bubble_tr.png](fntpic/u8g2_font_bubble_tr.png)
![fntpic/u8g2_font_bubble_tn.png](fntpic/u8g2_font_bubble_tn.png)
## cardimon_pixel
![fntpic/u8g2_font_cardimon_pixel_tf.png](fntpic/u8g2_font_cardimon_pixel_tf.png)
![fntpic/u8g2_font_cardimon_pixel_tr.png](fntpic/u8g2_font_cardimon_pixel_tr.png)
![fntpic/u8g2_font_cardimon_pixel_tn.png](fntpic/u8g2_font_cardimon_pixel_tn.png)
## maniac
![fntpic/u8g2_font_maniac_tf.png](fntpic/u8g2_font_maniac_tf.png)
![fntpic/u8g2_font_maniac_tr.png](fntpic/u8g2_font_maniac_tr.png)
![fntpic/u8g2_font_maniac_tn.png](fntpic/u8g2_font_maniac_tn.png)
![fntpic/u8g2_font_maniac_te.png](fntpic/u8g2_font_maniac_te.png)
## lucasarts_scumm_subtitle_o
![fntpic/u8g2_font_lucasarts_scumm_subtitle_o_tf.png](fntpic/u8g2_font_lucasarts_scumm_subtitle_o_tf.png)
![fntpic/u8g2_font_lucasarts_scumm_subtitle_o_tr.png](fntpic/u8g2_font_lucasarts_scumm_subtitle_o_tr.png)
![fntpic/u8g2_font_lucasarts_scumm_subtitle_o_tn.png](fntpic/u8g2_font_lucasarts_scumm_subtitle_o_tn.png)
## lucasarts_scumm_subtitle_r
![fntpic/u8g2_font_lucasarts_scumm_subtitle_r_tf.png](fntpic/u8g2_font_lucasarts_scumm_subtitle_r_tf.png)
![fntpic/u8g2_font_lucasarts_scumm_subtitle_r_tr.png](fntpic/u8g2_font_lucasarts_scumm_subtitle_r_tr.png)
![fntpic/u8g2_font_lucasarts_scumm_subtitle_r_tn.png](fntpic/u8g2_font_lucasarts_scumm_subtitle_r_tn.png)
## lucasarts_scumm_subtitle_o_2x2
![fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_f.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_f.png)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_r.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_r.png)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_n.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_n.png)
## lucasarts_scumm_subtitle_r_2x2
![fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_f.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_f.png)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_r.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_r.png)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_n.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_n.png)
## utopia24
![fntpic/u8g2_font_utopia24_tf.png](fntpic/u8g2_font_utopia24_tf.png)
![fntpic/u8g2_font_utopia24_tr.png](fntpic/u8g2_font_utopia24_tr.png)
![fntpic/u8g2_font_utopia24_tn.png](fntpic/u8g2_font_utopia24_tn.png)
![fntpic/u8g2_font_utopia24_te.png](fntpic/u8g2_font_utopia24_te.png)
## m_c_kids_nes_credits_font
![fntpic/u8g2_font_m_c_kids_nes_credits_font_tr.png](fntpic/u8g2_font_m_c_kids_nes_credits_font_tr.png)
## chargen_92
![fntpic/u8g2_font_chargen_92_tf.png](fntpic/u8g2_font_chargen_92_tf.png)
![fntpic/u8g2_font_chargen_92_tr.png](fntpic/u8g2_font_chargen_92_tr.png)
![fntpic/u8g2_font_chargen_92_tn.png](fntpic/u8g2_font_chargen_92_tn.png)
![fntpic/u8g2_font_chargen_92_te.png](fntpic/u8g2_font_chargen_92_te.png)
![fntpic/u8g2_font_chargen_92_mf.png](fntpic/u8g2_font_chargen_92_mf.png)
![fntpic/u8g2_font_chargen_92_mr.png](fntpic/u8g2_font_chargen_92_mr.png)
![fntpic/u8g2_font_chargen_92_mn.png](fntpic/u8g2_font_chargen_92_mn.png)
![fntpic/u8g2_font_chargen_92_me.png](fntpic/u8g2_font_chargen_92_me.png)
+204
View File
@@ -0,0 +1,204 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Manual Updates](#manual-updates)
* [Font Details](#font-details)
* [fub11](#fub11)
* [fub14](#fub14)
* [fub17](#fub17)
* [fub20](#fub20)
* [fub25](#fub25)
* [fub30](#fub30)
* [fub35](#fub35)
* [fub42](#fub42)
* [fub49](#fub49)
* [fub11](#fub11)
* [fub14](#fub14)
* [fub17](#fub17)
* [fub20](#fub20)
* [fub25](#fub25)
* [fub30](#fub30)
* [fub35](#fub35)
* [fub42](#fub42)
* [fub49](#fub49)
* [fur11](#fur11)
* [fur14](#fur14)
* [fur17](#fur17)
* [fur20](#fur20)
* [fur25](#fur25)
* [fur30](#fur30)
* [fur35](#fur35)
* [fur42](#fur42)
* [fur49](#fur49)
* [fur11](#fur11)
* [fur14](#fur14)
* [fur17](#fur17)
* [fur20](#fur20)
* [fur25](#fur25)
* [fur30](#fur30)
* [fur35](#fur35)
* [fur42](#fur42)
* [fur49](#fur49)
[tocend]: # (toc end)
# Reference
** FreeUniversal **
Download location at openfontlibrary.org: http://openfontlibrary.org/font/freeuniversal
# Copyright
License: [OFL (SIL Open Font License)](http://scripts.sil.org/OFL)
Font Copyright Statement: FreeUniveral (c) Stephen Wilson 2009 Original Font Sil-Sophia Copyright (c) SIL International, 1994-2008.
# Manual Updates
`u8g_font_fub25n`: Numbers fixed by DooMMasteR (Arduino Forum)
# Font Details
## fub11
![fntpic/u8g2_font_fub11_tf.png](fntpic/u8g2_font_fub11_tf.png)
![fntpic/u8g2_font_fub11_tr.png](fntpic/u8g2_font_fub11_tr.png)
![fntpic/u8g2_font_fub11_tn.png](fntpic/u8g2_font_fub11_tn.png)
## fub14
![fntpic/u8g2_font_fub14_tf.png](fntpic/u8g2_font_fub14_tf.png)
![fntpic/u8g2_font_fub14_tr.png](fntpic/u8g2_font_fub14_tr.png)
![fntpic/u8g2_font_fub14_tn.png](fntpic/u8g2_font_fub14_tn.png)
## fub17
![fntpic/u8g2_font_fub17_tf.png](fntpic/u8g2_font_fub17_tf.png)
![fntpic/u8g2_font_fub17_tr.png](fntpic/u8g2_font_fub17_tr.png)
![fntpic/u8g2_font_fub17_tn.png](fntpic/u8g2_font_fub17_tn.png)
## fub20
![fntpic/u8g2_font_fub20_tf.png](fntpic/u8g2_font_fub20_tf.png)
![fntpic/u8g2_font_fub20_tr.png](fntpic/u8g2_font_fub20_tr.png)
![fntpic/u8g2_font_fub20_tn.png](fntpic/u8g2_font_fub20_tn.png)
## fub25
![fntpic/u8g2_font_fub25_tf.png](fntpic/u8g2_font_fub25_tf.png)
![fntpic/u8g2_font_fub25_tr.png](fntpic/u8g2_font_fub25_tr.png)
![fntpic/u8g2_font_fub25_tn.png](fntpic/u8g2_font_fub25_tn.png)
## fub30
![fntpic/u8g2_font_fub30_tf.png](fntpic/u8g2_font_fub30_tf.png)
![fntpic/u8g2_font_fub30_tr.png](fntpic/u8g2_font_fub30_tr.png)
![fntpic/u8g2_font_fub30_tn.png](fntpic/u8g2_font_fub30_tn.png)
## fub35
![fntpic/u8g2_font_fub35_tf.png](fntpic/u8g2_font_fub35_tf.png)
![fntpic/u8g2_font_fub35_tr.png](fntpic/u8g2_font_fub35_tr.png)
![fntpic/u8g2_font_fub35_tn.png](fntpic/u8g2_font_fub35_tn.png)
## fub42
![fntpic/u8g2_font_fub42_tf.png](fntpic/u8g2_font_fub42_tf.png)
![fntpic/u8g2_font_fub42_tr.png](fntpic/u8g2_font_fub42_tr.png)
![fntpic/u8g2_font_fub42_tn.png](fntpic/u8g2_font_fub42_tn.png)
## fub49
![fntpic/u8g2_font_fub49_tn.png](fntpic/u8g2_font_fub49_tn.png)
## fub11
![fntpic/u8g2_font_fub11_t_symbol.png](fntpic/u8g2_font_fub11_t_symbol.png)
## fub14
![fntpic/u8g2_font_fub14_t_symbol.png](fntpic/u8g2_font_fub14_t_symbol.png)
## fub17
![fntpic/u8g2_font_fub17_t_symbol.png](fntpic/u8g2_font_fub17_t_symbol.png)
## fub20
![fntpic/u8g2_font_fub20_t_symbol.png](fntpic/u8g2_font_fub20_t_symbol.png)
## fub25
![fntpic/u8g2_font_fub25_t_symbol.png](fntpic/u8g2_font_fub25_t_symbol.png)
## fub30
![fntpic/u8g2_font_fub30_t_symbol.png](fntpic/u8g2_font_fub30_t_symbol.png)
## fub35
![fntpic/u8g2_font_fub35_t_symbol.png](fntpic/u8g2_font_fub35_t_symbol.png)
## fub42
![fntpic/u8g2_font_fub42_t_symbol.png](fntpic/u8g2_font_fub42_t_symbol.png)
## fub49
![fntpic/u8g2_font_fub49_t_symbol.png](fntpic/u8g2_font_fub49_t_symbol.png)
## fur11
![fntpic/u8g2_font_fur11_tf.png](fntpic/u8g2_font_fur11_tf.png)
![fntpic/u8g2_font_fur11_tr.png](fntpic/u8g2_font_fur11_tr.png)
![fntpic/u8g2_font_fur11_tn.png](fntpic/u8g2_font_fur11_tn.png)
## fur14
![fntpic/u8g2_font_fur14_tf.png](fntpic/u8g2_font_fur14_tf.png)
![fntpic/u8g2_font_fur14_tr.png](fntpic/u8g2_font_fur14_tr.png)
![fntpic/u8g2_font_fur14_tn.png](fntpic/u8g2_font_fur14_tn.png)
## fur17
![fntpic/u8g2_font_fur17_tf.png](fntpic/u8g2_font_fur17_tf.png)
![fntpic/u8g2_font_fur17_tr.png](fntpic/u8g2_font_fur17_tr.png)
![fntpic/u8g2_font_fur17_tn.png](fntpic/u8g2_font_fur17_tn.png)
## fur20
![fntpic/u8g2_font_fur20_tf.png](fntpic/u8g2_font_fur20_tf.png)
![fntpic/u8g2_font_fur20_tr.png](fntpic/u8g2_font_fur20_tr.png)
![fntpic/u8g2_font_fur20_tn.png](fntpic/u8g2_font_fur20_tn.png)
## fur25
![fntpic/u8g2_font_fur25_tf.png](fntpic/u8g2_font_fur25_tf.png)
![fntpic/u8g2_font_fur25_tr.png](fntpic/u8g2_font_fur25_tr.png)
![fntpic/u8g2_font_fur25_tn.png](fntpic/u8g2_font_fur25_tn.png)
## fur30
![fntpic/u8g2_font_fur30_tf.png](fntpic/u8g2_font_fur30_tf.png)
![fntpic/u8g2_font_fur30_tr.png](fntpic/u8g2_font_fur30_tr.png)
![fntpic/u8g2_font_fur30_tn.png](fntpic/u8g2_font_fur30_tn.png)
## fur35
![fntpic/u8g2_font_fur35_tf.png](fntpic/u8g2_font_fur35_tf.png)
![fntpic/u8g2_font_fur35_tr.png](fntpic/u8g2_font_fur35_tr.png)
![fntpic/u8g2_font_fur35_tn.png](fntpic/u8g2_font_fur35_tn.png)
## fur42
![fntpic/u8g2_font_fur42_tf.png](fntpic/u8g2_font_fur42_tf.png)
![fntpic/u8g2_font_fur42_tr.png](fntpic/u8g2_font_fur42_tr.png)
![fntpic/u8g2_font_fur42_tn.png](fntpic/u8g2_font_fur42_tn.png)
## fur49
![fntpic/u8g2_font_fur49_tn.png](fntpic/u8g2_font_fur49_tn.png)
## fur11
![fntpic/u8g2_font_fur11_t_symbol.png](fntpic/u8g2_font_fur11_t_symbol.png)
## fur14
![fntpic/u8g2_font_fur14_t_symbol.png](fntpic/u8g2_font_fur14_t_symbol.png)
## fur17
![fntpic/u8g2_font_fur17_t_symbol.png](fntpic/u8g2_font_fur17_t_symbol.png)
## fur20
![fntpic/u8g2_font_fur20_t_symbol.png](fntpic/u8g2_font_fur20_t_symbol.png)
## fur25
![fntpic/u8g2_font_fur25_t_symbol.png](fntpic/u8g2_font_fur25_t_symbol.png)
## fur30
![fntpic/u8g2_font_fur30_t_symbol.png](fntpic/u8g2_font_fur30_t_symbol.png)
## fur35
![fntpic/u8g2_font_fur35_t_symbol.png](fntpic/u8g2_font_fur35_t_symbol.png)
## fur42
![fntpic/u8g2_font_fur42_t_symbol.png](fntpic/u8g2_font_fur42_t_symbol.png)
## fur49
![fntpic/u8g2_font_fur49_t_symbol.png](fntpic/u8g2_font_fur49_t_symbol.png)
+132
View File
@@ -0,0 +1,132 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [bitcasual](#bitcasual)
* [koleeko](#koleeko)
* [tenfatguys](#tenfatguys)
* [tenstamps](#tenstamps)
* [tenthinguys](#tenthinguys)
* [tenthinnerguys](#tenthinnerguys)
* [twelvedings](#twelvedings)
* [frigidaire](#frigidaire)
* [lord](#lord)
* [abel](#abel)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "geoff".
Fonts will be available with U8g2 v2.25.
# Copyright
BitCasual by geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=353
Koleeko by geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=748
TenFatGuys by Geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=332
TenThinGuys by Geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=335
TenThinnerGuys by Geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=338
TenStamps by Geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=329
TwelveDings by Geoff
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=330
U8g2 v2.32
Frigidaire by geoff
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9013
Lord by geoff
license : (Creative Commons Attribution)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8978
Abel by geoff
license : (Creative Commons NonCommercial)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=8975
# Font Pictures
## bitcasual
![fntpic/u8g2_font_bitcasual_tf.png](fntpic/u8g2_font_bitcasual_tf.png)
![fntpic/u8g2_font_bitcasual_tr.png](fntpic/u8g2_font_bitcasual_tr.png)
![fntpic/u8g2_font_bitcasual_tn.png](fntpic/u8g2_font_bitcasual_tn.png)
![fntpic/u8g2_font_bitcasual_tu.png](fntpic/u8g2_font_bitcasual_tu.png)
![fntpic/u8g2_font_bitcasual_t_all.png](fntpic/u8g2_font_bitcasual_t_all.png)
## koleeko
![fntpic/u8g2_font_koleeko_tf.png](fntpic/u8g2_font_koleeko_tf.png)
![fntpic/u8g2_font_koleeko_tr.png](fntpic/u8g2_font_koleeko_tr.png)
![fntpic/u8g2_font_koleeko_tn.png](fntpic/u8g2_font_koleeko_tn.png)
![fntpic/u8g2_font_koleeko_tu.png](fntpic/u8g2_font_koleeko_tu.png)
## tenfatguys
![fntpic/u8g2_font_tenfatguys_tf.png](fntpic/u8g2_font_tenfatguys_tf.png)
![fntpic/u8g2_font_tenfatguys_tr.png](fntpic/u8g2_font_tenfatguys_tr.png)
![fntpic/u8g2_font_tenfatguys_tn.png](fntpic/u8g2_font_tenfatguys_tn.png)
![fntpic/u8g2_font_tenfatguys_tu.png](fntpic/u8g2_font_tenfatguys_tu.png)
![fntpic/u8g2_font_tenfatguys_t_all.png](fntpic/u8g2_font_tenfatguys_t_all.png)
## tenstamps
![fntpic/u8g2_font_tenstamps_mf.png](fntpic/u8g2_font_tenstamps_mf.png)
![fntpic/u8g2_font_tenstamps_mr.png](fntpic/u8g2_font_tenstamps_mr.png)
![fntpic/u8g2_font_tenstamps_mn.png](fntpic/u8g2_font_tenstamps_mn.png)
![fntpic/u8g2_font_tenstamps_mu.png](fntpic/u8g2_font_tenstamps_mu.png)
## tenthinguys
![fntpic/u8g2_font_tenthinguys_tf.png](fntpic/u8g2_font_tenthinguys_tf.png)
![fntpic/u8g2_font_tenthinguys_tr.png](fntpic/u8g2_font_tenthinguys_tr.png)
![fntpic/u8g2_font_tenthinguys_tn.png](fntpic/u8g2_font_tenthinguys_tn.png)
![fntpic/u8g2_font_tenthinguys_tu.png](fntpic/u8g2_font_tenthinguys_tu.png)
![fntpic/u8g2_font_tenthinguys_t_all.png](fntpic/u8g2_font_tenthinguys_t_all.png)
## tenthinnerguys
![fntpic/u8g2_font_tenthinnerguys_tf.png](fntpic/u8g2_font_tenthinnerguys_tf.png)
![fntpic/u8g2_font_tenthinnerguys_tr.png](fntpic/u8g2_font_tenthinnerguys_tr.png)
![fntpic/u8g2_font_tenthinnerguys_tn.png](fntpic/u8g2_font_tenthinnerguys_tn.png)
![fntpic/u8g2_font_tenthinnerguys_tu.png](fntpic/u8g2_font_tenthinnerguys_tu.png)
![fntpic/u8g2_font_tenthinnerguys_t_all.png](fntpic/u8g2_font_tenthinnerguys_t_all.png)
## twelvedings
![fntpic/u8g2_font_twelvedings_t_all.png](fntpic/u8g2_font_twelvedings_t_all.png)
## frigidaire
![fntpic/u8g2_font_frigidaire_mr.png](fntpic/u8g2_font_frigidaire_mr.png)
## lord
![fntpic/u8g2_font_lord_mr.png](fntpic/u8g2_font_lord_mr.png)
## abel
![fntpic/u8g2_font_abel_mr.png](fntpic/u8g2_font_abel_mr.png)
+62
View File
@@ -0,0 +1,62 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [bauhaus2015](#bauhaus2015)
* [finderskeepers](#finderskeepers)
* [sirclivethebold](#sirclivethebold)
* [sirclive](#sirclive)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "GilesBooth".
Fonts will be available with U8g2 v2.25.
# Copyright
Bauhaus2015 by GilesBooth
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2048
license : (Creative Commons Attribution)
FindersKeepers by GilesBooth
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3809
license : (Creative Commons Attribution)
SirClive by GilesBooth
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2051
license : (Public Domain)
SirClivetheBold by GilesBooth
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=2058
license : (Public Domain)
# Font Pictures
## bauhaus2015
![fntpic/u8g2_font_bauhaus2015_tr.png](fntpic/u8g2_font_bauhaus2015_tr.png)
![fntpic/u8g2_font_bauhaus2015_tn.png](fntpic/u8g2_font_bauhaus2015_tn.png)
## finderskeepers
![fntpic/u8g2_font_finderskeepers_tf.png](fntpic/u8g2_font_finderskeepers_tf.png)
![fntpic/u8g2_font_finderskeepers_tr.png](fntpic/u8g2_font_finderskeepers_tr.png)
![fntpic/u8g2_font_finderskeepers_tn.png](fntpic/u8g2_font_finderskeepers_tn.png)
## sirclivethebold
![fntpic/u8g2_font_sirclivethebold_tr.png](fntpic/u8g2_font_sirclivethebold_tr.png)
![fntpic/u8g2_font_sirclivethebold_tn.png](fntpic/u8g2_font_sirclivethebold_tn.png)
## sirclive
![fntpic/u8g2_font_sirclive_tr.png](fntpic/u8g2_font_sirclive_tr.png)
![fntpic/u8g2_font_sirclive_tn.png](fntpic/u8g2_font_sirclive_tn.png)
+48
View File
@@ -0,0 +1,48 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [gulim11](#gulim11)
* [gulim12](#gulim12)
* [gulim14](#gulim14)
* [gulim16](#gulim16)
[tocend]: # (toc end)
# Reference
The Gulim fonts are maintained here: https://github.com/googlefonts/gulim/
# Copyright
From https://github.com/googlefonts/gulim/ :
This Font Software is licensed under the SIL Open Font License, Version 1.1.
# Font Details
## gulim11
![fntpic/u8g2_font_gulim11_t_korean1.png](fntpic/u8g2_font_gulim11_t_korean1.png)
![fntpic/u8g2_font_gulim11_t_korean2.png](fntpic/u8g2_font_gulim11_t_korean2.png)
## gulim12
![fntpic/u8g2_font_gulim12_t_korean1.png](fntpic/u8g2_font_gulim12_t_korean1.png)
![fntpic/u8g2_font_gulim12_t_korean2.png](fntpic/u8g2_font_gulim12_t_korean2.png)
## gulim14
![fntpic/u8g2_font_gulim14_t_korean1.png](fntpic/u8g2_font_gulim14_t_korean1.png)
![fntpic/u8g2_font_gulim14_t_korean2.png](fntpic/u8g2_font_gulim14_t_korean2.png)
## gulim16
![fntpic/u8g2_font_gulim16_t_korean1.png](fntpic/u8g2_font_gulim16_t_korean1.png)
![fntpic/u8g2_font_gulim16_t_korean2.png](fntpic/u8g2_font_gulim16_t_korean2.png)
+76
View File
@@ -0,0 +1,76 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [NokiaLargeBold](#nokialargebold)
* [NokiaSmallBold](#nokiasmallbold)
* [NokiaSmallPlain](#nokiasmallplain)
* [12x6LED](#12x6led)
* [9x6LED](#9x6led)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "HasanKazan".
Fonts will be available with U8g2 v2.32.
# Copyright
NokiaSmallBold by HasanKazan
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6182
NokiaSmallPlain by HasanKazan
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6181
Nokia Large Bold by HasanKazan
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6180
9x6 LED by Hasan Kazan
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3980
12x6LED by HasanKazan
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3960
# Font Pictures
## NokiaLargeBold
![fntpic/u8g2_font_NokiaLargeBold_tf.png](fntpic/u8g2_font_NokiaLargeBold_tf.png)
![fntpic/u8g2_font_NokiaLargeBold_tr.png](fntpic/u8g2_font_NokiaLargeBold_tr.png)
![fntpic/u8g2_font_NokiaLargeBold_te.png](fntpic/u8g2_font_NokiaLargeBold_te.png)
## NokiaSmallBold
![fntpic/u8g2_font_NokiaSmallBold_tf.png](fntpic/u8g2_font_NokiaSmallBold_tf.png)
![fntpic/u8g2_font_NokiaSmallBold_tr.png](fntpic/u8g2_font_NokiaSmallBold_tr.png)
![fntpic/u8g2_font_NokiaSmallBold_te.png](fntpic/u8g2_font_NokiaSmallBold_te.png)
## NokiaSmallPlain
![fntpic/u8g2_font_NokiaSmallPlain_tf.png](fntpic/u8g2_font_NokiaSmallPlain_tf.png)
![fntpic/u8g2_font_NokiaSmallPlain_tr.png](fntpic/u8g2_font_NokiaSmallPlain_tr.png)
![fntpic/u8g2_font_NokiaSmallPlain_te.png](fntpic/u8g2_font_NokiaSmallPlain_te.png)
## 12x6LED
![fntpic/u8g2_font_12x6LED_tf.png](fntpic/u8g2_font_12x6LED_tf.png)
![fntpic/u8g2_font_12x6LED_tr.png](fntpic/u8g2_font_12x6LED_tr.png)
![fntpic/u8g2_font_12x6LED_mn.png](fntpic/u8g2_font_12x6LED_mn.png)
## 9x6LED
![fntpic/u8g2_font_9x6LED_tf.png](fntpic/u8g2_font_9x6LED_tf.png)
![fntpic/u8g2_font_9x6LED_tr.png](fntpic/u8g2_font_9x6LED_tr.png)
![fntpic/u8g2_font_9x6LED_mn.png](fntpic/u8g2_font_9x6LED_mn.png)
+457
View File
@@ -0,0 +1,457 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Build Process](#build-process)
* [Available Icon Collections](#available-icon-collections)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [open_iconic_all_1x](#open_iconic_all_1x)
* [open_iconic_app_1x](#open_iconic_app_1x)
* [open_iconic_arrow_1x](#open_iconic_arrow_1x)
* [open_iconic_check_1x](#open_iconic_check_1x)
* [open_iconic_email_1x](#open_iconic_email_1x)
* [open_iconic_embedded_1x](#open_iconic_embedded_1x)
* [open_iconic_gui_1x](#open_iconic_gui_1x)
* [open_iconic_human_1x](#open_iconic_human_1x)
* [open_iconic_mime_1x](#open_iconic_mime_1x)
* [open_iconic_other_1x](#open_iconic_other_1x)
* [open_iconic_play_1x](#open_iconic_play_1x)
* [open_iconic_text_1x](#open_iconic_text_1x)
* [open_iconic_thing_1x](#open_iconic_thing_1x)
* [open_iconic_weather_1x](#open_iconic_weather_1x)
* [open_iconic_www_1x](#open_iconic_www_1x)
* [open_iconic_arrow_1x1](#open_iconic_arrow_1x1)
* [open_iconic_check_1x1](#open_iconic_check_1x1)
* [open_iconic_embedded_1x1](#open_iconic_embedded_1x1)
* [open_iconic_play_1x1](#open_iconic_play_1x1)
* [open_iconic_thing_1x1](#open_iconic_thing_1x1)
* [open_iconic_weather_1x1](#open_iconic_weather_1x1)
* [open_iconic_all_2x](#open_iconic_all_2x)
* [open_iconic_app_2x](#open_iconic_app_2x)
* [open_iconic_arrow_2x](#open_iconic_arrow_2x)
* [open_iconic_check_2x](#open_iconic_check_2x)
* [open_iconic_email_2x](#open_iconic_email_2x)
* [open_iconic_embedded_2x](#open_iconic_embedded_2x)
* [open_iconic_gui_2x](#open_iconic_gui_2x)
* [open_iconic_human_2x](#open_iconic_human_2x)
* [open_iconic_mime_2x](#open_iconic_mime_2x)
* [open_iconic_other_2x](#open_iconic_other_2x)
* [open_iconic_play_2x](#open_iconic_play_2x)
* [open_iconic_text_2x](#open_iconic_text_2x)
* [open_iconic_thing_2x](#open_iconic_thing_2x)
* [open_iconic_weather_2x](#open_iconic_weather_2x)
* [open_iconic_www_2x](#open_iconic_www_2x)
* [open_iconic_arrow_2x2](#open_iconic_arrow_2x2)
* [open_iconic_check_2x2](#open_iconic_check_2x2)
* [open_iconic_embedded_2x2](#open_iconic_embedded_2x2)
* [open_iconic_play_2x2](#open_iconic_play_2x2)
* [open_iconic_thing_2x2](#open_iconic_thing_2x2)
* [open_iconic_weather_2x2](#open_iconic_weather_2x2)
* [open_iconic_all_4x](#open_iconic_all_4x)
* [open_iconic_app_4x](#open_iconic_app_4x)
* [open_iconic_arrow_4x](#open_iconic_arrow_4x)
* [open_iconic_check_4x](#open_iconic_check_4x)
* [open_iconic_email_4x](#open_iconic_email_4x)
* [open_iconic_embedded_4x](#open_iconic_embedded_4x)
* [open_iconic_gui_4x](#open_iconic_gui_4x)
* [open_iconic_human_4x](#open_iconic_human_4x)
* [open_iconic_mime_4x](#open_iconic_mime_4x)
* [open_iconic_other_4x](#open_iconic_other_4x)
* [open_iconic_play_4x](#open_iconic_play_4x)
* [open_iconic_text_4x](#open_iconic_text_4x)
* [open_iconic_thing_4x](#open_iconic_thing_4x)
* [open_iconic_weather_4x](#open_iconic_weather_4x)
* [open_iconic_www_4x](#open_iconic_www_4x)
* [open_iconic_arrow_4x4](#open_iconic_arrow_4x4)
* [open_iconic_check_4x4](#open_iconic_check_4x4)
* [open_iconic_embedded_4x4](#open_iconic_embedded_4x4)
* [open_iconic_play_4x4](#open_iconic_play_4x4)
* [open_iconic_thing_4x4](#open_iconic_thing_4x4)
* [open_iconic_weather_4x4](#open_iconic_weather_4x4)
* [open_iconic_all_6x](#open_iconic_all_6x)
* [open_iconic_app_6x](#open_iconic_app_6x)
* [open_iconic_arrow_6x](#open_iconic_arrow_6x)
* [open_iconic_check_6x](#open_iconic_check_6x)
* [open_iconic_email_6x](#open_iconic_email_6x)
* [open_iconic_embedded_6x](#open_iconic_embedded_6x)
* [open_iconic_gui_6x](#open_iconic_gui_6x)
* [open_iconic_human_6x](#open_iconic_human_6x)
* [open_iconic_mime_6x](#open_iconic_mime_6x)
* [open_iconic_other_6x](#open_iconic_other_6x)
* [open_iconic_play_6x](#open_iconic_play_6x)
* [open_iconic_text_6x](#open_iconic_text_6x)
* [open_iconic_thing_6x](#open_iconic_thing_6x)
* [open_iconic_weather_6x](#open_iconic_weather_6x)
* [open_iconic_www_6x](#open_iconic_www_6x)
* [open_iconic_all_8x](#open_iconic_all_8x)
* [open_iconic_app_8x](#open_iconic_app_8x)
* [open_iconic_arrow_8x](#open_iconic_arrow_8x)
* [open_iconic_check_8x](#open_iconic_check_8x)
* [open_iconic_email_8x](#open_iconic_email_8x)
* [open_iconic_embedded_8x](#open_iconic_embedded_8x)
* [open_iconic_gui_8x](#open_iconic_gui_8x)
* [open_iconic_human_8x](#open_iconic_human_8x)
* [open_iconic_mime_8x](#open_iconic_mime_8x)
* [open_iconic_other_8x](#open_iconic_other_8x)
* [open_iconic_play_8x](#open_iconic_play_8x)
* [open_iconic_text_8x](#open_iconic_text_8x)
* [open_iconic_thing_8x](#open_iconic_thing_8x)
* [open_iconic_weather_8x](#open_iconic_weather_8x)
* [open_iconic_www_8x](#open_iconic_www_8x)
* [open_iconic_arrow_8x8](#open_iconic_arrow_8x8)
* [open_iconic_check_8x8](#open_iconic_check_8x8)
* [open_iconic_embedded_8x8](#open_iconic_embedded_8x8)
* [open_iconic_play_8x8](#open_iconic_play_8x8)
* [open_iconic_thing_8x8](#open_iconic_thing_8x8)
* [open_iconic_weather_8x8](#open_iconic_weather_8x8)
[tocend]: # (toc end)
# Reference
Open Iconic fonts are generated from png files available from [https://github.com/iconic/open-iconic/tree/master/png](https://github.com/iconic/open-iconic/tree/master/png).
# Build Process
1. A toplevel script [https://github.com/olikraus/u8g2/blob/master/tools/font/png2bdf/test/do_iconic.sh](https://github.com/olikraus/u8g2/blob/master/tools/font/png2bdf/test/do_iconic.sh) handles the creation of .bdf file
2. The script calls png2bdf [https://github.com/olikraus/u8g2/tree/master/tools/font/png2bdf](https://github.com/olikraus/u8g2/tree/master/tools/font/png2bdf), which reads the
png pictures and creates the .bdf files.
3. The .bdf files are now part of the u8g2 font build process
4. During the normal build process, the bdfconv tool creates the u8g2 fonts from the .bdf files.
# Available Icon Collections
The Open Iconic font collection will be available with U8g2 2.22.
The icon collection is split into smaller parts and one font with all icons.
Depending on the flash memory size of the target system, one or multiple sets can be selected. If flash memory is not a problem, then also the font with the complete list can be used.
- check: Yes/no/tick marks
- gui: Icons related to window mangers and other gui elements
- other: Any other icons not fitting anywhere else
- thing: Icon which show things
- app: Applications
- email: E-Mail related icons
- human: People or other human related icons
- play: Icons for meida and audio players
- weather: Weather icons
- arrow: All kind of arrows
- embedded: Icons which might be suitable for a microcontroller project
- mime: File data types
- text: Text editing icons
- www: Internet related icons
- all: All icons
The .bdf file of the "all icon" set can be used to create a custom font with your own selection of icons.
All icon sets are avilable in sizes 1x (8x8 pixel), 2x (16x16 pixel), 4x (32x32 pixel), 6x (48x48 pixel) and 8x (64x64 pixel).
Open iconic fonts are transparent fonts. You can not use a background color and you must use transparent mode for drawing. The base line (reference point) for the icons is the lower left corner of the icons.
# Copyright
Open Iconic Icons are available under the SIL OPEN FONT LICENSE ([https://github.com/iconic/open-iconic](https://github.com/iconic/open-iconic)).
# Font Details
## open_iconic_all_1x
![fntpic/u8g2_font_open_iconic_all_1x_t.png](fntpic/u8g2_font_open_iconic_all_1x_t.png)
## open_iconic_app_1x
![fntpic/u8g2_font_open_iconic_app_1x_t.png](fntpic/u8g2_font_open_iconic_app_1x_t.png)
## open_iconic_arrow_1x
![fntpic/u8g2_font_open_iconic_arrow_1x_t.png](fntpic/u8g2_font_open_iconic_arrow_1x_t.png)
## open_iconic_check_1x
![fntpic/u8g2_font_open_iconic_check_1x_t.png](fntpic/u8g2_font_open_iconic_check_1x_t.png)
## open_iconic_email_1x
![fntpic/u8g2_font_open_iconic_email_1x_t.png](fntpic/u8g2_font_open_iconic_email_1x_t.png)
## open_iconic_embedded_1x
![fntpic/u8g2_font_open_iconic_embedded_1x_t.png](fntpic/u8g2_font_open_iconic_embedded_1x_t.png)
## open_iconic_gui_1x
![fntpic/u8g2_font_open_iconic_gui_1x_t.png](fntpic/u8g2_font_open_iconic_gui_1x_t.png)
## open_iconic_human_1x
![fntpic/u8g2_font_open_iconic_human_1x_t.png](fntpic/u8g2_font_open_iconic_human_1x_t.png)
## open_iconic_mime_1x
![fntpic/u8g2_font_open_iconic_mime_1x_t.png](fntpic/u8g2_font_open_iconic_mime_1x_t.png)
## open_iconic_other_1x
![fntpic/u8g2_font_open_iconic_other_1x_t.png](fntpic/u8g2_font_open_iconic_other_1x_t.png)
## open_iconic_play_1x
![fntpic/u8g2_font_open_iconic_play_1x_t.png](fntpic/u8g2_font_open_iconic_play_1x_t.png)
## open_iconic_text_1x
![fntpic/u8g2_font_open_iconic_text_1x_t.png](fntpic/u8g2_font_open_iconic_text_1x_t.png)
## open_iconic_thing_1x
![fntpic/u8g2_font_open_iconic_thing_1x_t.png](fntpic/u8g2_font_open_iconic_thing_1x_t.png)
## open_iconic_weather_1x
![fntpic/u8g2_font_open_iconic_weather_1x_t.png](fntpic/u8g2_font_open_iconic_weather_1x_t.png)
## open_iconic_www_1x
![fntpic/u8g2_font_open_iconic_www_1x_t.png](fntpic/u8g2_font_open_iconic_www_1x_t.png)
## open_iconic_arrow_1x1
![fntpic/u8x8_font_open_iconic_arrow_1x1.png](fntpic/u8x8_font_open_iconic_arrow_1x1.png)
## open_iconic_check_1x1
![fntpic/u8x8_font_open_iconic_check_1x1.png](fntpic/u8x8_font_open_iconic_check_1x1.png)
## open_iconic_embedded_1x1
![fntpic/u8x8_font_open_iconic_embedded_1x1.png](fntpic/u8x8_font_open_iconic_embedded_1x1.png)
## open_iconic_play_1x1
![fntpic/u8x8_font_open_iconic_play_1x1.png](fntpic/u8x8_font_open_iconic_play_1x1.png)
## open_iconic_thing_1x1
![fntpic/u8x8_font_open_iconic_thing_1x1.png](fntpic/u8x8_font_open_iconic_thing_1x1.png)
## open_iconic_weather_1x1
![fntpic/u8x8_font_open_iconic_weather_1x1.png](fntpic/u8x8_font_open_iconic_weather_1x1.png)
## open_iconic_all_2x
![fntpic/u8g2_font_open_iconic_all_2x_t.png](fntpic/u8g2_font_open_iconic_all_2x_t.png)
## open_iconic_app_2x
![fntpic/u8g2_font_open_iconic_app_2x_t.png](fntpic/u8g2_font_open_iconic_app_2x_t.png)
## open_iconic_arrow_2x
![fntpic/u8g2_font_open_iconic_arrow_2x_t.png](fntpic/u8g2_font_open_iconic_arrow_2x_t.png)
## open_iconic_check_2x
![fntpic/u8g2_font_open_iconic_check_2x_t.png](fntpic/u8g2_font_open_iconic_check_2x_t.png)
## open_iconic_email_2x
![fntpic/u8g2_font_open_iconic_email_2x_t.png](fntpic/u8g2_font_open_iconic_email_2x_t.png)
## open_iconic_embedded_2x
![fntpic/u8g2_font_open_iconic_embedded_2x_t.png](fntpic/u8g2_font_open_iconic_embedded_2x_t.png)
## open_iconic_gui_2x
![fntpic/u8g2_font_open_iconic_gui_2x_t.png](fntpic/u8g2_font_open_iconic_gui_2x_t.png)
## open_iconic_human_2x
![fntpic/u8g2_font_open_iconic_human_2x_t.png](fntpic/u8g2_font_open_iconic_human_2x_t.png)
## open_iconic_mime_2x
![fntpic/u8g2_font_open_iconic_mime_2x_t.png](fntpic/u8g2_font_open_iconic_mime_2x_t.png)
## open_iconic_other_2x
![fntpic/u8g2_font_open_iconic_other_2x_t.png](fntpic/u8g2_font_open_iconic_other_2x_t.png)
## open_iconic_play_2x
![fntpic/u8g2_font_open_iconic_play_2x_t.png](fntpic/u8g2_font_open_iconic_play_2x_t.png)
## open_iconic_text_2x
![fntpic/u8g2_font_open_iconic_text_2x_t.png](fntpic/u8g2_font_open_iconic_text_2x_t.png)
## open_iconic_thing_2x
![fntpic/u8g2_font_open_iconic_thing_2x_t.png](fntpic/u8g2_font_open_iconic_thing_2x_t.png)
## open_iconic_weather_2x
![fntpic/u8g2_font_open_iconic_weather_2x_t.png](fntpic/u8g2_font_open_iconic_weather_2x_t.png)
## open_iconic_www_2x
![fntpic/u8g2_font_open_iconic_www_2x_t.png](fntpic/u8g2_font_open_iconic_www_2x_t.png)
## open_iconic_arrow_2x2
![fntpic/u8x8_font_open_iconic_arrow_2x2.png](fntpic/u8x8_font_open_iconic_arrow_2x2.png)
## open_iconic_check_2x2
![fntpic/u8x8_font_open_iconic_check_2x2.png](fntpic/u8x8_font_open_iconic_check_2x2.png)
## open_iconic_embedded_2x2
![fntpic/u8x8_font_open_iconic_embedded_2x2.png](fntpic/u8x8_font_open_iconic_embedded_2x2.png)
## open_iconic_play_2x2
![fntpic/u8x8_font_open_iconic_play_2x2.png](fntpic/u8x8_font_open_iconic_play_2x2.png)
## open_iconic_thing_2x2
![fntpic/u8x8_font_open_iconic_thing_2x2.png](fntpic/u8x8_font_open_iconic_thing_2x2.png)
## open_iconic_weather_2x2
![fntpic/u8x8_font_open_iconic_weather_2x2.png](fntpic/u8x8_font_open_iconic_weather_2x2.png)
## open_iconic_all_4x
![fntpic/u8g2_font_open_iconic_all_4x_t.png](fntpic/u8g2_font_open_iconic_all_4x_t.png)
## open_iconic_app_4x
![fntpic/u8g2_font_open_iconic_app_4x_t.png](fntpic/u8g2_font_open_iconic_app_4x_t.png)
## open_iconic_arrow_4x
![fntpic/u8g2_font_open_iconic_arrow_4x_t.png](fntpic/u8g2_font_open_iconic_arrow_4x_t.png)
## open_iconic_check_4x
![fntpic/u8g2_font_open_iconic_check_4x_t.png](fntpic/u8g2_font_open_iconic_check_4x_t.png)
## open_iconic_email_4x
![fntpic/u8g2_font_open_iconic_email_4x_t.png](fntpic/u8g2_font_open_iconic_email_4x_t.png)
## open_iconic_embedded_4x
![fntpic/u8g2_font_open_iconic_embedded_4x_t.png](fntpic/u8g2_font_open_iconic_embedded_4x_t.png)
## open_iconic_gui_4x
![fntpic/u8g2_font_open_iconic_gui_4x_t.png](fntpic/u8g2_font_open_iconic_gui_4x_t.png)
## open_iconic_human_4x
![fntpic/u8g2_font_open_iconic_human_4x_t.png](fntpic/u8g2_font_open_iconic_human_4x_t.png)
## open_iconic_mime_4x
![fntpic/u8g2_font_open_iconic_mime_4x_t.png](fntpic/u8g2_font_open_iconic_mime_4x_t.png)
## open_iconic_other_4x
![fntpic/u8g2_font_open_iconic_other_4x_t.png](fntpic/u8g2_font_open_iconic_other_4x_t.png)
## open_iconic_play_4x
![fntpic/u8g2_font_open_iconic_play_4x_t.png](fntpic/u8g2_font_open_iconic_play_4x_t.png)
## open_iconic_text_4x
![fntpic/u8g2_font_open_iconic_text_4x_t.png](fntpic/u8g2_font_open_iconic_text_4x_t.png)
## open_iconic_thing_4x
![fntpic/u8g2_font_open_iconic_thing_4x_t.png](fntpic/u8g2_font_open_iconic_thing_4x_t.png)
## open_iconic_weather_4x
![fntpic/u8g2_font_open_iconic_weather_4x_t.png](fntpic/u8g2_font_open_iconic_weather_4x_t.png)
## open_iconic_www_4x
![fntpic/u8g2_font_open_iconic_www_4x_t.png](fntpic/u8g2_font_open_iconic_www_4x_t.png)
## open_iconic_arrow_4x4
![fntpic/u8x8_font_open_iconic_arrow_4x4.png](fntpic/u8x8_font_open_iconic_arrow_4x4.png)
## open_iconic_check_4x4
![fntpic/u8x8_font_open_iconic_check_4x4.png](fntpic/u8x8_font_open_iconic_check_4x4.png)
## open_iconic_embedded_4x4
![fntpic/u8x8_font_open_iconic_embedded_4x4.png](fntpic/u8x8_font_open_iconic_embedded_4x4.png)
## open_iconic_play_4x4
![fntpic/u8x8_font_open_iconic_play_4x4.png](fntpic/u8x8_font_open_iconic_play_4x4.png)
## open_iconic_thing_4x4
![fntpic/u8x8_font_open_iconic_thing_4x4.png](fntpic/u8x8_font_open_iconic_thing_4x4.png)
## open_iconic_weather_4x4
![fntpic/u8x8_font_open_iconic_weather_4x4.png](fntpic/u8x8_font_open_iconic_weather_4x4.png)
## open_iconic_all_6x
![fntpic/u8g2_font_open_iconic_all_6x_t.png](fntpic/u8g2_font_open_iconic_all_6x_t.png)
## open_iconic_app_6x
![fntpic/u8g2_font_open_iconic_app_6x_t.png](fntpic/u8g2_font_open_iconic_app_6x_t.png)
## open_iconic_arrow_6x
![fntpic/u8g2_font_open_iconic_arrow_6x_t.png](fntpic/u8g2_font_open_iconic_arrow_6x_t.png)
## open_iconic_check_6x
![fntpic/u8g2_font_open_iconic_check_6x_t.png](fntpic/u8g2_font_open_iconic_check_6x_t.png)
## open_iconic_email_6x
![fntpic/u8g2_font_open_iconic_email_6x_t.png](fntpic/u8g2_font_open_iconic_email_6x_t.png)
## open_iconic_embedded_6x
![fntpic/u8g2_font_open_iconic_embedded_6x_t.png](fntpic/u8g2_font_open_iconic_embedded_6x_t.png)
## open_iconic_gui_6x
![fntpic/u8g2_font_open_iconic_gui_6x_t.png](fntpic/u8g2_font_open_iconic_gui_6x_t.png)
## open_iconic_human_6x
![fntpic/u8g2_font_open_iconic_human_6x_t.png](fntpic/u8g2_font_open_iconic_human_6x_t.png)
## open_iconic_mime_6x
![fntpic/u8g2_font_open_iconic_mime_6x_t.png](fntpic/u8g2_font_open_iconic_mime_6x_t.png)
## open_iconic_other_6x
![fntpic/u8g2_font_open_iconic_other_6x_t.png](fntpic/u8g2_font_open_iconic_other_6x_t.png)
## open_iconic_play_6x
![fntpic/u8g2_font_open_iconic_play_6x_t.png](fntpic/u8g2_font_open_iconic_play_6x_t.png)
## open_iconic_text_6x
![fntpic/u8g2_font_open_iconic_text_6x_t.png](fntpic/u8g2_font_open_iconic_text_6x_t.png)
## open_iconic_thing_6x
![fntpic/u8g2_font_open_iconic_thing_6x_t.png](fntpic/u8g2_font_open_iconic_thing_6x_t.png)
## open_iconic_weather_6x
![fntpic/u8g2_font_open_iconic_weather_6x_t.png](fntpic/u8g2_font_open_iconic_weather_6x_t.png)
## open_iconic_www_6x
![fntpic/u8g2_font_open_iconic_www_6x_t.png](fntpic/u8g2_font_open_iconic_www_6x_t.png)
## open_iconic_all_8x
![fntpic/u8g2_font_open_iconic_all_8x_t.png](fntpic/u8g2_font_open_iconic_all_8x_t.png)
## open_iconic_app_8x
![fntpic/u8g2_font_open_iconic_app_8x_t.png](fntpic/u8g2_font_open_iconic_app_8x_t.png)
## open_iconic_arrow_8x
![fntpic/u8g2_font_open_iconic_arrow_8x_t.png](fntpic/u8g2_font_open_iconic_arrow_8x_t.png)
## open_iconic_check_8x
![fntpic/u8g2_font_open_iconic_check_8x_t.png](fntpic/u8g2_font_open_iconic_check_8x_t.png)
## open_iconic_email_8x
![fntpic/u8g2_font_open_iconic_email_8x_t.png](fntpic/u8g2_font_open_iconic_email_8x_t.png)
## open_iconic_embedded_8x
![fntpic/u8g2_font_open_iconic_embedded_8x_t.png](fntpic/u8g2_font_open_iconic_embedded_8x_t.png)
## open_iconic_gui_8x
![fntpic/u8g2_font_open_iconic_gui_8x_t.png](fntpic/u8g2_font_open_iconic_gui_8x_t.png)
## open_iconic_human_8x
![fntpic/u8g2_font_open_iconic_human_8x_t.png](fntpic/u8g2_font_open_iconic_human_8x_t.png)
## open_iconic_mime_8x
![fntpic/u8g2_font_open_iconic_mime_8x_t.png](fntpic/u8g2_font_open_iconic_mime_8x_t.png)
## open_iconic_other_8x
![fntpic/u8g2_font_open_iconic_other_8x_t.png](fntpic/u8g2_font_open_iconic_other_8x_t.png)
## open_iconic_play_8x
![fntpic/u8g2_font_open_iconic_play_8x_t.png](fntpic/u8g2_font_open_iconic_play_8x_t.png)
## open_iconic_text_8x
![fntpic/u8g2_font_open_iconic_text_8x_t.png](fntpic/u8g2_font_open_iconic_text_8x_t.png)
## open_iconic_thing_8x
![fntpic/u8g2_font_open_iconic_thing_8x_t.png](fntpic/u8g2_font_open_iconic_thing_8x_t.png)
## open_iconic_weather_8x
![fntpic/u8g2_font_open_iconic_weather_8x_t.png](fntpic/u8g2_font_open_iconic_weather_8x_t.png)
## open_iconic_www_8x
![fntpic/u8g2_font_open_iconic_www_8x_t.png](fntpic/u8g2_font_open_iconic_www_8x_t.png)
## open_iconic_arrow_8x8
![fntpic/u8x8_font_open_iconic_arrow_8x8.png](fntpic/u8x8_font_open_iconic_arrow_8x8.png)
## open_iconic_check_8x8
![fntpic/u8x8_font_open_iconic_check_8x8.png](fntpic/u8x8_font_open_iconic_check_8x8.png)
## open_iconic_embedded_8x8
![fntpic/u8x8_font_open_iconic_embedded_8x8.png](fntpic/u8x8_font_open_iconic_embedded_8x8.png)
## open_iconic_play_8x8
![fntpic/u8x8_font_open_iconic_play_8x8.png](fntpic/u8x8_font_open_iconic_play_8x8.png)
## open_iconic_thing_8x8
![fntpic/u8x8_font_open_iconic_thing_8x8.png](fntpic/u8x8_font_open_iconic_thing_8x8.png)
## open_iconic_weather_8x8
![fntpic/u8x8_font_open_iconic_weather_8x8.png](fntpic/u8x8_font_open_iconic_weather_8x8.png)
+53
View File
@@ -0,0 +1,53 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [calblk36](#calblk36)
* [callite24](#callite24)
[tocend]: # (toc end)
# Reference
Contributed via issue https://github.com/olikraus/u8g2/issues/1263
Fonts will be available with U8g2 v2.25.
# Copyright
```
* Copyright (C) 2010 by Integrated Mapping Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
```
# Font Pictures
## calblk36
![fntpic/u8g2_font_calblk36_tr.png](fntpic/u8g2_font_calblk36_tr.png)
## callite24
![fntpic/u8g2_font_callite24_tr.png](fntpic/u8g2_font_callite24_tr.png)
+252
View File
@@ -0,0 +1,252 @@
[tocstart]: # (toc start)
* [Inconsolata LGC](#inconsolata-lgc)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [inr16](#inr16)
* [inr19](#inr19)
* [inr21](#inr21)
* [inr24](#inr24)
* [inr27](#inr27)
* [inr30](#inr30)
* [inr33](#inr33)
* [inr38](#inr38)
* [inr42](#inr42)
* [inr46](#inr46)
* [inr49](#inr49)
* [inr53](#inr53)
* [inr57](#inr57)
* [inr62](#inr62)
* [inr21_2x4](#inr21_2x4)
* [inr33_3x6](#inr33_3x6)
* [inr46_4x8](#inr46_4x8)
* [inb16](#inb16)
* [inb19](#inb19)
* [inb21](#inb21)
* [inb24](#inb24)
* [inb27](#inb27)
* [inb30](#inb30)
* [inb33](#inb33)
* [inb38](#inb38)
* [inb42](#inb42)
* [inb46](#inb46)
* [inb49](#inb49)
* [inb53](#inb53)
* [inb57](#inb57)
* [inb63](#inb63)
* [inb21_2x4](#inb21_2x4)
* [inb33_3x6](#inb33_3x6)
* [inb46_4x8](#inb46_4x8)
[tocend]: # (toc end)
# Inconsolata LGC
## Reference
Download location at openfontlibrary.org: http://openfontlibrary.org/en/font/inconsolata-lgc
## Copyright
License (according to openfontlibrary.org): [OFL (SIL Open Font License)](http://scripts.sil.org/OFL)
Font Copyright Statement:
Original Roman version created by Raph Levien using his own tools and FontForge. Copyright 2006 Raph Levien. Hellenisation of the Roman font, by Dimosthenis Kaponis, using FontForge. Hellenic glyphs Copyright 2010-2012 Dimosthenis Kaponis. Released under the SIL Open Font License, http://scripts.sil.org/OFL. Cyrillic glyphs added by MihailJP, using FontForge. Cyrillic glyphs Copyright 2012 MihailJP. Released under the SIL Open Font License, http://scripts.sil.org/OFL. Some glyphs modified by Greg Omelaenko, using FontForge.
README from the zip archive:
Inconsolata is one of the most suitable font for programmers created by Raph
Levien. Since the original Inconsolata does not contain Cyrillic alphabet,
it was slightly inconvenient for not a few programmers from Russia.
Inconsolata LGC is a modified version of Inconsolata with added the Cyrillic
alphabet which directly descends from Inconsolata Hellenic supporting modern
Greek.
Inconsolata LGC is licensed under SIL OFL.
# Font Details
## inr16
![fntpic/u8g2_font_inr16_mf.png](fntpic/u8g2_font_inr16_mf.png)
![fntpic/u8g2_font_inr16_mr.png](fntpic/u8g2_font_inr16_mr.png)
![fntpic/u8g2_font_inr16_mn.png](fntpic/u8g2_font_inr16_mn.png)
## inr19
![fntpic/u8g2_font_inr19_mf.png](fntpic/u8g2_font_inr19_mf.png)
![fntpic/u8g2_font_inr19_mr.png](fntpic/u8g2_font_inr19_mr.png)
![fntpic/u8g2_font_inr19_mn.png](fntpic/u8g2_font_inr19_mn.png)
## inr21
![fntpic/u8g2_font_inr21_mf.png](fntpic/u8g2_font_inr21_mf.png)
![fntpic/u8g2_font_inr21_mr.png](fntpic/u8g2_font_inr21_mr.png)
![fntpic/u8g2_font_inr21_mn.png](fntpic/u8g2_font_inr21_mn.png)
## inr24
![fntpic/u8g2_font_inr24_mf.png](fntpic/u8g2_font_inr24_mf.png)
![fntpic/u8g2_font_inr24_mr.png](fntpic/u8g2_font_inr24_mr.png)
![fntpic/u8g2_font_inr24_mn.png](fntpic/u8g2_font_inr24_mn.png)
![fntpic/u8g2_font_inr24_t_cyrillic.png](fntpic/u8g2_font_inr24_t_cyrillic.png)
## inr27
![fntpic/u8g2_font_inr27_mf.png](fntpic/u8g2_font_inr27_mf.png)
![fntpic/u8g2_font_inr27_mr.png](fntpic/u8g2_font_inr27_mr.png)
![fntpic/u8g2_font_inr27_mn.png](fntpic/u8g2_font_inr27_mn.png)
![fntpic/u8g2_font_inr27_t_cyrillic.png](fntpic/u8g2_font_inr27_t_cyrillic.png)
## inr30
![fntpic/u8g2_font_inr30_mf.png](fntpic/u8g2_font_inr30_mf.png)
![fntpic/u8g2_font_inr30_mr.png](fntpic/u8g2_font_inr30_mr.png)
![fntpic/u8g2_font_inr30_mn.png](fntpic/u8g2_font_inr30_mn.png)
![fntpic/u8g2_font_inr30_t_cyrillic.png](fntpic/u8g2_font_inr30_t_cyrillic.png)
## inr33
![fntpic/u8g2_font_inr33_mf.png](fntpic/u8g2_font_inr33_mf.png)
![fntpic/u8g2_font_inr33_mr.png](fntpic/u8g2_font_inr33_mr.png)
![fntpic/u8g2_font_inr33_mn.png](fntpic/u8g2_font_inr33_mn.png)
![fntpic/u8g2_font_inr33_t_cyrillic.png](fntpic/u8g2_font_inr33_t_cyrillic.png)
## inr38
![fntpic/u8g2_font_inr38_mf.png](fntpic/u8g2_font_inr38_mf.png)
![fntpic/u8g2_font_inr38_mr.png](fntpic/u8g2_font_inr38_mr.png)
![fntpic/u8g2_font_inr38_mn.png](fntpic/u8g2_font_inr38_mn.png)
![fntpic/u8g2_font_inr38_t_cyrillic.png](fntpic/u8g2_font_inr38_t_cyrillic.png)
## inr42
![fntpic/u8g2_font_inr42_mf.png](fntpic/u8g2_font_inr42_mf.png)
![fntpic/u8g2_font_inr42_mr.png](fntpic/u8g2_font_inr42_mr.png)
![fntpic/u8g2_font_inr42_mn.png](fntpic/u8g2_font_inr42_mn.png)
![fntpic/u8g2_font_inr42_t_cyrillic.png](fntpic/u8g2_font_inr42_t_cyrillic.png)
## inr46
![fntpic/u8g2_font_inr46_mf.png](fntpic/u8g2_font_inr46_mf.png)
![fntpic/u8g2_font_inr46_mr.png](fntpic/u8g2_font_inr46_mr.png)
![fntpic/u8g2_font_inr46_mn.png](fntpic/u8g2_font_inr46_mn.png)
![fntpic/u8g2_font_inr46_t_cyrillic.png](fntpic/u8g2_font_inr46_t_cyrillic.png)
## inr49
![fntpic/u8g2_font_inr49_mf.png](fntpic/u8g2_font_inr49_mf.png)
![fntpic/u8g2_font_inr49_mr.png](fntpic/u8g2_font_inr49_mr.png)
![fntpic/u8g2_font_inr49_mn.png](fntpic/u8g2_font_inr49_mn.png)
![fntpic/u8g2_font_inr49_t_cyrillic.png](fntpic/u8g2_font_inr49_t_cyrillic.png)
## inr53
![fntpic/u8g2_font_inr53_mf.png](fntpic/u8g2_font_inr53_mf.png)
![fntpic/u8g2_font_inr53_mr.png](fntpic/u8g2_font_inr53_mr.png)
![fntpic/u8g2_font_inr53_mn.png](fntpic/u8g2_font_inr53_mn.png)
![fntpic/u8g2_font_inr53_t_cyrillic.png](fntpic/u8g2_font_inr53_t_cyrillic.png)
## inr57
![fntpic/u8g2_font_inr57_mn.png](fntpic/u8g2_font_inr57_mn.png)
## inr62
![fntpic/u8g2_font_inr62_mn.png](fntpic/u8g2_font_inr62_mn.png)
## inr21_2x4
![fntpic/u8x8_font_inr21_2x4_f.png](fntpic/u8x8_font_inr21_2x4_f.png)
![fntpic/u8x8_font_inr21_2x4_r.png](fntpic/u8x8_font_inr21_2x4_r.png)
![fntpic/u8x8_font_inr21_2x4_n.png](fntpic/u8x8_font_inr21_2x4_n.png)
## inr33_3x6
![fntpic/u8x8_font_inr33_3x6_f.png](fntpic/u8x8_font_inr33_3x6_f.png)
![fntpic/u8x8_font_inr33_3x6_r.png](fntpic/u8x8_font_inr33_3x6_r.png)
![fntpic/u8x8_font_inr33_3x6_n.png](fntpic/u8x8_font_inr33_3x6_n.png)
## inr46_4x8
![fntpic/u8x8_font_inr46_4x8_f.png](fntpic/u8x8_font_inr46_4x8_f.png)
![fntpic/u8x8_font_inr46_4x8_r.png](fntpic/u8x8_font_inr46_4x8_r.png)
![fntpic/u8x8_font_inr46_4x8_n.png](fntpic/u8x8_font_inr46_4x8_n.png)
## inb16
![fntpic/u8g2_font_inb16_mf.png](fntpic/u8g2_font_inb16_mf.png)
![fntpic/u8g2_font_inb16_mr.png](fntpic/u8g2_font_inb16_mr.png)
![fntpic/u8g2_font_inb16_mn.png](fntpic/u8g2_font_inb16_mn.png)
## inb19
![fntpic/u8g2_font_inb19_mf.png](fntpic/u8g2_font_inb19_mf.png)
![fntpic/u8g2_font_inb19_mr.png](fntpic/u8g2_font_inb19_mr.png)
![fntpic/u8g2_font_inb19_mn.png](fntpic/u8g2_font_inb19_mn.png)
## inb21
![fntpic/u8g2_font_inb21_mf.png](fntpic/u8g2_font_inb21_mf.png)
![fntpic/u8g2_font_inb21_mr.png](fntpic/u8g2_font_inb21_mr.png)
![fntpic/u8g2_font_inb21_mn.png](fntpic/u8g2_font_inb21_mn.png)
## inb24
![fntpic/u8g2_font_inb24_mf.png](fntpic/u8g2_font_inb24_mf.png)
![fntpic/u8g2_font_inb24_mr.png](fntpic/u8g2_font_inb24_mr.png)
![fntpic/u8g2_font_inb24_mn.png](fntpic/u8g2_font_inb24_mn.png)
## inb27
![fntpic/u8g2_font_inb27_mf.png](fntpic/u8g2_font_inb27_mf.png)
![fntpic/u8g2_font_inb27_mr.png](fntpic/u8g2_font_inb27_mr.png)
![fntpic/u8g2_font_inb27_mn.png](fntpic/u8g2_font_inb27_mn.png)
## inb30
![fntpic/u8g2_font_inb30_mf.png](fntpic/u8g2_font_inb30_mf.png)
![fntpic/u8g2_font_inb30_mr.png](fntpic/u8g2_font_inb30_mr.png)
![fntpic/u8g2_font_inb30_mn.png](fntpic/u8g2_font_inb30_mn.png)
## inb33
![fntpic/u8g2_font_inb33_mf.png](fntpic/u8g2_font_inb33_mf.png)
![fntpic/u8g2_font_inb33_mr.png](fntpic/u8g2_font_inb33_mr.png)
![fntpic/u8g2_font_inb33_mn.png](fntpic/u8g2_font_inb33_mn.png)
## inb38
![fntpic/u8g2_font_inb38_mf.png](fntpic/u8g2_font_inb38_mf.png)
![fntpic/u8g2_font_inb38_mr.png](fntpic/u8g2_font_inb38_mr.png)
![fntpic/u8g2_font_inb38_mn.png](fntpic/u8g2_font_inb38_mn.png)
## inb42
![fntpic/u8g2_font_inb42_mf.png](fntpic/u8g2_font_inb42_mf.png)
![fntpic/u8g2_font_inb42_mr.png](fntpic/u8g2_font_inb42_mr.png)
![fntpic/u8g2_font_inb42_mn.png](fntpic/u8g2_font_inb42_mn.png)
## inb46
![fntpic/u8g2_font_inb46_mf.png](fntpic/u8g2_font_inb46_mf.png)
![fntpic/u8g2_font_inb46_mr.png](fntpic/u8g2_font_inb46_mr.png)
![fntpic/u8g2_font_inb46_mn.png](fntpic/u8g2_font_inb46_mn.png)
## inb49
![fntpic/u8g2_font_inb49_mf.png](fntpic/u8g2_font_inb49_mf.png)
![fntpic/u8g2_font_inb49_mr.png](fntpic/u8g2_font_inb49_mr.png)
![fntpic/u8g2_font_inb49_mn.png](fntpic/u8g2_font_inb49_mn.png)
## inb53
![fntpic/u8g2_font_inb53_mf.png](fntpic/u8g2_font_inb53_mf.png)
![fntpic/u8g2_font_inb53_mr.png](fntpic/u8g2_font_inb53_mr.png)
![fntpic/u8g2_font_inb53_mn.png](fntpic/u8g2_font_inb53_mn.png)
## inb57
![fntpic/u8g2_font_inb57_mn.png](fntpic/u8g2_font_inb57_mn.png)
## inb63
![fntpic/u8g2_font_inb63_mn.png](fntpic/u8g2_font_inb63_mn.png)
## inb21_2x4
![fntpic/u8x8_font_inb21_2x4_f.png](fntpic/u8x8_font_inb21_2x4_f.png)
![fntpic/u8x8_font_inb21_2x4_r.png](fntpic/u8x8_font_inb21_2x4_r.png)
![fntpic/u8x8_font_inb21_2x4_n.png](fntpic/u8x8_font_inb21_2x4_n.png)
## inb33_3x6
![fntpic/u8x8_font_inb33_3x6_f.png](fntpic/u8x8_font_inb33_3x6_f.png)
![fntpic/u8x8_font_inb33_3x6_r.png](fntpic/u8x8_font_inb33_3x6_r.png)
![fntpic/u8x8_font_inb33_3x6_n.png](fntpic/u8x8_font_inb33_3x6_n.png)
## inb46_4x8
![fntpic/u8x8_font_inb46_4x8_f.png](fntpic/u8x8_font_inb46_4x8_f.png)
![fntpic/u8x8_font_inb46_4x8_r.png](fntpic/u8x8_font_inb46_4x8_r.png)
![fntpic/u8x8_font_inb46_4x8_n.png](fntpic/u8x8_font_inb46_4x8_n.png)
+104
View File
@@ -0,0 +1,104 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [BBSesque](#bbsesque)
* [Born2bSportySlab](#born2bsportyslab)
* [Born2bSportyV2](#born2bsportyv2)
* [CursivePixel](#cursivepixel)
* [Engrish](#engrish)
* [ImpactBits](#impactbits)
* [IPAandRUSLCD](#ipaandruslcd)
* [PixelTheatre](#pixeltheatre)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "JapanYoshi".
Fonts will be available with U8g2 v2.25.
# Copyright
BBSesque by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=670
license : (Public Domain)
Born2bSportySlab by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1084
license : (Public Domain)
Born2bSportyV2 by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=383
license : (Public Domain)
CursivePixel by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=858
license : (Public Domain)
Engrish by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=369
license : (Public Domain)
ImpactBits by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=846
license : (Public Domain)
IPAandRUSLCD by JapanYoshi
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=355
license : (Creative Commons Attribution)
U8g2 v2.32
PixelTheatre by JapanYoshi
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1267
# Font Pictures
## BBSesque
![fntpic/u8g2_font_BBSesque_tf.png](fntpic/u8g2_font_BBSesque_tf.png)
![fntpic/u8g2_font_BBSesque_tr.png](fntpic/u8g2_font_BBSesque_tr.png)
![fntpic/u8g2_font_BBSesque_te.png](fntpic/u8g2_font_BBSesque_te.png)
## Born2bSportySlab
![fntpic/u8g2_font_Born2bSportySlab_tf.png](fntpic/u8g2_font_Born2bSportySlab_tf.png)
![fntpic/u8g2_font_Born2bSportySlab_tr.png](fntpic/u8g2_font_Born2bSportySlab_tr.png)
![fntpic/u8g2_font_Born2bSportySlab_te.png](fntpic/u8g2_font_Born2bSportySlab_te.png)
![fntpic/u8g2_font_Born2bSportySlab_t_all.png](fntpic/u8g2_font_Born2bSportySlab_t_all.png)
## Born2bSportyV2
![fntpic/u8g2_font_Born2bSportyV2_tf.png](fntpic/u8g2_font_Born2bSportyV2_tf.png)
![fntpic/u8g2_font_Born2bSportyV2_tr.png](fntpic/u8g2_font_Born2bSportyV2_tr.png)
![fntpic/u8g2_font_Born2bSportyV2_te.png](fntpic/u8g2_font_Born2bSportyV2_te.png)
## CursivePixel
![fntpic/u8g2_font_CursivePixel_tr.png](fntpic/u8g2_font_CursivePixel_tr.png)
## Engrish
![fntpic/u8g2_font_Engrish_tf.png](fntpic/u8g2_font_Engrish_tf.png)
![fntpic/u8g2_font_Engrish_tr.png](fntpic/u8g2_font_Engrish_tr.png)
## ImpactBits
![fntpic/u8g2_font_ImpactBits_tr.png](fntpic/u8g2_font_ImpactBits_tr.png)
## IPAandRUSLCD
![fntpic/u8g2_font_IPAandRUSLCD_tf.png](fntpic/u8g2_font_IPAandRUSLCD_tf.png)
![fntpic/u8g2_font_IPAandRUSLCD_tr.png](fntpic/u8g2_font_IPAandRUSLCD_tr.png)
![fntpic/u8g2_font_IPAandRUSLCD_te.png](fntpic/u8g2_font_IPAandRUSLCD_te.png)
## PixelTheatre
![fntpic/u8g2_font_PixelTheatre_tr.png](fntpic/u8g2_font_PixelTheatre_tr.png)
![fntpic/u8g2_font_PixelTheatre_te.png](fntpic/u8g2_font_PixelTheatre_te.png)
+59
View File
@@ -0,0 +1,59 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [celibatemonk](#celibatemonk)
* [disrespectfulteenager](#disrespectfulteenager)
* [michaelmouse](#michaelmouse)
* [sandyforest](#sandyforest)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "JayWright".
Fonts will be available with U8g2 v2.25.
# Copyright
CelibateMonk by JayWright
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=911
DisrespectfulTeenager by JayWright
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=918
MichaelMouse by JayWright
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=913
SandyForest by JayWright
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=899
# Font Pictures
## celibatemonk
![fntpic/u8g2_font_celibatemonk_tr.png](fntpic/u8g2_font_celibatemonk_tr.png)
## disrespectfulteenager
![fntpic/u8g2_font_disrespectfulteenager_tu.png](fntpic/u8g2_font_disrespectfulteenager_tu.png)
## michaelmouse
![fntpic/u8g2_font_michaelmouse_tu.png](fntpic/u8g2_font_michaelmouse_tu.png)
## sandyforest
![fntpic/u8g2_font_sandyforest_tr.png](fntpic/u8g2_font_sandyforest_tr.png)
![fntpic/u8g2_font_sandyforest_tn.png](fntpic/u8g2_font_sandyforest_tn.png)
![fntpic/u8g2_font_sandyforest_tu.png](fntpic/u8g2_font_sandyforest_tu.png)
+65
View File
@@ -0,0 +1,65 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [diodesemimono](#diodesemimono)
* [questgiver](#questgiver)
* [seraphimb1](#seraphimb1)
* [resoledbold](#resoledbold)
* [resoledmedium](#resoledmedium)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "JosephKnightcom".
Fonts will be available with U8g2 v2.25.
# Copyright
Seraphimb1 by JosephKnightcom
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=946
Questgiver by JosephKnightcom
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=947
DiodeSemiMono by JosephKnightcom
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1133
U8g2 v2.32
Resoled-Medium by JosephKnight.com
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9015
Resoled-Bold by JosephKnight.com
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=9016
# Font Pictures
## diodesemimono
![fntpic/u8g2_font_diodesemimono_tr.png](fntpic/u8g2_font_diodesemimono_tr.png)
## questgiver
![fntpic/u8g2_font_questgiver_tr.png](fntpic/u8g2_font_questgiver_tr.png)
## seraphimb1
![fntpic/u8g2_font_seraphimb1_tr.png](fntpic/u8g2_font_seraphimb1_tr.png)
## resoledbold
![fntpic/u8g2_font_resoledbold_tr.png](fntpic/u8g2_font_resoledbold_tr.png)
## resoledmedium
![fntpic/u8g2_font_resoledmedium_tr.png](fntpic/u8g2_font_resoledmedium_tr.png)
+139
View File
@@ -0,0 +1,139 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [logisoso16](#logisoso16)
* [logisoso18](#logisoso18)
* [logisoso20](#logisoso20)
* [logisoso22](#logisoso22)
* [logisoso24](#logisoso24)
* [logisoso26](#logisoso26)
* [logisoso28](#logisoso28)
* [logisoso30](#logisoso30)
* [logisoso32](#logisoso32)
* [logisoso34](#logisoso34)
* [logisoso38](#logisoso38)
* [logisoso42](#logisoso42)
* [logisoso46](#logisoso46)
* [logisoso50](#logisoso50)
* [logisoso54](#logisoso54)
* [logisoso58](#logisoso58)
* [logisoso62](#logisoso62)
* [logisoso78](#logisoso78)
* [logisoso92](#logisoso92)
[tocend]: # (toc end)
# Reference
Download location at openfontlibrary.org: http://openfontlibrary.org/de/font/logisoso
# Copyright
License (according to openfontlibrary.org): [OFL (SIL Open Font License)](http://scripts.sil.org/OFL)
Font Copyright Statement: Created by Mathieu Gabiot with FontForge 2.0 (http://fontforge.sf.net) - Brussels - 2009
COPYING.TXT from the zip archive:
Copyright (C) 2011 Mathieu-g (Mathieu Gabiot).
This Font Software is an open font and is released under the GPL v2 with font exception; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation.
This Font Software 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
# Font Details
## logisoso16
![fntpic/u8g2_font_logisoso16_tf.png](fntpic/u8g2_font_logisoso16_tf.png)
![fntpic/u8g2_font_logisoso16_tr.png](fntpic/u8g2_font_logisoso16_tr.png)
![fntpic/u8g2_font_logisoso16_tn.png](fntpic/u8g2_font_logisoso16_tn.png)
## logisoso18
![fntpic/u8g2_font_logisoso18_tf.png](fntpic/u8g2_font_logisoso18_tf.png)
![fntpic/u8g2_font_logisoso18_tr.png](fntpic/u8g2_font_logisoso18_tr.png)
![fntpic/u8g2_font_logisoso18_tn.png](fntpic/u8g2_font_logisoso18_tn.png)
## logisoso20
![fntpic/u8g2_font_logisoso20_tf.png](fntpic/u8g2_font_logisoso20_tf.png)
![fntpic/u8g2_font_logisoso20_tr.png](fntpic/u8g2_font_logisoso20_tr.png)
![fntpic/u8g2_font_logisoso20_tn.png](fntpic/u8g2_font_logisoso20_tn.png)
## logisoso22
![fntpic/u8g2_font_logisoso22_tf.png](fntpic/u8g2_font_logisoso22_tf.png)
![fntpic/u8g2_font_logisoso22_tr.png](fntpic/u8g2_font_logisoso22_tr.png)
![fntpic/u8g2_font_logisoso22_tn.png](fntpic/u8g2_font_logisoso22_tn.png)
## logisoso24
![fntpic/u8g2_font_logisoso24_tf.png](fntpic/u8g2_font_logisoso24_tf.png)
![fntpic/u8g2_font_logisoso24_tr.png](fntpic/u8g2_font_logisoso24_tr.png)
![fntpic/u8g2_font_logisoso24_tn.png](fntpic/u8g2_font_logisoso24_tn.png)
## logisoso26
![fntpic/u8g2_font_logisoso26_tf.png](fntpic/u8g2_font_logisoso26_tf.png)
![fntpic/u8g2_font_logisoso26_tr.png](fntpic/u8g2_font_logisoso26_tr.png)
![fntpic/u8g2_font_logisoso26_tn.png](fntpic/u8g2_font_logisoso26_tn.png)
## logisoso28
![fntpic/u8g2_font_logisoso28_tf.png](fntpic/u8g2_font_logisoso28_tf.png)
![fntpic/u8g2_font_logisoso28_tr.png](fntpic/u8g2_font_logisoso28_tr.png)
![fntpic/u8g2_font_logisoso28_tn.png](fntpic/u8g2_font_logisoso28_tn.png)
## logisoso30
![fntpic/u8g2_font_logisoso30_tf.png](fntpic/u8g2_font_logisoso30_tf.png)
![fntpic/u8g2_font_logisoso30_tr.png](fntpic/u8g2_font_logisoso30_tr.png)
![fntpic/u8g2_font_logisoso30_tn.png](fntpic/u8g2_font_logisoso30_tn.png)
## logisoso32
![fntpic/u8g2_font_logisoso32_tf.png](fntpic/u8g2_font_logisoso32_tf.png)
![fntpic/u8g2_font_logisoso32_tr.png](fntpic/u8g2_font_logisoso32_tr.png)
![fntpic/u8g2_font_logisoso32_tn.png](fntpic/u8g2_font_logisoso32_tn.png)
## logisoso34
![fntpic/u8g2_font_logisoso34_tf.png](fntpic/u8g2_font_logisoso34_tf.png)
![fntpic/u8g2_font_logisoso34_tr.png](fntpic/u8g2_font_logisoso34_tr.png)
![fntpic/u8g2_font_logisoso34_tn.png](fntpic/u8g2_font_logisoso34_tn.png)
## logisoso38
![fntpic/u8g2_font_logisoso38_tf.png](fntpic/u8g2_font_logisoso38_tf.png)
![fntpic/u8g2_font_logisoso38_tr.png](fntpic/u8g2_font_logisoso38_tr.png)
![fntpic/u8g2_font_logisoso38_tn.png](fntpic/u8g2_font_logisoso38_tn.png)
## logisoso42
![fntpic/u8g2_font_logisoso42_tf.png](fntpic/u8g2_font_logisoso42_tf.png)
![fntpic/u8g2_font_logisoso42_tr.png](fntpic/u8g2_font_logisoso42_tr.png)
![fntpic/u8g2_font_logisoso42_tn.png](fntpic/u8g2_font_logisoso42_tn.png)
## logisoso46
![fntpic/u8g2_font_logisoso46_tf.png](fntpic/u8g2_font_logisoso46_tf.png)
![fntpic/u8g2_font_logisoso46_tr.png](fntpic/u8g2_font_logisoso46_tr.png)
![fntpic/u8g2_font_logisoso46_tn.png](fntpic/u8g2_font_logisoso46_tn.png)
## logisoso50
![fntpic/u8g2_font_logisoso50_tf.png](fntpic/u8g2_font_logisoso50_tf.png)
![fntpic/u8g2_font_logisoso50_tr.png](fntpic/u8g2_font_logisoso50_tr.png)
![fntpic/u8g2_font_logisoso50_tn.png](fntpic/u8g2_font_logisoso50_tn.png)
## logisoso54
![fntpic/u8g2_font_logisoso54_tf.png](fntpic/u8g2_font_logisoso54_tf.png)
![fntpic/u8g2_font_logisoso54_tr.png](fntpic/u8g2_font_logisoso54_tr.png)
![fntpic/u8g2_font_logisoso54_tn.png](fntpic/u8g2_font_logisoso54_tn.png)
## logisoso58
![fntpic/u8g2_font_logisoso58_tf.png](fntpic/u8g2_font_logisoso58_tf.png)
![fntpic/u8g2_font_logisoso58_tr.png](fntpic/u8g2_font_logisoso58_tr.png)
![fntpic/u8g2_font_logisoso58_tn.png](fntpic/u8g2_font_logisoso58_tn.png)
## logisoso62
![fntpic/u8g2_font_logisoso62_tn.png](fntpic/u8g2_font_logisoso62_tn.png)
## logisoso78
![fntpic/u8g2_font_logisoso78_tn.png](fntpic/u8g2_font_logisoso78_tn.png)
## logisoso92
![fntpic/u8g2_font_logisoso92_tn.png](fntpic/u8g2_font_logisoso92_tn.png)
+471
View File
@@ -0,0 +1,471 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [lubB08](#lubb08)
* [lubB10](#lubb10)
* [lubB12](#lubb12)
* [lubB14](#lubb14)
* [lubB18](#lubb18)
* [lubB19](#lubb19)
* [lubB24](#lubb24)
* [lubBI08](#lubbi08)
* [lubBI10](#lubbi10)
* [lubBI12](#lubbi12)
* [lubBI14](#lubbi14)
* [lubBI18](#lubbi18)
* [lubBI19](#lubbi19)
* [lubBI24](#lubbi24)
* [lubI08](#lubi08)
* [lubI10](#lubi10)
* [lubI12](#lubi12)
* [lubI14](#lubi14)
* [lubI18](#lubi18)
* [lubI19](#lubi19)
* [lubI24](#lubi24)
* [luBIS08](#lubis08)
* [luBIS10](#lubis10)
* [luBIS12](#lubis12)
* [luBIS14](#lubis14)
* [luBIS18](#lubis18)
* [luBIS19](#lubis19)
* [luBIS24](#lubis24)
* [lubR08](#lubr08)
* [lubR10](#lubr10)
* [lubR12](#lubr12)
* [lubR14](#lubr14)
* [lubR18](#lubr18)
* [lubR19](#lubr19)
* [lubR24](#lubr24)
* [luBS08](#lubs08)
* [luBS10](#lubs10)
* [luBS12](#lubs12)
* [luBS14](#lubs14)
* [luBS18](#lubs18)
* [luBS19](#lubs19)
* [luBS24](#lubs24)
* [luIS08](#luis08)
* [luIS10](#luis10)
* [luIS12](#luis12)
* [luIS14](#luis14)
* [luIS18](#luis18)
* [luIS19](#luis19)
* [luIS24](#luis24)
* [luRS08](#lurs08)
* [luRS10](#lurs10)
* [luRS12](#lurs12)
* [luRS14](#lurs14)
* [luRS18](#lurs18)
* [luRS19](#lurs19)
* [luRS24](#lurs24)
[tocend]: # (toc end)
# Reference
Fonts on this page are part of the [X11 distribution](http://www.x.org/).
Download: https://gitlab.freedesktop.org/xorg/font/bh-100dpi
# Copyright
This is the LEGAL NOTICE pertaining to the Lucida fonts from Bigelow & Holmes:
NOTICE TO USER: The source code, including the glyphs or icons
forming a par of the OPEN LOOK TM Graphic User Interface, on this
tape and in these files is copyrighted under U.S. and international
laws. Sun Microsystems, Inc. of Mountain View, California owns
the copyright and has design patents pending on many of the icons.
AT&T is the owner of the OPEN LOOK trademark associated with the
materials on this tape. Users and possessors of this source code
are hereby granted a nonexclusive, royalty-free copyright and
design patent license to use this code in individual and
commercial software. A royalty-free, nonexclusive trademark
license to refer to the code and output as "OPEN LOOK" compatible
is available from AT&T if, and only if, the appearance of the
icons or glyphs is not changed in any manner except as absolutely
necessary to accommodate the standard resolution of the screen or
other output device, the code and output is not changed except as
authorized herein, and the code and output is validated by AT&T.
Bigelow & Holmes is the owner of the Lucida (R) trademark for the
fonts and bit-mapped images associated with the materials on this
tape. Users are granted a royalty-free, nonexclusive license to use
the trademark only to identify the fonts and bit-mapped images if,
and only if, the fonts and bit-mapped images are not modified in any
way by the user.
Any use of this source code must include, in the user documentation
and internal comments to the code, notices to the end user as
follows:
(c) Copyright 1989 Sun Microsystems, Inc. Sun design patents
pending in the U.S. and foreign countries. OPEN LOOK is a
trademark of AT&T. Used by written permission of the owners.
(c) Copyright Bigelow & Holmes 1986, 1985. Lucida is a registered
trademark of Bigelow & Holmes. Permission to use the Lucida
trademark is hereby granted only in association with the images
and fonts described in this file.
SUN MICROSYSTEMS, INC., AT&T, AND BIGELOW & HOLMES
MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF
THIS SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS"
WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND.
SUN MICROSYSTEMS, INC., AT&T AND BIGELOW & HOLMES,
SEVERALLY AND INDIVIDUALLY, DISCLAIM ALL WARRANTIES
WITH REGARD TO THIS SOURCE CODE, INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE. IN NO EVENT SHALL SUN MICROSYSTEMS,
INC., AT&T OR BIGELOW & HOLMES BE LIABLE FOR ANY
SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
WITH THE USE OR PERFORMANCE OF THIS SOURCE CODE.
# Font Details
## lubB08
![fntpic/u8g2_font_lubB08_tf.png](fntpic/u8g2_font_lubB08_tf.png)
![fntpic/u8g2_font_lubB08_tr.png](fntpic/u8g2_font_lubB08_tr.png)
![fntpic/u8g2_font_lubB08_tn.png](fntpic/u8g2_font_lubB08_tn.png)
![fntpic/u8g2_font_lubB08_te.png](fntpic/u8g2_font_lubB08_te.png)
## lubB10
![fntpic/u8g2_font_lubB10_tf.png](fntpic/u8g2_font_lubB10_tf.png)
![fntpic/u8g2_font_lubB10_tr.png](fntpic/u8g2_font_lubB10_tr.png)
![fntpic/u8g2_font_lubB10_tn.png](fntpic/u8g2_font_lubB10_tn.png)
![fntpic/u8g2_font_lubB10_te.png](fntpic/u8g2_font_lubB10_te.png)
## lubB12
![fntpic/u8g2_font_lubB12_tf.png](fntpic/u8g2_font_lubB12_tf.png)
![fntpic/u8g2_font_lubB12_tr.png](fntpic/u8g2_font_lubB12_tr.png)
![fntpic/u8g2_font_lubB12_tn.png](fntpic/u8g2_font_lubB12_tn.png)
![fntpic/u8g2_font_lubB12_te.png](fntpic/u8g2_font_lubB12_te.png)
## lubB14
![fntpic/u8g2_font_lubB14_tf.png](fntpic/u8g2_font_lubB14_tf.png)
![fntpic/u8g2_font_lubB14_tr.png](fntpic/u8g2_font_lubB14_tr.png)
![fntpic/u8g2_font_lubB14_tn.png](fntpic/u8g2_font_lubB14_tn.png)
![fntpic/u8g2_font_lubB14_te.png](fntpic/u8g2_font_lubB14_te.png)
## lubB18
![fntpic/u8g2_font_lubB18_tf.png](fntpic/u8g2_font_lubB18_tf.png)
![fntpic/u8g2_font_lubB18_tr.png](fntpic/u8g2_font_lubB18_tr.png)
![fntpic/u8g2_font_lubB18_tn.png](fntpic/u8g2_font_lubB18_tn.png)
![fntpic/u8g2_font_lubB18_te.png](fntpic/u8g2_font_lubB18_te.png)
## lubB19
![fntpic/u8g2_font_lubB19_tf.png](fntpic/u8g2_font_lubB19_tf.png)
![fntpic/u8g2_font_lubB19_tr.png](fntpic/u8g2_font_lubB19_tr.png)
![fntpic/u8g2_font_lubB19_tn.png](fntpic/u8g2_font_lubB19_tn.png)
![fntpic/u8g2_font_lubB19_te.png](fntpic/u8g2_font_lubB19_te.png)
## lubB24
![fntpic/u8g2_font_lubB24_tf.png](fntpic/u8g2_font_lubB24_tf.png)
![fntpic/u8g2_font_lubB24_tr.png](fntpic/u8g2_font_lubB24_tr.png)
![fntpic/u8g2_font_lubB24_tn.png](fntpic/u8g2_font_lubB24_tn.png)
![fntpic/u8g2_font_lubB24_te.png](fntpic/u8g2_font_lubB24_te.png)
## lubBI08
![fntpic/u8g2_font_lubBI08_tf.png](fntpic/u8g2_font_lubBI08_tf.png)
![fntpic/u8g2_font_lubBI08_tr.png](fntpic/u8g2_font_lubBI08_tr.png)
![fntpic/u8g2_font_lubBI08_tn.png](fntpic/u8g2_font_lubBI08_tn.png)
![fntpic/u8g2_font_lubBI08_te.png](fntpic/u8g2_font_lubBI08_te.png)
## lubBI10
![fntpic/u8g2_font_lubBI10_tf.png](fntpic/u8g2_font_lubBI10_tf.png)
![fntpic/u8g2_font_lubBI10_tr.png](fntpic/u8g2_font_lubBI10_tr.png)
![fntpic/u8g2_font_lubBI10_tn.png](fntpic/u8g2_font_lubBI10_tn.png)
![fntpic/u8g2_font_lubBI10_te.png](fntpic/u8g2_font_lubBI10_te.png)
## lubBI12
![fntpic/u8g2_font_lubBI12_tf.png](fntpic/u8g2_font_lubBI12_tf.png)
![fntpic/u8g2_font_lubBI12_tr.png](fntpic/u8g2_font_lubBI12_tr.png)
![fntpic/u8g2_font_lubBI12_tn.png](fntpic/u8g2_font_lubBI12_tn.png)
![fntpic/u8g2_font_lubBI12_te.png](fntpic/u8g2_font_lubBI12_te.png)
## lubBI14
![fntpic/u8g2_font_lubBI14_tf.png](fntpic/u8g2_font_lubBI14_tf.png)
![fntpic/u8g2_font_lubBI14_tr.png](fntpic/u8g2_font_lubBI14_tr.png)
![fntpic/u8g2_font_lubBI14_tn.png](fntpic/u8g2_font_lubBI14_tn.png)
![fntpic/u8g2_font_lubBI14_te.png](fntpic/u8g2_font_lubBI14_te.png)
## lubBI18
![fntpic/u8g2_font_lubBI18_tf.png](fntpic/u8g2_font_lubBI18_tf.png)
![fntpic/u8g2_font_lubBI18_tr.png](fntpic/u8g2_font_lubBI18_tr.png)
![fntpic/u8g2_font_lubBI18_tn.png](fntpic/u8g2_font_lubBI18_tn.png)
![fntpic/u8g2_font_lubBI18_te.png](fntpic/u8g2_font_lubBI18_te.png)
## lubBI19
![fntpic/u8g2_font_lubBI19_tf.png](fntpic/u8g2_font_lubBI19_tf.png)
![fntpic/u8g2_font_lubBI19_tr.png](fntpic/u8g2_font_lubBI19_tr.png)
![fntpic/u8g2_font_lubBI19_tn.png](fntpic/u8g2_font_lubBI19_tn.png)
![fntpic/u8g2_font_lubBI19_te.png](fntpic/u8g2_font_lubBI19_te.png)
## lubBI24
![fntpic/u8g2_font_lubBI24_tf.png](fntpic/u8g2_font_lubBI24_tf.png)
![fntpic/u8g2_font_lubBI24_tr.png](fntpic/u8g2_font_lubBI24_tr.png)
![fntpic/u8g2_font_lubBI24_tn.png](fntpic/u8g2_font_lubBI24_tn.png)
![fntpic/u8g2_font_lubBI24_te.png](fntpic/u8g2_font_lubBI24_te.png)
## lubI08
![fntpic/u8g2_font_lubI08_tf.png](fntpic/u8g2_font_lubI08_tf.png)
![fntpic/u8g2_font_lubI08_tr.png](fntpic/u8g2_font_lubI08_tr.png)
![fntpic/u8g2_font_lubI08_tn.png](fntpic/u8g2_font_lubI08_tn.png)
![fntpic/u8g2_font_lubI08_te.png](fntpic/u8g2_font_lubI08_te.png)
## lubI10
![fntpic/u8g2_font_lubI10_tf.png](fntpic/u8g2_font_lubI10_tf.png)
![fntpic/u8g2_font_lubI10_tr.png](fntpic/u8g2_font_lubI10_tr.png)
![fntpic/u8g2_font_lubI10_tn.png](fntpic/u8g2_font_lubI10_tn.png)
![fntpic/u8g2_font_lubI10_te.png](fntpic/u8g2_font_lubI10_te.png)
## lubI12
![fntpic/u8g2_font_lubI12_tf.png](fntpic/u8g2_font_lubI12_tf.png)
![fntpic/u8g2_font_lubI12_tr.png](fntpic/u8g2_font_lubI12_tr.png)
![fntpic/u8g2_font_lubI12_tn.png](fntpic/u8g2_font_lubI12_tn.png)
![fntpic/u8g2_font_lubI12_te.png](fntpic/u8g2_font_lubI12_te.png)
## lubI14
![fntpic/u8g2_font_lubI14_tf.png](fntpic/u8g2_font_lubI14_tf.png)
![fntpic/u8g2_font_lubI14_tr.png](fntpic/u8g2_font_lubI14_tr.png)
![fntpic/u8g2_font_lubI14_tn.png](fntpic/u8g2_font_lubI14_tn.png)
![fntpic/u8g2_font_lubI14_te.png](fntpic/u8g2_font_lubI14_te.png)
## lubI18
![fntpic/u8g2_font_lubI18_tf.png](fntpic/u8g2_font_lubI18_tf.png)
![fntpic/u8g2_font_lubI18_tr.png](fntpic/u8g2_font_lubI18_tr.png)
![fntpic/u8g2_font_lubI18_tn.png](fntpic/u8g2_font_lubI18_tn.png)
![fntpic/u8g2_font_lubI18_te.png](fntpic/u8g2_font_lubI18_te.png)
## lubI19
![fntpic/u8g2_font_lubI19_tf.png](fntpic/u8g2_font_lubI19_tf.png)
![fntpic/u8g2_font_lubI19_tr.png](fntpic/u8g2_font_lubI19_tr.png)
![fntpic/u8g2_font_lubI19_tn.png](fntpic/u8g2_font_lubI19_tn.png)
![fntpic/u8g2_font_lubI19_te.png](fntpic/u8g2_font_lubI19_te.png)
## lubI24
![fntpic/u8g2_font_lubI24_tf.png](fntpic/u8g2_font_lubI24_tf.png)
![fntpic/u8g2_font_lubI24_tr.png](fntpic/u8g2_font_lubI24_tr.png)
![fntpic/u8g2_font_lubI24_tn.png](fntpic/u8g2_font_lubI24_tn.png)
![fntpic/u8g2_font_lubI24_te.png](fntpic/u8g2_font_lubI24_te.png)
## luBIS08
![fntpic/u8g2_font_luBIS08_tf.png](fntpic/u8g2_font_luBIS08_tf.png)
![fntpic/u8g2_font_luBIS08_tr.png](fntpic/u8g2_font_luBIS08_tr.png)
![fntpic/u8g2_font_luBIS08_tn.png](fntpic/u8g2_font_luBIS08_tn.png)
![fntpic/u8g2_font_luBIS08_te.png](fntpic/u8g2_font_luBIS08_te.png)
## luBIS10
![fntpic/u8g2_font_luBIS10_tf.png](fntpic/u8g2_font_luBIS10_tf.png)
![fntpic/u8g2_font_luBIS10_tr.png](fntpic/u8g2_font_luBIS10_tr.png)
![fntpic/u8g2_font_luBIS10_tn.png](fntpic/u8g2_font_luBIS10_tn.png)
![fntpic/u8g2_font_luBIS10_te.png](fntpic/u8g2_font_luBIS10_te.png)
## luBIS12
![fntpic/u8g2_font_luBIS12_tf.png](fntpic/u8g2_font_luBIS12_tf.png)
![fntpic/u8g2_font_luBIS12_tr.png](fntpic/u8g2_font_luBIS12_tr.png)
![fntpic/u8g2_font_luBIS12_tn.png](fntpic/u8g2_font_luBIS12_tn.png)
![fntpic/u8g2_font_luBIS12_te.png](fntpic/u8g2_font_luBIS12_te.png)
## luBIS14
![fntpic/u8g2_font_luBIS14_tf.png](fntpic/u8g2_font_luBIS14_tf.png)
![fntpic/u8g2_font_luBIS14_tr.png](fntpic/u8g2_font_luBIS14_tr.png)
![fntpic/u8g2_font_luBIS14_tn.png](fntpic/u8g2_font_luBIS14_tn.png)
![fntpic/u8g2_font_luBIS14_te.png](fntpic/u8g2_font_luBIS14_te.png)
## luBIS18
![fntpic/u8g2_font_luBIS18_tf.png](fntpic/u8g2_font_luBIS18_tf.png)
![fntpic/u8g2_font_luBIS18_tr.png](fntpic/u8g2_font_luBIS18_tr.png)
![fntpic/u8g2_font_luBIS18_tn.png](fntpic/u8g2_font_luBIS18_tn.png)
![fntpic/u8g2_font_luBIS18_te.png](fntpic/u8g2_font_luBIS18_te.png)
## luBIS19
![fntpic/u8g2_font_luBIS19_tf.png](fntpic/u8g2_font_luBIS19_tf.png)
![fntpic/u8g2_font_luBIS19_tr.png](fntpic/u8g2_font_luBIS19_tr.png)
![fntpic/u8g2_font_luBIS19_tn.png](fntpic/u8g2_font_luBIS19_tn.png)
![fntpic/u8g2_font_luBIS19_te.png](fntpic/u8g2_font_luBIS19_te.png)
## luBIS24
![fntpic/u8g2_font_luBIS24_tf.png](fntpic/u8g2_font_luBIS24_tf.png)
![fntpic/u8g2_font_luBIS24_tr.png](fntpic/u8g2_font_luBIS24_tr.png)
![fntpic/u8g2_font_luBIS24_tn.png](fntpic/u8g2_font_luBIS24_tn.png)
![fntpic/u8g2_font_luBIS24_te.png](fntpic/u8g2_font_luBIS24_te.png)
## lubR08
![fntpic/u8g2_font_lubR08_tf.png](fntpic/u8g2_font_lubR08_tf.png)
![fntpic/u8g2_font_lubR08_tr.png](fntpic/u8g2_font_lubR08_tr.png)
![fntpic/u8g2_font_lubR08_tn.png](fntpic/u8g2_font_lubR08_tn.png)
![fntpic/u8g2_font_lubR08_te.png](fntpic/u8g2_font_lubR08_te.png)
## lubR10
![fntpic/u8g2_font_lubR10_tf.png](fntpic/u8g2_font_lubR10_tf.png)
![fntpic/u8g2_font_lubR10_tr.png](fntpic/u8g2_font_lubR10_tr.png)
![fntpic/u8g2_font_lubR10_tn.png](fntpic/u8g2_font_lubR10_tn.png)
![fntpic/u8g2_font_lubR10_te.png](fntpic/u8g2_font_lubR10_te.png)
## lubR12
![fntpic/u8g2_font_lubR12_tf.png](fntpic/u8g2_font_lubR12_tf.png)
![fntpic/u8g2_font_lubR12_tr.png](fntpic/u8g2_font_lubR12_tr.png)
![fntpic/u8g2_font_lubR12_tn.png](fntpic/u8g2_font_lubR12_tn.png)
![fntpic/u8g2_font_lubR12_te.png](fntpic/u8g2_font_lubR12_te.png)
## lubR14
![fntpic/u8g2_font_lubR14_tf.png](fntpic/u8g2_font_lubR14_tf.png)
![fntpic/u8g2_font_lubR14_tr.png](fntpic/u8g2_font_lubR14_tr.png)
![fntpic/u8g2_font_lubR14_tn.png](fntpic/u8g2_font_lubR14_tn.png)
![fntpic/u8g2_font_lubR14_te.png](fntpic/u8g2_font_lubR14_te.png)
## lubR18
![fntpic/u8g2_font_lubR18_tf.png](fntpic/u8g2_font_lubR18_tf.png)
![fntpic/u8g2_font_lubR18_tr.png](fntpic/u8g2_font_lubR18_tr.png)
![fntpic/u8g2_font_lubR18_tn.png](fntpic/u8g2_font_lubR18_tn.png)
![fntpic/u8g2_font_lubR18_te.png](fntpic/u8g2_font_lubR18_te.png)
## lubR19
![fntpic/u8g2_font_lubR19_tf.png](fntpic/u8g2_font_lubR19_tf.png)
![fntpic/u8g2_font_lubR19_tr.png](fntpic/u8g2_font_lubR19_tr.png)
![fntpic/u8g2_font_lubR19_tn.png](fntpic/u8g2_font_lubR19_tn.png)
![fntpic/u8g2_font_lubR19_te.png](fntpic/u8g2_font_lubR19_te.png)
## lubR24
![fntpic/u8g2_font_lubR24_tf.png](fntpic/u8g2_font_lubR24_tf.png)
![fntpic/u8g2_font_lubR24_tr.png](fntpic/u8g2_font_lubR24_tr.png)
![fntpic/u8g2_font_lubR24_tn.png](fntpic/u8g2_font_lubR24_tn.png)
![fntpic/u8g2_font_lubR24_te.png](fntpic/u8g2_font_lubR24_te.png)
## luBS08
![fntpic/u8g2_font_luBS08_tf.png](fntpic/u8g2_font_luBS08_tf.png)
![fntpic/u8g2_font_luBS08_tr.png](fntpic/u8g2_font_luBS08_tr.png)
![fntpic/u8g2_font_luBS08_tn.png](fntpic/u8g2_font_luBS08_tn.png)
![fntpic/u8g2_font_luBS08_te.png](fntpic/u8g2_font_luBS08_te.png)
## luBS10
![fntpic/u8g2_font_luBS10_tf.png](fntpic/u8g2_font_luBS10_tf.png)
![fntpic/u8g2_font_luBS10_tr.png](fntpic/u8g2_font_luBS10_tr.png)
![fntpic/u8g2_font_luBS10_tn.png](fntpic/u8g2_font_luBS10_tn.png)
![fntpic/u8g2_font_luBS10_te.png](fntpic/u8g2_font_luBS10_te.png)
## luBS12
![fntpic/u8g2_font_luBS12_tf.png](fntpic/u8g2_font_luBS12_tf.png)
![fntpic/u8g2_font_luBS12_tr.png](fntpic/u8g2_font_luBS12_tr.png)
![fntpic/u8g2_font_luBS12_tn.png](fntpic/u8g2_font_luBS12_tn.png)
![fntpic/u8g2_font_luBS12_te.png](fntpic/u8g2_font_luBS12_te.png)
## luBS14
![fntpic/u8g2_font_luBS14_tf.png](fntpic/u8g2_font_luBS14_tf.png)
![fntpic/u8g2_font_luBS14_tr.png](fntpic/u8g2_font_luBS14_tr.png)
![fntpic/u8g2_font_luBS14_tn.png](fntpic/u8g2_font_luBS14_tn.png)
![fntpic/u8g2_font_luBS14_te.png](fntpic/u8g2_font_luBS14_te.png)
## luBS18
![fntpic/u8g2_font_luBS18_tf.png](fntpic/u8g2_font_luBS18_tf.png)
![fntpic/u8g2_font_luBS18_tr.png](fntpic/u8g2_font_luBS18_tr.png)
![fntpic/u8g2_font_luBS18_tn.png](fntpic/u8g2_font_luBS18_tn.png)
![fntpic/u8g2_font_luBS18_te.png](fntpic/u8g2_font_luBS18_te.png)
## luBS19
![fntpic/u8g2_font_luBS19_tf.png](fntpic/u8g2_font_luBS19_tf.png)
![fntpic/u8g2_font_luBS19_tr.png](fntpic/u8g2_font_luBS19_tr.png)
![fntpic/u8g2_font_luBS19_tn.png](fntpic/u8g2_font_luBS19_tn.png)
![fntpic/u8g2_font_luBS19_te.png](fntpic/u8g2_font_luBS19_te.png)
## luBS24
![fntpic/u8g2_font_luBS24_tf.png](fntpic/u8g2_font_luBS24_tf.png)
![fntpic/u8g2_font_luBS24_tr.png](fntpic/u8g2_font_luBS24_tr.png)
![fntpic/u8g2_font_luBS24_tn.png](fntpic/u8g2_font_luBS24_tn.png)
![fntpic/u8g2_font_luBS24_te.png](fntpic/u8g2_font_luBS24_te.png)
## luIS08
![fntpic/u8g2_font_luIS08_tf.png](fntpic/u8g2_font_luIS08_tf.png)
![fntpic/u8g2_font_luIS08_tr.png](fntpic/u8g2_font_luIS08_tr.png)
![fntpic/u8g2_font_luIS08_tn.png](fntpic/u8g2_font_luIS08_tn.png)
![fntpic/u8g2_font_luIS08_te.png](fntpic/u8g2_font_luIS08_te.png)
## luIS10
![fntpic/u8g2_font_luIS10_tf.png](fntpic/u8g2_font_luIS10_tf.png)
![fntpic/u8g2_font_luIS10_tr.png](fntpic/u8g2_font_luIS10_tr.png)
![fntpic/u8g2_font_luIS10_tn.png](fntpic/u8g2_font_luIS10_tn.png)
![fntpic/u8g2_font_luIS10_te.png](fntpic/u8g2_font_luIS10_te.png)
## luIS12
![fntpic/u8g2_font_luIS12_tf.png](fntpic/u8g2_font_luIS12_tf.png)
![fntpic/u8g2_font_luIS12_tr.png](fntpic/u8g2_font_luIS12_tr.png)
![fntpic/u8g2_font_luIS12_tn.png](fntpic/u8g2_font_luIS12_tn.png)
![fntpic/u8g2_font_luIS12_te.png](fntpic/u8g2_font_luIS12_te.png)
## luIS14
![fntpic/u8g2_font_luIS14_tf.png](fntpic/u8g2_font_luIS14_tf.png)
![fntpic/u8g2_font_luIS14_tr.png](fntpic/u8g2_font_luIS14_tr.png)
![fntpic/u8g2_font_luIS14_tn.png](fntpic/u8g2_font_luIS14_tn.png)
![fntpic/u8g2_font_luIS14_te.png](fntpic/u8g2_font_luIS14_te.png)
## luIS18
![fntpic/u8g2_font_luIS18_tf.png](fntpic/u8g2_font_luIS18_tf.png)
![fntpic/u8g2_font_luIS18_tr.png](fntpic/u8g2_font_luIS18_tr.png)
![fntpic/u8g2_font_luIS18_tn.png](fntpic/u8g2_font_luIS18_tn.png)
![fntpic/u8g2_font_luIS18_te.png](fntpic/u8g2_font_luIS18_te.png)
## luIS19
![fntpic/u8g2_font_luIS19_tf.png](fntpic/u8g2_font_luIS19_tf.png)
![fntpic/u8g2_font_luIS19_tr.png](fntpic/u8g2_font_luIS19_tr.png)
![fntpic/u8g2_font_luIS19_tn.png](fntpic/u8g2_font_luIS19_tn.png)
![fntpic/u8g2_font_luIS19_te.png](fntpic/u8g2_font_luIS19_te.png)
## luIS24
![fntpic/u8g2_font_luIS24_tf.png](fntpic/u8g2_font_luIS24_tf.png)
![fntpic/u8g2_font_luIS24_tr.png](fntpic/u8g2_font_luIS24_tr.png)
![fntpic/u8g2_font_luIS24_tn.png](fntpic/u8g2_font_luIS24_tn.png)
![fntpic/u8g2_font_luIS24_te.png](fntpic/u8g2_font_luIS24_te.png)
## luRS08
![fntpic/u8g2_font_luRS08_tf.png](fntpic/u8g2_font_luRS08_tf.png)
![fntpic/u8g2_font_luRS08_tr.png](fntpic/u8g2_font_luRS08_tr.png)
![fntpic/u8g2_font_luRS08_tn.png](fntpic/u8g2_font_luRS08_tn.png)
![fntpic/u8g2_font_luRS08_te.png](fntpic/u8g2_font_luRS08_te.png)
## luRS10
![fntpic/u8g2_font_luRS10_tf.png](fntpic/u8g2_font_luRS10_tf.png)
![fntpic/u8g2_font_luRS10_tr.png](fntpic/u8g2_font_luRS10_tr.png)
![fntpic/u8g2_font_luRS10_tn.png](fntpic/u8g2_font_luRS10_tn.png)
![fntpic/u8g2_font_luRS10_te.png](fntpic/u8g2_font_luRS10_te.png)
## luRS12
![fntpic/u8g2_font_luRS12_tf.png](fntpic/u8g2_font_luRS12_tf.png)
![fntpic/u8g2_font_luRS12_tr.png](fntpic/u8g2_font_luRS12_tr.png)
![fntpic/u8g2_font_luRS12_tn.png](fntpic/u8g2_font_luRS12_tn.png)
![fntpic/u8g2_font_luRS12_te.png](fntpic/u8g2_font_luRS12_te.png)
## luRS14
![fntpic/u8g2_font_luRS14_tf.png](fntpic/u8g2_font_luRS14_tf.png)
![fntpic/u8g2_font_luRS14_tr.png](fntpic/u8g2_font_luRS14_tr.png)
![fntpic/u8g2_font_luRS14_tn.png](fntpic/u8g2_font_luRS14_tn.png)
![fntpic/u8g2_font_luRS14_te.png](fntpic/u8g2_font_luRS14_te.png)
## luRS18
![fntpic/u8g2_font_luRS18_tf.png](fntpic/u8g2_font_luRS18_tf.png)
![fntpic/u8g2_font_luRS18_tr.png](fntpic/u8g2_font_luRS18_tr.png)
![fntpic/u8g2_font_luRS18_tn.png](fntpic/u8g2_font_luRS18_tn.png)
![fntpic/u8g2_font_luRS18_te.png](fntpic/u8g2_font_luRS18_te.png)
## luRS19
![fntpic/u8g2_font_luRS19_tf.png](fntpic/u8g2_font_luRS19_tf.png)
![fntpic/u8g2_font_luRS19_tr.png](fntpic/u8g2_font_luRS19_tr.png)
![fntpic/u8g2_font_luRS19_tn.png](fntpic/u8g2_font_luRS19_tn.png)
![fntpic/u8g2_font_luRS19_te.png](fntpic/u8g2_font_luRS19_te.png)
## luRS24
![fntpic/u8g2_font_luRS24_tf.png](fntpic/u8g2_font_luRS24_tf.png)
![fntpic/u8g2_font_luRS24_tr.png](fntpic/u8g2_font_luRS24_tr.png)
![fntpic/u8g2_font_luRS24_tn.png](fntpic/u8g2_font_luRS24_tn.png)
![fntpic/u8g2_font_luRS24_te.png](fntpic/u8g2_font_luRS24_te.png)
+90
View File
@@ -0,0 +1,90 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [beanstalk_mel](#beanstalk_mel)
* [cube_mel](#cube_mel)
* [mademoiselle_mel](#mademoiselle_mel)
* [pieceofcake_mel](#pieceofcake_mel)
* [press_mel](#press_mel)
* [repress_mel](#repress_mel)
* [sticker_mel](#sticker_mel)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "MistressEllipsis".
Fonts will be available with U8g2 v2.25.
# Copyright
Beanstalk by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=158
Cube by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=152
Mademoiselle by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=129
PieceOfCake by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=165
Press by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=156
RePress by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=159
Sticker by MistressEllipsis
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=167
Note: A more complete version of the "Sticker" font is available [here](https://github.com/olikraus/u8g2/wiki/fntgrpbitfontmaker2#sticker100complete)
# Font Pictures
## beanstalk_mel
![fntpic/u8g2_font_beanstalk_mel_tr.png](fntpic/u8g2_font_beanstalk_mel_tr.png)
![fntpic/u8g2_font_beanstalk_mel_tn.png](fntpic/u8g2_font_beanstalk_mel_tn.png)
## cube_mel
![fntpic/u8g2_font_cube_mel_tr.png](fntpic/u8g2_font_cube_mel_tr.png)
![fntpic/u8g2_font_cube_mel_tn.png](fntpic/u8g2_font_cube_mel_tn.png)
## mademoiselle_mel
![fntpic/u8g2_font_mademoiselle_mel_tr.png](fntpic/u8g2_font_mademoiselle_mel_tr.png)
![fntpic/u8g2_font_mademoiselle_mel_tn.png](fntpic/u8g2_font_mademoiselle_mel_tn.png)
## pieceofcake_mel
![fntpic/u8g2_font_pieceofcake_mel_tr.png](fntpic/u8g2_font_pieceofcake_mel_tr.png)
![fntpic/u8g2_font_pieceofcake_mel_tn.png](fntpic/u8g2_font_pieceofcake_mel_tn.png)
## press_mel
![fntpic/u8g2_font_press_mel_tr.png](fntpic/u8g2_font_press_mel_tr.png)
![fntpic/u8g2_font_press_mel_tn.png](fntpic/u8g2_font_press_mel_tn.png)
## repress_mel
![fntpic/u8g2_font_repress_mel_tr.png](fntpic/u8g2_font_repress_mel_tr.png)
![fntpic/u8g2_font_repress_mel_tn.png](fntpic/u8g2_font_repress_mel_tn.png)
## sticker_mel
![fntpic/u8g2_font_sticker_mel_tr.png](fntpic/u8g2_font_sticker_mel_tr.png)
![fntpic/u8g2_font_sticker_mel_tn.png](fntpic/u8g2_font_sticker_mel_tn.png)
+61
View File
@@ -0,0 +1,61 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [mystery_quest_24](#mystery_quest_24)
* [mystery_quest_28](#mystery_quest_28)
* [mystery_quest_32](#mystery_quest_32)
* [mystery_quest_36](#mystery_quest_36)
* [mystery_quest_42](#mystery_quest_42)
* [mystery_quest_48](#mystery_quest_48)
* [mystery_quest_56](#mystery_quest_56)
[tocend]: # (toc end)
# Reference
Mystery Quest Regular, downloaded from https://www.1001fonts.com/mystery-quest-font.html
# Copyright
Mystery Quest is licensed under the SIL Open Font License (OFL), see https://scripts.sil.org/OFL
Font Statement:
Copyright (c) 2012 by Font Diner, Inc DBA Sideshow (diner@fontdiner.com) with Reseved Font Name "Mystery Quest""
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL
# Font Pictures
## mystery_quest_24
![fntpic/u8g2_font_mystery_quest_24_tf.png](fntpic/u8g2_font_mystery_quest_24_tf.png)
![fntpic/u8g2_font_mystery_quest_24_tr.png](fntpic/u8g2_font_mystery_quest_24_tr.png)
![fntpic/u8g2_font_mystery_quest_24_tn.png](fntpic/u8g2_font_mystery_quest_24_tn.png)
## mystery_quest_28
![fntpic/u8g2_font_mystery_quest_28_tf.png](fntpic/u8g2_font_mystery_quest_28_tf.png)
![fntpic/u8g2_font_mystery_quest_28_tr.png](fntpic/u8g2_font_mystery_quest_28_tr.png)
![fntpic/u8g2_font_mystery_quest_28_tn.png](fntpic/u8g2_font_mystery_quest_28_tn.png)
## mystery_quest_32
![fntpic/u8g2_font_mystery_quest_32_tr.png](fntpic/u8g2_font_mystery_quest_32_tr.png)
![fntpic/u8g2_font_mystery_quest_32_tn.png](fntpic/u8g2_font_mystery_quest_32_tn.png)
## mystery_quest_36
![fntpic/u8g2_font_mystery_quest_36_tn.png](fntpic/u8g2_font_mystery_quest_36_tn.png)
## mystery_quest_42
![fntpic/u8g2_font_mystery_quest_42_tn.png](fntpic/u8g2_font_mystery_quest_42_tn.png)
## mystery_quest_48
![fntpic/u8g2_font_mystery_quest_48_tn.png](fntpic/u8g2_font_mystery_quest_48_tn.png)
## mystery_quest_56
![fntpic/u8g2_font_mystery_quest_56_tn.png](fntpic/u8g2_font_mystery_quest_56_tn.png)
+206
View File
@@ -0,0 +1,206 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [mozart_nbp](#mozart_nbp)
* [glasstown_nbp](#glasstown_nbp)
* [shylock_nbp](#shylock_nbp)
* [roentgen_nbp](#roentgen_nbp)
* [calibration_gothic_nbp](#calibration_gothic_nbp)
* [smart_patrol_nbp](#smart_patrol_nbp)
* [prospero_bold_nbp](#prospero_bold_nbp)
* [prospero_nbp](#prospero_nbp)
* [balthasar_regular_nbp](#balthasar_regular_nbp)
* [balthasar_titling_nbp](#balthasar_titling_nbp)
* [synchronizer_nbp](#synchronizer_nbp)
* [mercutio_basic_nbp](#mercutio_basic_nbp)
* [mercutio_sc_nbp](#mercutio_sc_nbp)
* [miranda_nbp](#miranda_nbp)
* [nine_by_five_nbp](#nine_by_five_nbp)
* [rosencrantz_nbp](#rosencrantz_nbp)
* [guildenstern_nbp](#guildenstern_nbp)
* [astragal_nbp](#astragal_nbp)
[tocend]: # (toc end)
# Reference
This page contains fonts from [http://www.fontspace.com/total-fontgeek-dtf-ltd](http://www.fontspace.com/total-fontgeek-dtf-ltd).
Only fonts with "Creative Commons (by-sa) Attribution Share Alike" are included into u8g2.
All fonts are created by NATE547 (total-fontgeek).
# Copyright
Copyright from readme files:
```
LICENSE
=======
"fontname" is Creative Commons (by-sa) Attribution Share Alike. That means it's free to download and use. You can also upload it to another website but only as long as you give me credit for making it. You can even make changes to it as long as you give me credit for making the first version and license your new version as CC-BY-SA too.
For more information, go to:
http://creativecommons.org/licenses/by-sa/3.0/
A REQUEST FROM NATE547
======================
Once you install this font, find 2 ways to make the world, the country, your home state/province/county, or your hometown better than it is. Even if it's just recycling your newspaper instead of tossing it on the rubbish.
Of course, you're not obligated by law to do this.... it's just a request from a Sensible Human who wants our world to change.
Duty now for the future.
Nate547 (Total FontGeek)
```
"fontname" is one of the following fonts:
http://www.fontspace.com/total-fontgeek-dtf-ltd/mozart-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/glasstown-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/shylock-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/roentgen-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/calibration-gothic-nbp-latin
http://www.fontspace.com/total-fontgeek-dtf-ltd/smart-patrol-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/prospero-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/balthasar-regular-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/synchronizer-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/mercutio-nbp-basic
http://www.fontspace.com/total-fontgeek-dtf-ltd/miranda-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/nine-by-five-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/rosencrantz-nbp
http://www.fontspace.com/total-fontgeek-dtf-ltd/astragal-nbp
Note: "rosencrantz-nbp" includes "guildenstern-nbp".
# Font Pictures
## mozart_nbp
![fntpic/u8g2_font_mozart_nbp_tf.png](fntpic/u8g2_font_mozart_nbp_tf.png)
![fntpic/u8g2_font_mozart_nbp_tr.png](fntpic/u8g2_font_mozart_nbp_tr.png)
![fntpic/u8g2_font_mozart_nbp_tn.png](fntpic/u8g2_font_mozart_nbp_tn.png)
![fntpic/u8g2_font_mozart_nbp_t_all.png](fntpic/u8g2_font_mozart_nbp_t_all.png)
![fntpic/u8g2_font_mozart_nbp_h_all.png](fntpic/u8g2_font_mozart_nbp_h_all.png)
## glasstown_nbp
![fntpic/u8g2_font_glasstown_nbp_tf.png](fntpic/u8g2_font_glasstown_nbp_tf.png)
![fntpic/u8g2_font_glasstown_nbp_tr.png](fntpic/u8g2_font_glasstown_nbp_tr.png)
![fntpic/u8g2_font_glasstown_nbp_tn.png](fntpic/u8g2_font_glasstown_nbp_tn.png)
![fntpic/u8g2_font_glasstown_nbp_t_all.png](fntpic/u8g2_font_glasstown_nbp_t_all.png)
## shylock_nbp
![fntpic/u8g2_font_shylock_nbp_tf.png](fntpic/u8g2_font_shylock_nbp_tf.png)
![fntpic/u8g2_font_shylock_nbp_tr.png](fntpic/u8g2_font_shylock_nbp_tr.png)
![fntpic/u8g2_font_shylock_nbp_tn.png](fntpic/u8g2_font_shylock_nbp_tn.png)
![fntpic/u8g2_font_shylock_nbp_t_all.png](fntpic/u8g2_font_shylock_nbp_t_all.png)
## roentgen_nbp
![fntpic/u8g2_font_roentgen_nbp_tf.png](fntpic/u8g2_font_roentgen_nbp_tf.png)
![fntpic/u8g2_font_roentgen_nbp_tr.png](fntpic/u8g2_font_roentgen_nbp_tr.png)
![fntpic/u8g2_font_roentgen_nbp_tn.png](fntpic/u8g2_font_roentgen_nbp_tn.png)
![fntpic/u8g2_font_roentgen_nbp_t_all.png](fntpic/u8g2_font_roentgen_nbp_t_all.png)
![fntpic/u8g2_font_roentgen_nbp_h_all.png](fntpic/u8g2_font_roentgen_nbp_h_all.png)
## calibration_gothic_nbp
![fntpic/u8g2_font_calibration_gothic_nbp_tf.png](fntpic/u8g2_font_calibration_gothic_nbp_tf.png)
![fntpic/u8g2_font_calibration_gothic_nbp_tr.png](fntpic/u8g2_font_calibration_gothic_nbp_tr.png)
![fntpic/u8g2_font_calibration_gothic_nbp_tn.png](fntpic/u8g2_font_calibration_gothic_nbp_tn.png)
![fntpic/u8g2_font_calibration_gothic_nbp_t_all.png](fntpic/u8g2_font_calibration_gothic_nbp_t_all.png)
## smart_patrol_nbp
![fntpic/u8g2_font_smart_patrol_nbp_tf.png](fntpic/u8g2_font_smart_patrol_nbp_tf.png)
![fntpic/u8g2_font_smart_patrol_nbp_tr.png](fntpic/u8g2_font_smart_patrol_nbp_tr.png)
![fntpic/u8g2_font_smart_patrol_nbp_tn.png](fntpic/u8g2_font_smart_patrol_nbp_tn.png)
## prospero_bold_nbp
![fntpic/u8g2_font_prospero_bold_nbp_tf.png](fntpic/u8g2_font_prospero_bold_nbp_tf.png)
![fntpic/u8g2_font_prospero_bold_nbp_tr.png](fntpic/u8g2_font_prospero_bold_nbp_tr.png)
![fntpic/u8g2_font_prospero_bold_nbp_tn.png](fntpic/u8g2_font_prospero_bold_nbp_tn.png)
## prospero_nbp
![fntpic/u8g2_font_prospero_nbp_tf.png](fntpic/u8g2_font_prospero_nbp_tf.png)
![fntpic/u8g2_font_prospero_nbp_tr.png](fntpic/u8g2_font_prospero_nbp_tr.png)
![fntpic/u8g2_font_prospero_nbp_tn.png](fntpic/u8g2_font_prospero_nbp_tn.png)
## balthasar_regular_nbp
![fntpic/u8g2_font_balthasar_regular_nbp_tf.png](fntpic/u8g2_font_balthasar_regular_nbp_tf.png)
![fntpic/u8g2_font_balthasar_regular_nbp_tr.png](fntpic/u8g2_font_balthasar_regular_nbp_tr.png)
![fntpic/u8g2_font_balthasar_regular_nbp_tn.png](fntpic/u8g2_font_balthasar_regular_nbp_tn.png)
## balthasar_titling_nbp
![fntpic/u8g2_font_balthasar_titling_nbp_tf.png](fntpic/u8g2_font_balthasar_titling_nbp_tf.png)
![fntpic/u8g2_font_balthasar_titling_nbp_tr.png](fntpic/u8g2_font_balthasar_titling_nbp_tr.png)
![fntpic/u8g2_font_balthasar_titling_nbp_tn.png](fntpic/u8g2_font_balthasar_titling_nbp_tn.png)
## synchronizer_nbp
![fntpic/u8g2_font_synchronizer_nbp_tf.png](fntpic/u8g2_font_synchronizer_nbp_tf.png)
![fntpic/u8g2_font_synchronizer_nbp_tr.png](fntpic/u8g2_font_synchronizer_nbp_tr.png)
![fntpic/u8g2_font_synchronizer_nbp_tn.png](fntpic/u8g2_font_synchronizer_nbp_tn.png)
## mercutio_basic_nbp
![fntpic/u8g2_font_mercutio_basic_nbp_tf.png](fntpic/u8g2_font_mercutio_basic_nbp_tf.png)
![fntpic/u8g2_font_mercutio_basic_nbp_tr.png](fntpic/u8g2_font_mercutio_basic_nbp_tr.png)
![fntpic/u8g2_font_mercutio_basic_nbp_tn.png](fntpic/u8g2_font_mercutio_basic_nbp_tn.png)
![fntpic/u8g2_font_mercutio_basic_nbp_t_all.png](fntpic/u8g2_font_mercutio_basic_nbp_t_all.png)
## mercutio_sc_nbp
![fntpic/u8g2_font_mercutio_sc_nbp_tf.png](fntpic/u8g2_font_mercutio_sc_nbp_tf.png)
![fntpic/u8g2_font_mercutio_sc_nbp_tr.png](fntpic/u8g2_font_mercutio_sc_nbp_tr.png)
![fntpic/u8g2_font_mercutio_sc_nbp_tn.png](fntpic/u8g2_font_mercutio_sc_nbp_tn.png)
![fntpic/u8g2_font_mercutio_sc_nbp_t_all.png](fntpic/u8g2_font_mercutio_sc_nbp_t_all.png)
## miranda_nbp
![fntpic/u8g2_font_miranda_nbp_tf.png](fntpic/u8g2_font_miranda_nbp_tf.png)
![fntpic/u8g2_font_miranda_nbp_tr.png](fntpic/u8g2_font_miranda_nbp_tr.png)
![fntpic/u8g2_font_miranda_nbp_tn.png](fntpic/u8g2_font_miranda_nbp_tn.png)
## nine_by_five_nbp
![fntpic/u8g2_font_nine_by_five_nbp_tf.png](fntpic/u8g2_font_nine_by_five_nbp_tf.png)
![fntpic/u8g2_font_nine_by_five_nbp_tr.png](fntpic/u8g2_font_nine_by_five_nbp_tr.png)
![fntpic/u8g2_font_nine_by_five_nbp_tn.png](fntpic/u8g2_font_nine_by_five_nbp_tn.png)
![fntpic/u8g2_font_nine_by_five_nbp_t_all.png](fntpic/u8g2_font_nine_by_five_nbp_t_all.png)
## rosencrantz_nbp
![fntpic/u8g2_font_rosencrantz_nbp_tf.png](fntpic/u8g2_font_rosencrantz_nbp_tf.png)
![fntpic/u8g2_font_rosencrantz_nbp_tr.png](fntpic/u8g2_font_rosencrantz_nbp_tr.png)
![fntpic/u8g2_font_rosencrantz_nbp_tn.png](fntpic/u8g2_font_rosencrantz_nbp_tn.png)
![fntpic/u8g2_font_rosencrantz_nbp_t_all.png](fntpic/u8g2_font_rosencrantz_nbp_t_all.png)
## guildenstern_nbp
![fntpic/u8g2_font_guildenstern_nbp_tf.png](fntpic/u8g2_font_guildenstern_nbp_tf.png)
![fntpic/u8g2_font_guildenstern_nbp_tr.png](fntpic/u8g2_font_guildenstern_nbp_tr.png)
![fntpic/u8g2_font_guildenstern_nbp_tn.png](fntpic/u8g2_font_guildenstern_nbp_tn.png)
![fntpic/u8g2_font_guildenstern_nbp_t_all.png](fntpic/u8g2_font_guildenstern_nbp_t_all.png)
## astragal_nbp
![fntpic/u8g2_font_astragal_nbp_tf.png](fntpic/u8g2_font_astragal_nbp_tf.png)
![fntpic/u8g2_font_astragal_nbp_tr.png](fntpic/u8g2_font_astragal_nbp_tr.png)
![fntpic/u8g2_font_astragal_nbp_tn.png](fntpic/u8g2_font_astragal_nbp_tn.png)
+136
View File
@@ -0,0 +1,136 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [pxplusibmcgathin](#pxplusibmcgathin)
* [pxplusibmcga](#pxplusibmcga)
* [pxplustandynewtv](#pxplustandynewtv)
* [pxplusibmvga9](#pxplusibmvga9)
* [pxplusibmvga8](#pxplusibmvga8)
* [px437wyse700a](#px437wyse700a)
* [px437wyse700b](#px437wyse700b)
* [px437wyse700a_2x2](#px437wyse700a_2x2)
* [px437wyse700b_2x2](#px437wyse700b_2x2)
[tocend]: # (toc end)
# Reference
Download location: http://int10h.org/oldschool-pc-fonts/
# Copyright
From "README.NFO":
The Ultimate Oldschool PC Font Pack is licensed under a Creative Commons
Attribution-ShareAlike 4.0 International License.
You should have received a copy of the license along with this work. If
not, see < http://creativecommons.org/licenses/by-sa/4.0/ >.
(c) 2016 VileR
From http://int10h.org/oldschool-pc-fonts/readme/#legal_stuff :
* You may freely share and adapt / transform / enhance them for any purpose
* You must give appropriate credit (which includes the author's name and a link to the original material)
* If you distribute your own adaptations, do so under a compatible license
* No warranties are given - whatever you do, I will not be held liable
# Font Details
## pxplusibmcgathin
![fntpic/u8g2_font_pxplusibmcgathin_8f.png](fntpic/u8g2_font_pxplusibmcgathin_8f.png)
![fntpic/u8g2_font_pxplusibmcgathin_8r.png](fntpic/u8g2_font_pxplusibmcgathin_8r.png)
![fntpic/u8g2_font_pxplusibmcgathin_8n.png](fntpic/u8g2_font_pxplusibmcgathin_8n.png)
![fntpic/u8g2_font_pxplusibmcgathin_8u.png](fntpic/u8g2_font_pxplusibmcgathin_8u.png)
![fntpic/u8x8_font_pxplusibmcgathin_f.png](fntpic/u8x8_font_pxplusibmcgathin_f.png)
![fntpic/u8x8_font_pxplusibmcgathin_r.png](fntpic/u8x8_font_pxplusibmcgathin_r.png)
![fntpic/u8x8_font_pxplusibmcgathin_n.png](fntpic/u8x8_font_pxplusibmcgathin_n.png)
![fntpic/u8x8_font_pxplusibmcgathin_u.png](fntpic/u8x8_font_pxplusibmcgathin_u.png)
## pxplusibmcga
![fntpic/u8g2_font_pxplusibmcga_8f.png](fntpic/u8g2_font_pxplusibmcga_8f.png)
![fntpic/u8g2_font_pxplusibmcga_8r.png](fntpic/u8g2_font_pxplusibmcga_8r.png)
![fntpic/u8g2_font_pxplusibmcga_8n.png](fntpic/u8g2_font_pxplusibmcga_8n.png)
![fntpic/u8g2_font_pxplusibmcga_8u.png](fntpic/u8g2_font_pxplusibmcga_8u.png)
![fntpic/u8x8_font_pxplusibmcga_f.png](fntpic/u8x8_font_pxplusibmcga_f.png)
![fntpic/u8x8_font_pxplusibmcga_r.png](fntpic/u8x8_font_pxplusibmcga_r.png)
![fntpic/u8x8_font_pxplusibmcga_n.png](fntpic/u8x8_font_pxplusibmcga_n.png)
![fntpic/u8x8_font_pxplusibmcga_u.png](fntpic/u8x8_font_pxplusibmcga_u.png)
## pxplustandynewtv
![fntpic/u8g2_font_pxplustandynewtv_8f.png](fntpic/u8g2_font_pxplustandynewtv_8f.png)
![fntpic/u8g2_font_pxplustandynewtv_8r.png](fntpic/u8g2_font_pxplustandynewtv_8r.png)
![fntpic/u8g2_font_pxplustandynewtv_8n.png](fntpic/u8g2_font_pxplustandynewtv_8n.png)
![fntpic/u8g2_font_pxplustandynewtv_8u.png](fntpic/u8g2_font_pxplustandynewtv_8u.png)
![fntpic/u8x8_font_pxplustandynewtv_f.png](fntpic/u8x8_font_pxplustandynewtv_f.png)
![fntpic/u8x8_font_pxplustandynewtv_r.png](fntpic/u8x8_font_pxplustandynewtv_r.png)
![fntpic/u8x8_font_pxplustandynewtv_n.png](fntpic/u8x8_font_pxplustandynewtv_n.png)
![fntpic/u8x8_font_pxplustandynewtv_u.png](fntpic/u8x8_font_pxplustandynewtv_u.png)
![fntpic/u8g2_font_pxplustandynewtv_t_all.png](fntpic/u8g2_font_pxplustandynewtv_t_all.png)
![fntpic/u8g2_font_pxplustandynewtv_8_all.png](fntpic/u8g2_font_pxplustandynewtv_8_all.png)
## pxplusibmvga9
![fntpic/u8g2_font_pxplusibmvga9_tf.png](fntpic/u8g2_font_pxplusibmvga9_tf.png)
![fntpic/u8g2_font_pxplusibmvga9_tr.png](fntpic/u8g2_font_pxplusibmvga9_tr.png)
![fntpic/u8g2_font_pxplusibmvga9_tn.png](fntpic/u8g2_font_pxplusibmvga9_tn.png)
![fntpic/u8g2_font_pxplusibmvga9_mf.png](fntpic/u8g2_font_pxplusibmvga9_mf.png)
![fntpic/u8g2_font_pxplusibmvga9_mr.png](fntpic/u8g2_font_pxplusibmvga9_mr.png)
![fntpic/u8g2_font_pxplusibmvga9_mn.png](fntpic/u8g2_font_pxplusibmvga9_mn.png)
![fntpic/u8g2_font_pxplusibmvga9_t_all.png](fntpic/u8g2_font_pxplusibmvga9_t_all.png)
![fntpic/u8g2_font_pxplusibmvga9_m_all.png](fntpic/u8g2_font_pxplusibmvga9_m_all.png)
## pxplusibmvga8
![fntpic/u8g2_font_pxplusibmvga8_tf.png](fntpic/u8g2_font_pxplusibmvga8_tf.png)
![fntpic/u8g2_font_pxplusibmvga8_tr.png](fntpic/u8g2_font_pxplusibmvga8_tr.png)
![fntpic/u8g2_font_pxplusibmvga8_tn.png](fntpic/u8g2_font_pxplusibmvga8_tn.png)
![fntpic/u8g2_font_pxplusibmvga8_mf.png](fntpic/u8g2_font_pxplusibmvga8_mf.png)
![fntpic/u8g2_font_pxplusibmvga8_mr.png](fntpic/u8g2_font_pxplusibmvga8_mr.png)
![fntpic/u8g2_font_pxplusibmvga8_mn.png](fntpic/u8g2_font_pxplusibmvga8_mn.png)
![fntpic/u8g2_font_pxplusibmvga8_t_all.png](fntpic/u8g2_font_pxplusibmvga8_t_all.png)
![fntpic/u8g2_font_pxplusibmvga8_m_all.png](fntpic/u8g2_font_pxplusibmvga8_m_all.png)
## px437wyse700a
![fntpic/u8g2_font_px437wyse700a_tf.png](fntpic/u8g2_font_px437wyse700a_tf.png)
![fntpic/u8g2_font_px437wyse700a_tr.png](fntpic/u8g2_font_px437wyse700a_tr.png)
![fntpic/u8g2_font_px437wyse700a_tn.png](fntpic/u8g2_font_px437wyse700a_tn.png)
![fntpic/u8g2_font_px437wyse700a_mf.png](fntpic/u8g2_font_px437wyse700a_mf.png)
![fntpic/u8g2_font_px437wyse700a_mr.png](fntpic/u8g2_font_px437wyse700a_mr.png)
![fntpic/u8g2_font_px437wyse700a_mn.png](fntpic/u8g2_font_px437wyse700a_mn.png)
## px437wyse700b
![fntpic/u8g2_font_px437wyse700b_tf.png](fntpic/u8g2_font_px437wyse700b_tf.png)
![fntpic/u8g2_font_px437wyse700b_tr.png](fntpic/u8g2_font_px437wyse700b_tr.png)
![fntpic/u8g2_font_px437wyse700b_tn.png](fntpic/u8g2_font_px437wyse700b_tn.png)
![fntpic/u8g2_font_px437wyse700b_mf.png](fntpic/u8g2_font_px437wyse700b_mf.png)
![fntpic/u8g2_font_px437wyse700b_mr.png](fntpic/u8g2_font_px437wyse700b_mr.png)
![fntpic/u8g2_font_px437wyse700b_mn.png](fntpic/u8g2_font_px437wyse700b_mn.png)
## px437wyse700a_2x2
![fntpic/u8x8_font_px437wyse700a_2x2_f.png](fntpic/u8x8_font_px437wyse700a_2x2_f.png)
![fntpic/u8x8_font_px437wyse700a_2x2_r.png](fntpic/u8x8_font_px437wyse700a_2x2_r.png)
![fntpic/u8x8_font_px437wyse700a_2x2_n.png](fntpic/u8x8_font_px437wyse700a_2x2_n.png)
## px437wyse700b_2x2
![fntpic/u8x8_font_px437wyse700b_2x2_f.png](fntpic/u8x8_font_px437wyse700b_2x2_f.png)
![fntpic/u8x8_font_px437wyse700b_2x2_r.png](fntpic/u8x8_font_px437wyse700b_2x2_r.png)
![fntpic/u8x8_font_px437wyse700b_2x2_n.png](fntpic/u8x8_font_px437wyse700b_2x2_n.png)
+96
View File
@@ -0,0 +1,96 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [osb18](#osb18)
* [osb21](#osb21)
* [osb26](#osb26)
* [osb29](#osb29)
* [osb35](#osb35)
* [osb41](#osb41)
* [osr18](#osr18)
* [osr21](#osr21)
* [osr26](#osr26)
* [osr29](#osr29)
* [osr35](#osr35)
* [osr41](#osr41)
[tocend]: # (toc end)
# Reference
Description of [Old Standard Font Family](http://www.thessalonica.org.ru/en/oldstandard.html)
Download location at openfontlibrary.org: http://openfontlibrary.org/font/old-standard
# Copyright
License: [OFL (SIL Open Font License)](http://scripts.sil.org/OFL)
Font Copyright Statement:Copyright (C) 2006-2008 Alexey Kryukov
# Font Details
## osb18
![fntpic/u8g2_font_osb18_tf.png](fntpic/u8g2_font_osb18_tf.png)
![fntpic/u8g2_font_osb18_tr.png](fntpic/u8g2_font_osb18_tr.png)
![fntpic/u8g2_font_osb18_tn.png](fntpic/u8g2_font_osb18_tn.png)
## osb21
![fntpic/u8g2_font_osb21_tf.png](fntpic/u8g2_font_osb21_tf.png)
![fntpic/u8g2_font_osb21_tr.png](fntpic/u8g2_font_osb21_tr.png)
![fntpic/u8g2_font_osb21_tn.png](fntpic/u8g2_font_osb21_tn.png)
## osb26
![fntpic/u8g2_font_osb26_tf.png](fntpic/u8g2_font_osb26_tf.png)
![fntpic/u8g2_font_osb26_tr.png](fntpic/u8g2_font_osb26_tr.png)
![fntpic/u8g2_font_osb26_tn.png](fntpic/u8g2_font_osb26_tn.png)
## osb29
![fntpic/u8g2_font_osb29_tf.png](fntpic/u8g2_font_osb29_tf.png)
![fntpic/u8g2_font_osb29_tr.png](fntpic/u8g2_font_osb29_tr.png)
![fntpic/u8g2_font_osb29_tn.png](fntpic/u8g2_font_osb29_tn.png)
## osb35
![fntpic/u8g2_font_osb35_tf.png](fntpic/u8g2_font_osb35_tf.png)
![fntpic/u8g2_font_osb35_tr.png](fntpic/u8g2_font_osb35_tr.png)
![fntpic/u8g2_font_osb35_tn.png](fntpic/u8g2_font_osb35_tn.png)
## osb41
![fntpic/u8g2_font_osb41_tf.png](fntpic/u8g2_font_osb41_tf.png)
![fntpic/u8g2_font_osb41_tr.png](fntpic/u8g2_font_osb41_tr.png)
![fntpic/u8g2_font_osb41_tn.png](fntpic/u8g2_font_osb41_tn.png)
## osr18
![fntpic/u8g2_font_osr18_tf.png](fntpic/u8g2_font_osr18_tf.png)
![fntpic/u8g2_font_osr18_tr.png](fntpic/u8g2_font_osr18_tr.png)
![fntpic/u8g2_font_osr18_tn.png](fntpic/u8g2_font_osr18_tn.png)
## osr21
![fntpic/u8g2_font_osr21_tf.png](fntpic/u8g2_font_osr21_tf.png)
![fntpic/u8g2_font_osr21_tr.png](fntpic/u8g2_font_osr21_tr.png)
![fntpic/u8g2_font_osr21_tn.png](fntpic/u8g2_font_osr21_tn.png)
## osr26
![fntpic/u8g2_font_osr26_tf.png](fntpic/u8g2_font_osr26_tf.png)
![fntpic/u8g2_font_osr26_tr.png](fntpic/u8g2_font_osr26_tr.png)
![fntpic/u8g2_font_osr26_tn.png](fntpic/u8g2_font_osr26_tn.png)
## osr29
![fntpic/u8g2_font_osr29_tf.png](fntpic/u8g2_font_osr29_tf.png)
![fntpic/u8g2_font_osr29_tr.png](fntpic/u8g2_font_osr29_tr.png)
![fntpic/u8g2_font_osr29_tn.png](fntpic/u8g2_font_osr29_tn.png)
## osr35
![fntpic/u8g2_font_osr35_tf.png](fntpic/u8g2_font_osr35_tf.png)
![fntpic/u8g2_font_osr35_tr.png](fntpic/u8g2_font_osr35_tr.png)
![fntpic/u8g2_font_osr35_tn.png](fntpic/u8g2_font_osr35_tn.png)
## osr41
![fntpic/u8g2_font_osr41_tf.png](fntpic/u8g2_font_osr41_tf.png)
![fntpic/u8g2_font_osr41_tr.png](fntpic/u8g2_font_osr41_tr.png)
![fntpic/u8g2_font_osr41_tn.png](fntpic/u8g2_font_osr41_tn.png)
+91
View File
@@ -0,0 +1,91 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [artossans8](#artossans8)
* [artosserif8](#artosserif8)
* [chroma48medium8](#chroma48medium8)
* [saikyosansbold8](#saikyosansbold8)
* [torussansbold8](#torussansbold8)
* [victoriabold8](#victoriabold8)
* [victoriamedium8](#victoriamedium8)
[tocend]: # (toc end)
# Reference
All font on this page have been downloaded from
http://opengameart.org/content/a-package-of-8-bit-fonts-for-grafx2-and-linux
# Copyright
Zero Lizense: http://creativecommons.org/publicdomain/zero/1.0/
# Font Details
## artossans8
![fntpic/u8g2_font_artossans8_8r.png](fntpic/u8g2_font_artossans8_8r.png)
![fntpic/u8g2_font_artossans8_8n.png](fntpic/u8g2_font_artossans8_8n.png)
![fntpic/u8g2_font_artossans8_8u.png](fntpic/u8g2_font_artossans8_8u.png)
![fntpic/u8x8_font_artossans8_r.png](fntpic/u8x8_font_artossans8_r.png)
![fntpic/u8x8_font_artossans8_n.png](fntpic/u8x8_font_artossans8_n.png)
![fntpic/u8x8_font_artossans8_u.png](fntpic/u8x8_font_artossans8_u.png)
## artosserif8
![fntpic/u8g2_font_artosserif8_8r.png](fntpic/u8g2_font_artosserif8_8r.png)
![fntpic/u8g2_font_artosserif8_8n.png](fntpic/u8g2_font_artosserif8_8n.png)
![fntpic/u8g2_font_artosserif8_8u.png](fntpic/u8g2_font_artosserif8_8u.png)
![fntpic/u8x8_font_artosserif8_r.png](fntpic/u8x8_font_artosserif8_r.png)
![fntpic/u8x8_font_artosserif8_n.png](fntpic/u8x8_font_artosserif8_n.png)
![fntpic/u8x8_font_artosserif8_u.png](fntpic/u8x8_font_artosserif8_u.png)
## chroma48medium8
![fntpic/u8g2_font_chroma48medium8_8r.png](fntpic/u8g2_font_chroma48medium8_8r.png)
![fntpic/u8g2_font_chroma48medium8_8n.png](fntpic/u8g2_font_chroma48medium8_8n.png)
![fntpic/u8g2_font_chroma48medium8_8u.png](fntpic/u8g2_font_chroma48medium8_8u.png)
![fntpic/u8x8_font_chroma48medium8_r.png](fntpic/u8x8_font_chroma48medium8_r.png)
![fntpic/u8x8_font_chroma48medium8_n.png](fntpic/u8x8_font_chroma48medium8_n.png)
![fntpic/u8x8_font_chroma48medium8_u.png](fntpic/u8x8_font_chroma48medium8_u.png)
## saikyosansbold8
![fntpic/u8g2_font_saikyosansbold8_8n.png](fntpic/u8g2_font_saikyosansbold8_8n.png)
![fntpic/u8g2_font_saikyosansbold8_8u.png](fntpic/u8g2_font_saikyosansbold8_8u.png)
![fntpic/u8x8_font_saikyosansbold8_n.png](fntpic/u8x8_font_saikyosansbold8_n.png)
![fntpic/u8x8_font_saikyosansbold8_u.png](fntpic/u8x8_font_saikyosansbold8_u.png)
## torussansbold8
![fntpic/u8g2_font_torussansbold8_8r.png](fntpic/u8g2_font_torussansbold8_8r.png)
![fntpic/u8g2_font_torussansbold8_8n.png](fntpic/u8g2_font_torussansbold8_8n.png)
![fntpic/u8g2_font_torussansbold8_8u.png](fntpic/u8g2_font_torussansbold8_8u.png)
![fntpic/u8x8_font_torussansbold8_r.png](fntpic/u8x8_font_torussansbold8_r.png)
![fntpic/u8x8_font_torussansbold8_n.png](fntpic/u8x8_font_torussansbold8_n.png)
![fntpic/u8x8_font_torussansbold8_u.png](fntpic/u8x8_font_torussansbold8_u.png)
## victoriabold8
![fntpic/u8g2_font_victoriabold8_8r.png](fntpic/u8g2_font_victoriabold8_8r.png)
![fntpic/u8g2_font_victoriabold8_8n.png](fntpic/u8g2_font_victoriabold8_8n.png)
![fntpic/u8g2_font_victoriabold8_8u.png](fntpic/u8g2_font_victoriabold8_8u.png)
![fntpic/u8x8_font_victoriabold8_r.png](fntpic/u8x8_font_victoriabold8_r.png)
![fntpic/u8x8_font_victoriabold8_n.png](fntpic/u8x8_font_victoriabold8_n.png)
![fntpic/u8x8_font_victoriabold8_u.png](fntpic/u8x8_font_victoriabold8_u.png)
## victoriamedium8
![fntpic/u8g2_font_victoriamedium8_8r.png](fntpic/u8g2_font_victoriamedium8_8r.png)
![fntpic/u8g2_font_victoriamedium8_8n.png](fntpic/u8g2_font_victoriamedium8_8n.png)
![fntpic/u8g2_font_victoriamedium8_8u.png](fntpic/u8g2_font_victoriamedium8_8u.png)
![fntpic/u8x8_font_victoriamedium8_r.png](fntpic/u8x8_font_victoriamedium8_r.png)
![fntpic/u8x8_font_victoriamedium8_n.png](fntpic/u8x8_font_victoriamedium8_n.png)
![fntpic/u8x8_font_victoriamedium8_u.png](fntpic/u8x8_font_victoriamedium8_u.png)
+103
View File
@@ -0,0 +1,103 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [HelvetiPixel](#helvetipixel)
* [TimesNewPixel](#timesnewpixel)
* [BitTypeWriter](#bittypewriter)
* [Georgia7px](#georgia7px)
* [Wizzard](#wizzard)
* [HelvetiPixelOutline](#helvetipixeloutline)
* [Untitled16PixelSansSerifBitmap](#untitled16pixelsansserifbitmap)
* [UnnamedDOSFontIV](#unnameddosfontiv)
* [Terminal](#terminal)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "Pentacom".
Fonts will be available with U8g2 v2.26.
# Copyright
HelvetiPixel by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=381
license : (Public Domain)
TimesNewPixel by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=57
license : (Public Domain)
BitTypeWriter by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1455
license : (Public Domain)
Georgia7px by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=1451
license : (Public Domain)
Wizzard by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=902
license : (Public Domain)
HelvetiPixel (Outline) by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=182
license : (Public Domain)
Untitled16PixelSansSerifBitmap by Pentacom
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=3046
license : (Public Domain)
U8g2 v2.32
Unnamed DOS Font IV by Pentacom
license : (Public Domain)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=6171
Terminal by pentacom
license : (All Rights Reserved)
https://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=5556
# Font Pictures
## HelvetiPixel
![fntpic/u8g2_font_HelvetiPixel_tr.png](fntpic/u8g2_font_HelvetiPixel_tr.png)
## TimesNewPixel
![fntpic/u8g2_font_TimesNewPixel_tr.png](fntpic/u8g2_font_TimesNewPixel_tr.png)
## BitTypeWriter
![fntpic/u8g2_font_BitTypeWriter_tr.png](fntpic/u8g2_font_BitTypeWriter_tr.png)
![fntpic/u8g2_font_BitTypeWriter_te.png](fntpic/u8g2_font_BitTypeWriter_te.png)
## Georgia7px
![fntpic/u8g2_font_Georgia7px_tf.png](fntpic/u8g2_font_Georgia7px_tf.png)
![fntpic/u8g2_font_Georgia7px_tr.png](fntpic/u8g2_font_Georgia7px_tr.png)
![fntpic/u8g2_font_Georgia7px_te.png](fntpic/u8g2_font_Georgia7px_te.png)
## Wizzard
![fntpic/u8g2_font_Wizzard_tr.png](fntpic/u8g2_font_Wizzard_tr.png)
## HelvetiPixelOutline
![fntpic/u8g2_font_HelvetiPixelOutline_tr.png](fntpic/u8g2_font_HelvetiPixelOutline_tr.png)
![fntpic/u8g2_font_HelvetiPixelOutline_te.png](fntpic/u8g2_font_HelvetiPixelOutline_te.png)
## Untitled16PixelSansSerifBitmap
![fntpic/u8g2_font_Untitled16PixelSansSerifBitmap_tr.png](fntpic/u8g2_font_Untitled16PixelSansSerifBitmap_tr.png)
## UnnamedDOSFontIV
![fntpic/u8g2_font_UnnamedDOSFontIV_tr.png](fntpic/u8g2_font_UnnamedDOSFontIV_tr.png)
## Terminal
![fntpic/u8g2_font_Terminal_tr.png](fntpic/u8g2_font_Terminal_tr.png)
![fntpic/u8g2_font_Terminal_te.png](fntpic/u8g2_font_Terminal_te.png)
+399
View File
@@ -0,0 +1,399 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Samim and Samim-FD](#samim-and-samimfd)
* [GanjNamehSans-Regular](#ganjnamehsansregular)
* [IranianSansRegular](#iraniansansregular)
* [Font Details](#font-details)
* [samim_10](#samim_10)
* [samim_12](#samim_12)
* [samim_14](#samim_14)
* [samim_16](#samim_16)
* [samim_fd_10](#samim_fd_10)
* [samim_fd_12](#samim_fd_12)
* [samim_fd_14](#samim_fd_14)
* [samim_fd_16](#samim_fd_16)
* [ganj_nameh_sans10](#ganj_nameh_sans10)
* [ganj_nameh_sans12](#ganj_nameh_sans12)
* [ganj_nameh_sans14](#ganj_nameh_sans14)
* [ganj_nameh_sans16](#ganj_nameh_sans16)
* [iranian_sans_8](#iranian_sans_8)
* [iranian_sans_10](#iranian_sans_10)
* [iranian_sans_12](#iranian_sans_12)
* [iranian_sans_14](#iranian_sans_14)
* [iranian_sans_16](#iranian_sans_16)
[tocend]: # (toc end)
# Reference
The purpose of this font group is to support fonts as requested in issue #532.
The following fonts are described here:
* Samim & Samim-FD ([LICENSE](https://github.com/rastikerdar/samim-font/blob/master/LICENSE))
* GanjNamehSans-Regular ([LICENSE](https://github.com/font-store/GanjnamehFont/blob/master/OFL.txt))
* IranianSansRegular ([LICENSE](https://github.com/nekofar/iranian-sans-fontface/blob/master/LICENSE))
# Copyright
## Samim and Samim-FD
```
Copyright (c) 2015, Saber Rastikerdar (saber.rastikerdar@gmail.com),
Glyphs and data from Open Sans font are licensed under the Apache License, Version 2.0.
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
```
## GanjNamehSans-Regular
```
Copyright 2015 The Jomhuria Project Authors (info: lasse@graphicore.de)
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
```
## IranianSansRegular
```
=======================================================================
THIS PACKAGE IS FREE SOFTWARE BUT IS NOT GPL. PLEASE READ THE FOLLOWING
LICENSE FOR DETAILS OF YOUR RIGHTS:
=======================================================================
Arabic Script Glyphs, OpenType Layout and TrueType Instructions (c) 2007 by Iranian National Initiative for Free and
Open Source Software (www.foss.ir) See license details in section one.
Latin Glyph Outlines Copyright (c) 2003 by Bitstream, Inc. See license details in section two.
-----------------------------------------------------------------------
SECTION ONE - Iranian National Initiative for Free and Open Source Software Font License
Copyright (c) 2007 by Iranian National Initiative for Free and Open Source Software,
All Rights Reserved.
"Iranian Sans" is a service mark of Iranian National Initiative for Free and Open Source Software
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license
("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software,
including without limitation the rights to use, copy, merge, publish, distribute, copies of the Font Software, and to
permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more
of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the
Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed
to names not containing the word "Iranian".
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is
distributed either under the "Iranian" names or claimed to be endorsed or associated with Iranian National Initiative
for Free and Open Source Software.
The Font Software may be sold as part of a larger software package provided that: a) No copy of one or more of the
Font Software typefaces may be sold by itself or as part of a package that only consists of a collection of fonts and
associated supplementary documentation and utilities. b) No price is charged or associated with any of the Font
Software typefaces themselves. So, the price of the package with or without the Font Software typefaces should be
the same.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NON-INFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL "IRANIAN NATIONAL
INITIATIVE FOR FREE AND OPEN SOURCE SOFTWARE" BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT
SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
Except as contained in this notice, the names of "Iranian", "Iranian Sans", "Iranian National Initiative for Free and
Open Source Software" or "www.foss.ir" shall not be used in advertising or otherwise to promote the sale, use or
other dealings in this Font Software without prior written authorization from the Iranian National Initiative for Free
and Open Source Software. For further information, contact: fonts (at) foss (dot) ir.
-----------------------------------------------------------------------
SECTION TWO - Bitstream, Inc. License
Copyright (c) 2003 by Bitstream, Inc.
All Rights Reserved.
Bitstream Vera is a trademark of Bitstream, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license
("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software,
including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font
Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more
of the Font Software typefaces.
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the
Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed
to names not containing either the words "Bitstream" or the word "Vera".
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is
distributed under the "Bitstream Vera" names.
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software
typefaces may be sold by itself.
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE
GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL,
INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS
IN THE FONT SOFTWARE.
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be
used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written
authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at
gnome dot org.
Reference: https://groups.google.com/d/msg/persian-computing/9LG13RjZ5Q4/AIcegC5pA6oJ
```
# Font Details
## samim_10
![fntpic/u8g2_font_samim_10_t_all.png](fntpic/u8g2_font_samim_10_t_all.png)
## samim_12
![fntpic/u8g2_font_samim_12_t_all.png](fntpic/u8g2_font_samim_12_t_all.png)
## samim_14
![fntpic/u8g2_font_samim_14_t_all.png](fntpic/u8g2_font_samim_14_t_all.png)
## samim_16
![fntpic/u8g2_font_samim_16_t_all.png](fntpic/u8g2_font_samim_16_t_all.png)
## samim_fd_10
![fntpic/u8g2_font_samim_fd_10_t_all.png](fntpic/u8g2_font_samim_fd_10_t_all.png)
## samim_fd_12
![fntpic/u8g2_font_samim_fd_12_t_all.png](fntpic/u8g2_font_samim_fd_12_t_all.png)
## samim_fd_14
![fntpic/u8g2_font_samim_fd_14_t_all.png](fntpic/u8g2_font_samim_fd_14_t_all.png)
## samim_fd_16
![fntpic/u8g2_font_samim_fd_16_t_all.png](fntpic/u8g2_font_samim_fd_16_t_all.png)
## ganj_nameh_sans10
![fntpic/u8g2_font_ganj_nameh_sans10_t_all.png](fntpic/u8g2_font_ganj_nameh_sans10_t_all.png)
## ganj_nameh_sans12
![fntpic/u8g2_font_ganj_nameh_sans12_t_all.png](fntpic/u8g2_font_ganj_nameh_sans12_t_all.png)
## ganj_nameh_sans14
![fntpic/u8g2_font_ganj_nameh_sans14_t_all.png](fntpic/u8g2_font_ganj_nameh_sans14_t_all.png)
## ganj_nameh_sans16
![fntpic/u8g2_font_ganj_nameh_sans16_t_all.png](fntpic/u8g2_font_ganj_nameh_sans16_t_all.png)
## iranian_sans_8
![fntpic/u8g2_font_iranian_sans_8_t_all.png](fntpic/u8g2_font_iranian_sans_8_t_all.png)
## iranian_sans_10
![fntpic/u8g2_font_iranian_sans_10_t_all.png](fntpic/u8g2_font_iranian_sans_10_t_all.png)
## iranian_sans_12
![fntpic/u8g2_font_iranian_sans_12_t_all.png](fntpic/u8g2_font_iranian_sans_12_t_all.png)
## iranian_sans_14
![fntpic/u8g2_font_iranian_sans_14_t_all.png](fntpic/u8g2_font_iranian_sans_14_t_all.png)
## iranian_sans_16
![fntpic/u8g2_font_iranian_sans_16_t_all.png](fntpic/u8g2_font_iranian_sans_16_t_all.png)
+119
View File
@@ -0,0 +1,119 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [profont10](#profont10)
* [profont11](#profont11)
* [profont12](#profont12)
* [profont15](#profont15)
* [profont17](#profont17)
* [profont22](#profont22)
* [profont29](#profont29)
* [profont29_2x3](#profont29_2x3)
[tocend]: # (toc end)
# Reference
`ProFont` has been downloaded from http://tobiasjung.name/profont/.
# Copyright
```
ProFont
MIT License
Copyright (c) 2014 Carl Osterwald, Stephen C. Gilardi, Andrew Welch
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```
# Font Details
## profont10
![fntpic/u8g2_font_profont10_tf.png](fntpic/u8g2_font_profont10_tf.png)
![fntpic/u8g2_font_profont10_tr.png](fntpic/u8g2_font_profont10_tr.png)
![fntpic/u8g2_font_profont10_tn.png](fntpic/u8g2_font_profont10_tn.png)
![fntpic/u8g2_font_profont10_mf.png](fntpic/u8g2_font_profont10_mf.png)
![fntpic/u8g2_font_profont10_mr.png](fntpic/u8g2_font_profont10_mr.png)
![fntpic/u8g2_font_profont10_mn.png](fntpic/u8g2_font_profont10_mn.png)
## profont11
![fntpic/u8g2_font_profont11_tf.png](fntpic/u8g2_font_profont11_tf.png)
![fntpic/u8g2_font_profont11_tr.png](fntpic/u8g2_font_profont11_tr.png)
![fntpic/u8g2_font_profont11_tn.png](fntpic/u8g2_font_profont11_tn.png)
![fntpic/u8g2_font_profont11_mf.png](fntpic/u8g2_font_profont11_mf.png)
![fntpic/u8g2_font_profont11_mr.png](fntpic/u8g2_font_profont11_mr.png)
![fntpic/u8g2_font_profont11_mn.png](fntpic/u8g2_font_profont11_mn.png)
## profont12
![fntpic/u8g2_font_profont12_tf.png](fntpic/u8g2_font_profont12_tf.png)
![fntpic/u8g2_font_profont12_tr.png](fntpic/u8g2_font_profont12_tr.png)
![fntpic/u8g2_font_profont12_tn.png](fntpic/u8g2_font_profont12_tn.png)
![fntpic/u8g2_font_profont12_mf.png](fntpic/u8g2_font_profont12_mf.png)
![fntpic/u8g2_font_profont12_mr.png](fntpic/u8g2_font_profont12_mr.png)
![fntpic/u8g2_font_profont12_mn.png](fntpic/u8g2_font_profont12_mn.png)
## profont15
![fntpic/u8g2_font_profont15_tf.png](fntpic/u8g2_font_profont15_tf.png)
![fntpic/u8g2_font_profont15_tr.png](fntpic/u8g2_font_profont15_tr.png)
![fntpic/u8g2_font_profont15_tn.png](fntpic/u8g2_font_profont15_tn.png)
![fntpic/u8g2_font_profont15_mf.png](fntpic/u8g2_font_profont15_mf.png)
![fntpic/u8g2_font_profont15_mr.png](fntpic/u8g2_font_profont15_mr.png)
![fntpic/u8g2_font_profont15_mn.png](fntpic/u8g2_font_profont15_mn.png)
## profont17
![fntpic/u8g2_font_profont17_tf.png](fntpic/u8g2_font_profont17_tf.png)
![fntpic/u8g2_font_profont17_tr.png](fntpic/u8g2_font_profont17_tr.png)
![fntpic/u8g2_font_profont17_tn.png](fntpic/u8g2_font_profont17_tn.png)
![fntpic/u8g2_font_profont17_mf.png](fntpic/u8g2_font_profont17_mf.png)
![fntpic/u8g2_font_profont17_mr.png](fntpic/u8g2_font_profont17_mr.png)
![fntpic/u8g2_font_profont17_mn.png](fntpic/u8g2_font_profont17_mn.png)
## profont22
![fntpic/u8g2_font_profont22_tf.png](fntpic/u8g2_font_profont22_tf.png)
![fntpic/u8g2_font_profont22_tr.png](fntpic/u8g2_font_profont22_tr.png)
![fntpic/u8g2_font_profont22_tn.png](fntpic/u8g2_font_profont22_tn.png)
![fntpic/u8g2_font_profont22_mf.png](fntpic/u8g2_font_profont22_mf.png)
![fntpic/u8g2_font_profont22_mr.png](fntpic/u8g2_font_profont22_mr.png)
![fntpic/u8g2_font_profont22_mn.png](fntpic/u8g2_font_profont22_mn.png)
## profont29
![fntpic/u8g2_font_profont29_tf.png](fntpic/u8g2_font_profont29_tf.png)
![fntpic/u8g2_font_profont29_tr.png](fntpic/u8g2_font_profont29_tr.png)
![fntpic/u8g2_font_profont29_tn.png](fntpic/u8g2_font_profont29_tn.png)
![fntpic/u8g2_font_profont29_mf.png](fntpic/u8g2_font_profont29_mf.png)
![fntpic/u8g2_font_profont29_mr.png](fntpic/u8g2_font_profont29_mr.png)
![fntpic/u8g2_font_profont29_mn.png](fntpic/u8g2_font_profont29_mn.png)
## profont29_2x3
![fntpic/u8x8_font_profont29_2x3_f.png](fntpic/u8x8_font_profont29_2x3_f.png)
![fntpic/u8x8_font_profont29_2x3_r.png](fntpic/u8x8_font_profont29_2x3_r.png)
![fntpic/u8x8_font_profont29_2x3_n.png](fntpic/u8x8_font_profont29_2x3_n.png)
+42
View File
@@ -0,0 +1,42 @@
[tocstart]: # (toc start)
* [Siji icon font](#siji-icon-font)
* [Waffle icon font](#waffle-icon-font)
* [Font Details](#font-details)
* [siji](#siji)
* [waffle](#waffle)
[tocend]: # (toc end)
# Siji icon font
Siji icon font is available at [https://github.com/stark/siji](https://github.com/stark/siji).
For u8g2, the icon font is combinded with the X11 [6x10 font](fntgrpx11).
Siji icon font is available under the "GNU General Public License v2.0": [https://github.com/stark/siji/blob/master/LICENSE](https://github.com/stark/siji/blob/master/LICENSE)
# Waffle icon font
Waffle icon font is available from https://github.com/addy-dclxvi/bitmap-font-collections
Waffle icon font is available under the "GNU General Public License v3.0": https://github.com/addy-dclxvi/bitmap-font-collections/blob/master/LICENSE
From the author of Waffle icon font:
When I opened Siji font, I saw that a lot glyphes had different vertical & horizontal alignment. That explains why some of the glyphes werent aligned well with text in the statusbar. So, I adjusted them to make it paired well with text font with 7px Uppercase height & 2px descent, one by one. Horizontally centered too. And glyphes which have odd-number of pixels, mathematically couldnt be centered inside 12px width bounding box. So, I dragged them all to the left. I also added 155 self-drawn glyphes.
# Font Details
## siji
![fntpic/u8g2_font_siji_t_6x10.png](fntpic/u8g2_font_siji_t_6x10.png)
## waffle
![fntpic/u8g2_font_waffle_t_all.png](fntpic/u8g2_font_waffle_t_all.png)
+105
View File
@@ -0,0 +1,105 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [spleen5x8](#spleen5x8)
* [spleen6x12](#spleen6x12)
* [spleen8x16](#spleen8x16)
* [spleen12x24](#spleen12x24)
* [spleen16x32](#spleen16x32)
* [spleen32x64](#spleen32x64)
[tocend]: # (toc end)
# Reference
Name: **Spleen**
Web: https://github.com/fcambus/spleen
Font download location is [here](http://sofia.nmsu.edu/~mleisher/Software/cu/).
# Copyright
Copyright (c) 2018-2022, Frederic Cambus
https://www.cambus.net/
Spleen is released under the BSD 2-Clause license.
SPDX-License-Identifier: BSD-2-Clause
License (from github page):
Copyright (c) 2018-2023, Frederic Cambus
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
# Font Details
## spleen5x8
![fntpic/u8g2_font_spleen5x8_mf.png](fntpic/u8g2_font_spleen5x8_mf.png)
![fntpic/u8g2_font_spleen5x8_mr.png](fntpic/u8g2_font_spleen5x8_mr.png)
![fntpic/u8g2_font_spleen5x8_mn.png](fntpic/u8g2_font_spleen5x8_mn.png)
![fntpic/u8g2_font_spleen5x8_mu.png](fntpic/u8g2_font_spleen5x8_mu.png)
![fntpic/u8g2_font_spleen5x8_me.png](fntpic/u8g2_font_spleen5x8_me.png)
## spleen6x12
![fntpic/u8g2_font_spleen6x12_mf.png](fntpic/u8g2_font_spleen6x12_mf.png)
![fntpic/u8g2_font_spleen6x12_mr.png](fntpic/u8g2_font_spleen6x12_mr.png)
![fntpic/u8g2_font_spleen6x12_mn.png](fntpic/u8g2_font_spleen6x12_mn.png)
![fntpic/u8g2_font_spleen6x12_mu.png](fntpic/u8g2_font_spleen6x12_mu.png)
![fntpic/u8g2_font_spleen6x12_me.png](fntpic/u8g2_font_spleen6x12_me.png)
## spleen8x16
![fntpic/u8g2_font_spleen8x16_mf.png](fntpic/u8g2_font_spleen8x16_mf.png)
![fntpic/u8g2_font_spleen8x16_mr.png](fntpic/u8g2_font_spleen8x16_mr.png)
![fntpic/u8g2_font_spleen8x16_mn.png](fntpic/u8g2_font_spleen8x16_mn.png)
![fntpic/u8g2_font_spleen8x16_mu.png](fntpic/u8g2_font_spleen8x16_mu.png)
![fntpic/u8g2_font_spleen8x16_me.png](fntpic/u8g2_font_spleen8x16_me.png)
## spleen12x24
![fntpic/u8g2_font_spleen12x24_mf.png](fntpic/u8g2_font_spleen12x24_mf.png)
![fntpic/u8g2_font_spleen12x24_mr.png](fntpic/u8g2_font_spleen12x24_mr.png)
![fntpic/u8g2_font_spleen12x24_mn.png](fntpic/u8g2_font_spleen12x24_mn.png)
![fntpic/u8g2_font_spleen12x24_mu.png](fntpic/u8g2_font_spleen12x24_mu.png)
![fntpic/u8g2_font_spleen12x24_me.png](fntpic/u8g2_font_spleen12x24_me.png)
## spleen16x32
![fntpic/u8g2_font_spleen16x32_mf.png](fntpic/u8g2_font_spleen16x32_mf.png)
![fntpic/u8g2_font_spleen16x32_mr.png](fntpic/u8g2_font_spleen16x32_mr.png)
![fntpic/u8g2_font_spleen16x32_mn.png](fntpic/u8g2_font_spleen16x32_mn.png)
![fntpic/u8g2_font_spleen16x32_mu.png](fntpic/u8g2_font_spleen16x32_mu.png)
![fntpic/u8g2_font_spleen16x32_me.png](fntpic/u8g2_font_spleen16x32_me.png)
## spleen32x64
![fntpic/u8g2_font_spleen32x64_mf.png](fntpic/u8g2_font_spleen32x64_mf.png)
![fntpic/u8g2_font_spleen32x64_mr.png](fntpic/u8g2_font_spleen32x64_mr.png)
![fntpic/u8g2_font_spleen32x64_mn.png](fntpic/u8g2_font_spleen32x64_mn.png)
![fntpic/u8g2_font_spleen32x64_mu.png](fntpic/u8g2_font_spleen32x64_mu.png)
![fntpic/u8g2_font_spleen32x64_me.png](fntpic/u8g2_font_spleen32x64_me.png)
+260
View File
@@ -0,0 +1,260 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [streamline_all](#streamline_all)
* [streamline_building_real_estate](#streamline_building_real_estate)
* [streamline_business](#streamline_business)
* [streamline_coding_apps_websites](#streamline_coding_apps_websites)
* [streamline_computers_devices_electronics](#streamline_computers_devices_electronics)
* [streamline_content_files](#streamline_content_files)
* [streamline_design](#streamline_design)
* [streamline_ecology](#streamline_ecology)
* [streamline_email](#streamline_email)
* [streamline_entertainment_events_hobbies](#streamline_entertainment_events_hobbies)
* [streamline_food_drink](#streamline_food_drink)
* [streamline_hand_signs](#streamline_hand_signs)
* [streamline_health_beauty](#streamline_health_beauty)
* [streamline_interface_essential_action](#streamline_interface_essential_action)
* [streamline_interface_essential_alert](#streamline_interface_essential_alert)
* [streamline_interface_essential_audio](#streamline_interface_essential_audio)
* [streamline_interface_essential_calendar](#streamline_interface_essential_calendar)
* [streamline_interface_essential_chart](#streamline_interface_essential_chart)
* [streamline_interface_essential_circle_triangle](#streamline_interface_essential_circle_triangle)
* [streamline_interface_essential_cog](#streamline_interface_essential_cog)
* [streamline_interface_essential_cursor](#streamline_interface_essential_cursor)
* [streamline_interface_essential_dial_pad](#streamline_interface_essential_dial_pad)
* [streamline_interface_essential_edit](#streamline_interface_essential_edit)
* [streamline_interface_essential_expand_shrink](#streamline_interface_essential_expand_shrink)
* [streamline_interface_essential_eye](#streamline_interface_essential_eye)
* [streamline_interface_essential_file](#streamline_interface_essential_file)
* [streamline_interface_essential_help](#streamline_interface_essential_help)
* [streamline_interface_essential_hierarchy](#streamline_interface_essential_hierarchy)
* [streamline_interface_essential_home_menu](#streamline_interface_essential_home_menu)
* [streamline_interface_essential_id](#streamline_interface_essential_id)
* [streamline_interface_essential_key_lock](#streamline_interface_essential_key_lock)
* [streamline_interface_essential_link](#streamline_interface_essential_link)
* [streamline_interface_essential_loading](#streamline_interface_essential_loading)
* [streamline_interface_essential_login](#streamline_interface_essential_login)
* [streamline_interface_essential_other](#streamline_interface_essential_other)
* [streamline_interface_essential_paginate](#streamline_interface_essential_paginate)
* [streamline_interface_essential_search](#streamline_interface_essential_search)
* [streamline_interface_essential_setting](#streamline_interface_essential_setting)
* [streamline_interface_essential_share](#streamline_interface_essential_share)
* [streamline_interface_essential_text](#streamline_interface_essential_text)
* [streamline_interface_essential_wifi](#streamline_interface_essential_wifi)
* [streamline_interface_essential_zoom](#streamline_interface_essential_zoom)
* [streamline_internet_network](#streamline_internet_network)
* [streamline_logo](#streamline_logo)
* [streamline_map_navigation](#streamline_map_navigation)
* [streamline_money_payments](#streamline_money_payments)
* [streamline_music_audio](#streamline_music_audio)
* [streamline_pet_animals](#streamline_pet_animals)
* [streamline_phone](#streamline_phone)
* [streamline_photography](#streamline_photography)
* [streamline_romance](#streamline_romance)
* [streamline_school_science](#streamline_school_science)
* [streamline_shopping_shipping](#streamline_shopping_shipping)
* [streamline_social_rewards](#streamline_social_rewards)
* [streamline_technology](#streamline_technology)
* [streamline_transportation](#streamline_transportation)
* [streamline_travel_wayfinding](#streamline_travel_wayfinding)
* [streamline_users](#streamline_users)
* [streamline_video_movies](#streamline_video_movies)
* [streamline_weather](#streamline_weather)
[tocend]: # (toc end)
# Reference
"streamline pixel" icons from https://app.streamlinehq.com/icons/pixel
# Copyright
The "streamline pixel" icons are available for free if the attribution link is provided (https://intercom.help/streamlinehq/en/articles/5354403-how-to-create-an-attribution-link).
# Font Details
## streamline_all
![fntpic/u8g2_font_streamline_all_t.png](fntpic/u8g2_font_streamline_all_t.png)
## streamline_building_real_estate
![fntpic/u8g2_font_streamline_building_real_estate_t.png](fntpic/u8g2_font_streamline_building_real_estate_t.png)
## streamline_business
![fntpic/u8g2_font_streamline_business_t.png](fntpic/u8g2_font_streamline_business_t.png)
## streamline_coding_apps_websites
![fntpic/u8g2_font_streamline_coding_apps_websites_t.png](fntpic/u8g2_font_streamline_coding_apps_websites_t.png)
## streamline_computers_devices_electronics
![fntpic/u8g2_font_streamline_computers_devices_electronics_t.png](fntpic/u8g2_font_streamline_computers_devices_electronics_t.png)
## streamline_content_files
![fntpic/u8g2_font_streamline_content_files_t.png](fntpic/u8g2_font_streamline_content_files_t.png)
## streamline_design
![fntpic/u8g2_font_streamline_design_t.png](fntpic/u8g2_font_streamline_design_t.png)
## streamline_ecology
![fntpic/u8g2_font_streamline_ecology_t.png](fntpic/u8g2_font_streamline_ecology_t.png)
## streamline_email
![fntpic/u8g2_font_streamline_email_t.png](fntpic/u8g2_font_streamline_email_t.png)
## streamline_entertainment_events_hobbies
![fntpic/u8g2_font_streamline_entertainment_events_hobbies_t.png](fntpic/u8g2_font_streamline_entertainment_events_hobbies_t.png)
## streamline_food_drink
![fntpic/u8g2_font_streamline_food_drink_t.png](fntpic/u8g2_font_streamline_food_drink_t.png)
## streamline_hand_signs
![fntpic/u8g2_font_streamline_hand_signs_t.png](fntpic/u8g2_font_streamline_hand_signs_t.png)
## streamline_health_beauty
![fntpic/u8g2_font_streamline_health_beauty_t.png](fntpic/u8g2_font_streamline_health_beauty_t.png)
## streamline_interface_essential_action
![fntpic/u8g2_font_streamline_interface_essential_action_t.png](fntpic/u8g2_font_streamline_interface_essential_action_t.png)
## streamline_interface_essential_alert
![fntpic/u8g2_font_streamline_interface_essential_alert_t.png](fntpic/u8g2_font_streamline_interface_essential_alert_t.png)
## streamline_interface_essential_audio
![fntpic/u8g2_font_streamline_interface_essential_audio_t.png](fntpic/u8g2_font_streamline_interface_essential_audio_t.png)
## streamline_interface_essential_calendar
![fntpic/u8g2_font_streamline_interface_essential_calendar_t.png](fntpic/u8g2_font_streamline_interface_essential_calendar_t.png)
## streamline_interface_essential_chart
![fntpic/u8g2_font_streamline_interface_essential_chart_t.png](fntpic/u8g2_font_streamline_interface_essential_chart_t.png)
## streamline_interface_essential_circle_triangle
![fntpic/u8g2_font_streamline_interface_essential_circle_triangle_t.png](fntpic/u8g2_font_streamline_interface_essential_circle_triangle_t.png)
## streamline_interface_essential_cog
![fntpic/u8g2_font_streamline_interface_essential_cog_t.png](fntpic/u8g2_font_streamline_interface_essential_cog_t.png)
## streamline_interface_essential_cursor
![fntpic/u8g2_font_streamline_interface_essential_cursor_t.png](fntpic/u8g2_font_streamline_interface_essential_cursor_t.png)
## streamline_interface_essential_dial_pad
![fntpic/u8g2_font_streamline_interface_essential_dial_pad_t.png](fntpic/u8g2_font_streamline_interface_essential_dial_pad_t.png)
## streamline_interface_essential_edit
![fntpic/u8g2_font_streamline_interface_essential_edit_t.png](fntpic/u8g2_font_streamline_interface_essential_edit_t.png)
## streamline_interface_essential_expand_shrink
![fntpic/u8g2_font_streamline_interface_essential_expand_shrink_t.png](fntpic/u8g2_font_streamline_interface_essential_expand_shrink_t.png)
## streamline_interface_essential_eye
![fntpic/u8g2_font_streamline_interface_essential_eye_t.png](fntpic/u8g2_font_streamline_interface_essential_eye_t.png)
## streamline_interface_essential_file
![fntpic/u8g2_font_streamline_interface_essential_file_t.png](fntpic/u8g2_font_streamline_interface_essential_file_t.png)
## streamline_interface_essential_help
![fntpic/u8g2_font_streamline_interface_essential_help_t.png](fntpic/u8g2_font_streamline_interface_essential_help_t.png)
## streamline_interface_essential_hierarchy
![fntpic/u8g2_font_streamline_interface_essential_hierarchy_t.png](fntpic/u8g2_font_streamline_interface_essential_hierarchy_t.png)
## streamline_interface_essential_home_menu
![fntpic/u8g2_font_streamline_interface_essential_home_menu_t.png](fntpic/u8g2_font_streamline_interface_essential_home_menu_t.png)
## streamline_interface_essential_id
![fntpic/u8g2_font_streamline_interface_essential_id_t.png](fntpic/u8g2_font_streamline_interface_essential_id_t.png)
## streamline_interface_essential_key_lock
![fntpic/u8g2_font_streamline_interface_essential_key_lock_t.png](fntpic/u8g2_font_streamline_interface_essential_key_lock_t.png)
## streamline_interface_essential_link
![fntpic/u8g2_font_streamline_interface_essential_link_t.png](fntpic/u8g2_font_streamline_interface_essential_link_t.png)
## streamline_interface_essential_loading
![fntpic/u8g2_font_streamline_interface_essential_loading_t.png](fntpic/u8g2_font_streamline_interface_essential_loading_t.png)
## streamline_interface_essential_login
![fntpic/u8g2_font_streamline_interface_essential_login_t.png](fntpic/u8g2_font_streamline_interface_essential_login_t.png)
## streamline_interface_essential_other
![fntpic/u8g2_font_streamline_interface_essential_other_t.png](fntpic/u8g2_font_streamline_interface_essential_other_t.png)
## streamline_interface_essential_paginate
![fntpic/u8g2_font_streamline_interface_essential_paginate_t.png](fntpic/u8g2_font_streamline_interface_essential_paginate_t.png)
## streamline_interface_essential_search
![fntpic/u8g2_font_streamline_interface_essential_search_t.png](fntpic/u8g2_font_streamline_interface_essential_search_t.png)
## streamline_interface_essential_setting
![fntpic/u8g2_font_streamline_interface_essential_setting_t.png](fntpic/u8g2_font_streamline_interface_essential_setting_t.png)
## streamline_interface_essential_share
![fntpic/u8g2_font_streamline_interface_essential_share_t.png](fntpic/u8g2_font_streamline_interface_essential_share_t.png)
## streamline_interface_essential_text
![fntpic/u8g2_font_streamline_interface_essential_text_t.png](fntpic/u8g2_font_streamline_interface_essential_text_t.png)
## streamline_interface_essential_wifi
![fntpic/u8g2_font_streamline_interface_essential_wifi_t.png](fntpic/u8g2_font_streamline_interface_essential_wifi_t.png)
## streamline_interface_essential_zoom
![fntpic/u8g2_font_streamline_interface_essential_zoom_t.png](fntpic/u8g2_font_streamline_interface_essential_zoom_t.png)
## streamline_internet_network
![fntpic/u8g2_font_streamline_internet_network_t.png](fntpic/u8g2_font_streamline_internet_network_t.png)
## streamline_logo
![fntpic/u8g2_font_streamline_logo_t.png](fntpic/u8g2_font_streamline_logo_t.png)
## streamline_map_navigation
![fntpic/u8g2_font_streamline_map_navigation_t.png](fntpic/u8g2_font_streamline_map_navigation_t.png)
## streamline_money_payments
![fntpic/u8g2_font_streamline_money_payments_t.png](fntpic/u8g2_font_streamline_money_payments_t.png)
## streamline_music_audio
![fntpic/u8g2_font_streamline_music_audio_t.png](fntpic/u8g2_font_streamline_music_audio_t.png)
## streamline_pet_animals
![fntpic/u8g2_font_streamline_pet_animals_t.png](fntpic/u8g2_font_streamline_pet_animals_t.png)
## streamline_phone
![fntpic/u8g2_font_streamline_phone_t.png](fntpic/u8g2_font_streamline_phone_t.png)
## streamline_photography
![fntpic/u8g2_font_streamline_photography_t.png](fntpic/u8g2_font_streamline_photography_t.png)
## streamline_romance
![fntpic/u8g2_font_streamline_romance_t.png](fntpic/u8g2_font_streamline_romance_t.png)
## streamline_school_science
![fntpic/u8g2_font_streamline_school_science_t.png](fntpic/u8g2_font_streamline_school_science_t.png)
## streamline_shopping_shipping
![fntpic/u8g2_font_streamline_shopping_shipping_t.png](fntpic/u8g2_font_streamline_shopping_shipping_t.png)
## streamline_social_rewards
![fntpic/u8g2_font_streamline_social_rewards_t.png](fntpic/u8g2_font_streamline_social_rewards_t.png)
## streamline_technology
![fntpic/u8g2_font_streamline_technology_t.png](fntpic/u8g2_font_streamline_technology_t.png)
## streamline_transportation
![fntpic/u8g2_font_streamline_transportation_t.png](fntpic/u8g2_font_streamline_transportation_t.png)
## streamline_travel_wayfinding
![fntpic/u8g2_font_streamline_travel_wayfinding_t.png](fntpic/u8g2_font_streamline_travel_wayfinding_t.png)
## streamline_users
![fntpic/u8g2_font_streamline_users_t.png](fntpic/u8g2_font_streamline_users_t.png)
## streamline_video_movies
![fntpic/u8g2_font_streamline_video_movies_t.png](fntpic/u8g2_font_streamline_video_movies_t.png)
## streamline_weather
![fntpic/u8g2_font_streamline_weather_t.png](fntpic/u8g2_font_streamline_weather_t.png)
+43
View File
@@ -0,0 +1,43 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [etl14thai](#etl14thai)
* [etl16thai](#etl16thai)
* [etl24thai](#etl24thai)
[tocend]: # (toc end)
# Reference
etlthai from the `Fonts-TLWG` collection has been downloaded from
https://github.com/tlwg/thaixfonts/tree/master/etlthai.
# Copyright
Fonts-TLWG (formerly ThaiFonts-Scalable) is a collection of Thai scalable
fonts available in free licenses. Its goal is to provide fonts that conform
to existing standards and recommendations, so that it can be a
reference implementation.
(See: https://linux.thai.net/projects/fonts-tlwg)
Copyright statement of the BDF file:
"Public domain font. Share and enjoy."
# Font Details
## etl14thai
![fntpic/u8g2_font_etl14thai_t.png](fntpic/u8g2_font_etl14thai_t.png)
## etl16thai
![fntpic/u8g2_font_etl16thai_t.png](fntpic/u8g2_font_etl16thai_t.png)
## etl24thai
![fntpic/u8g2_font_etl24thai_t.png](fntpic/u8g2_font_etl24thai_t.png)
+43
View File
@@ -0,0 +1,43 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [tom_thumb_4x6](#tom_thumb_4x6)
[tocend]: # (toc end)
# Reference
Tom-Thumb font is available at [https://robey.lag.net/2010/01/23/tiny-monospace-font.html](https://robey.lag.net/2010/01/23/tiny-monospace-font.html).
# Copyright
From the above refered web site:
Brians page implies that his font was licensed under the MIT license,
so since I did these modifications in my free time, the same license applies here.
Feel free to download the BDF file below if you would find this useful, or would
like to modify it further for some other nefarious purposes.
(Update from 2015: As per comments below, Brian has authorized his
font to be released under the CC0 or CC-BY 3.0 license. Therefore, this font
may also be used under either CC0 or CC-BY 3.0 license.)
# Font Details
## tom_thumb_4x6
![fntpic/u8g2_font_tom_thumb_4x6_t_all.png](fntpic/u8g2_font_tom_thumb_4x6_t_all.png)
![fntpic/u8g2_font_tom_thumb_4x6_tf.png](fntpic/u8g2_font_tom_thumb_4x6_tf.png)
![fntpic/u8g2_font_tom_thumb_4x6_tr.png](fntpic/u8g2_font_tom_thumb_4x6_tr.png)
![fntpic/u8g2_font_tom_thumb_4x6_tn.png](fntpic/u8g2_font_tom_thumb_4x6_tn.png)
![fntpic/u8g2_font_tom_thumb_4x6_te.png](fntpic/u8g2_font_tom_thumb_4x6_te.png)
![fntpic/u8g2_font_tom_thumb_4x6_mf.png](fntpic/u8g2_font_tom_thumb_4x6_mf.png)
![fntpic/u8g2_font_tom_thumb_4x6_mr.png](fntpic/u8g2_font_tom_thumb_4x6_mr.png)
![fntpic/u8g2_font_tom_thumb_4x6_mn.png](fntpic/u8g2_font_tom_thumb_4x6_mn.png)
![fntpic/u8g2_font_tom_thumb_4x6_me.png](fntpic/u8g2_font_tom_thumb_4x6_me.png)
+339
View File
@@ -0,0 +1,339 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [t0_11](#t0_11)
* [t0_11b](#t0_11b)
* [t0_12](#t0_12)
* [t0_12b](#t0_12b)
* [t0_13](#t0_13)
* [t0_13b](#t0_13b)
* [t0_14](#t0_14)
* [t0_14b](#t0_14b)
* [t0_15](#t0_15)
* [t0_15b](#t0_15b)
* [t0_16](#t0_16)
* [t0_16b](#t0_16b)
* [t0_17](#t0_17)
* [t0_17b](#t0_17b)
* [t0_18](#t0_18)
* [t0_18b](#t0_18b)
* [t0_22](#t0_22)
* [t0_22b](#t0_22b)
* [t0_30](#t0_30)
* [t0_30b](#t0_30b)
* [t0_40](#t0_40)
* [t0_40b](#t0_40b)
[tocend]: # (toc end)
# Reference
"UW ttyp0 Monospace Bitmap Screen Fonts for X11" has been
downloaded from https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/.
# Copyright
```
THE TTYP0 LICENSE
Permission is hereby granted, free of charge, to any person obtaining
a copy of this font software and associated files (the "Software"),
to deal in the Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish,
distribute, embed, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
(1) The above copyright notice, this permission notice, and the
disclaimer below shall be included in all copies or substantial
portions of the Software.
(2) If the design of any glyphs in the fonts that are contained in the
Software or generated during the installation process is modified
or if additional glyphs are added to the fonts, the fonts
must be renamed. The new names may not contain the word "UW",
irrespective of capitalisation; the new names may contain the word
"ttyp0", irrespective of capitalisation, only if preceded by a
foundry name different from "UW".
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```
# Font Details
## t0_11
![fntpic/u8g2_font_t0_11_tf.png](fntpic/u8g2_font_t0_11_tf.png)
![fntpic/u8g2_font_t0_11_tr.png](fntpic/u8g2_font_t0_11_tr.png)
![fntpic/u8g2_font_t0_11_tn.png](fntpic/u8g2_font_t0_11_tn.png)
![fntpic/u8g2_font_t0_11_te.png](fntpic/u8g2_font_t0_11_te.png)
![fntpic/u8g2_font_t0_11_mf.png](fntpic/u8g2_font_t0_11_mf.png)
![fntpic/u8g2_font_t0_11_mr.png](fntpic/u8g2_font_t0_11_mr.png)
![fntpic/u8g2_font_t0_11_mn.png](fntpic/u8g2_font_t0_11_mn.png)
![fntpic/u8g2_font_t0_11_me.png](fntpic/u8g2_font_t0_11_me.png)
![fntpic/u8g2_font_t0_11_t_all.png](fntpic/u8g2_font_t0_11_t_all.png)
![fntpic/u8g2_font_t0_11_t_symbol.png](fntpic/u8g2_font_t0_11_t_symbol.png)
## t0_11b
![fntpic/u8g2_font_t0_11b_tf.png](fntpic/u8g2_font_t0_11b_tf.png)
![fntpic/u8g2_font_t0_11b_tr.png](fntpic/u8g2_font_t0_11b_tr.png)
![fntpic/u8g2_font_t0_11b_tn.png](fntpic/u8g2_font_t0_11b_tn.png)
![fntpic/u8g2_font_t0_11b_te.png](fntpic/u8g2_font_t0_11b_te.png)
![fntpic/u8g2_font_t0_11b_mf.png](fntpic/u8g2_font_t0_11b_mf.png)
![fntpic/u8g2_font_t0_11b_mr.png](fntpic/u8g2_font_t0_11b_mr.png)
![fntpic/u8g2_font_t0_11b_mn.png](fntpic/u8g2_font_t0_11b_mn.png)
![fntpic/u8g2_font_t0_11b_me.png](fntpic/u8g2_font_t0_11b_me.png)
## t0_12
![fntpic/u8g2_font_t0_12_tf.png](fntpic/u8g2_font_t0_12_tf.png)
![fntpic/u8g2_font_t0_12_tr.png](fntpic/u8g2_font_t0_12_tr.png)
![fntpic/u8g2_font_t0_12_tn.png](fntpic/u8g2_font_t0_12_tn.png)
![fntpic/u8g2_font_t0_12_te.png](fntpic/u8g2_font_t0_12_te.png)
![fntpic/u8g2_font_t0_12_mf.png](fntpic/u8g2_font_t0_12_mf.png)
![fntpic/u8g2_font_t0_12_mr.png](fntpic/u8g2_font_t0_12_mr.png)
![fntpic/u8g2_font_t0_12_mn.png](fntpic/u8g2_font_t0_12_mn.png)
![fntpic/u8g2_font_t0_12_me.png](fntpic/u8g2_font_t0_12_me.png)
![fntpic/u8g2_font_t0_12_t_symbol.png](fntpic/u8g2_font_t0_12_t_symbol.png)
## t0_12b
![fntpic/u8g2_font_t0_12b_tf.png](fntpic/u8g2_font_t0_12b_tf.png)
![fntpic/u8g2_font_t0_12b_tr.png](fntpic/u8g2_font_t0_12b_tr.png)
![fntpic/u8g2_font_t0_12b_tn.png](fntpic/u8g2_font_t0_12b_tn.png)
![fntpic/u8g2_font_t0_12b_te.png](fntpic/u8g2_font_t0_12b_te.png)
![fntpic/u8g2_font_t0_12b_mf.png](fntpic/u8g2_font_t0_12b_mf.png)
![fntpic/u8g2_font_t0_12b_mr.png](fntpic/u8g2_font_t0_12b_mr.png)
![fntpic/u8g2_font_t0_12b_mn.png](fntpic/u8g2_font_t0_12b_mn.png)
![fntpic/u8g2_font_t0_12b_me.png](fntpic/u8g2_font_t0_12b_me.png)
## t0_13
![fntpic/u8g2_font_t0_13_tf.png](fntpic/u8g2_font_t0_13_tf.png)
![fntpic/u8g2_font_t0_13_tr.png](fntpic/u8g2_font_t0_13_tr.png)
![fntpic/u8g2_font_t0_13_tn.png](fntpic/u8g2_font_t0_13_tn.png)
![fntpic/u8g2_font_t0_13_te.png](fntpic/u8g2_font_t0_13_te.png)
![fntpic/u8g2_font_t0_13_mf.png](fntpic/u8g2_font_t0_13_mf.png)
![fntpic/u8g2_font_t0_13_mr.png](fntpic/u8g2_font_t0_13_mr.png)
![fntpic/u8g2_font_t0_13_mn.png](fntpic/u8g2_font_t0_13_mn.png)
![fntpic/u8g2_font_t0_13_me.png](fntpic/u8g2_font_t0_13_me.png)
![fntpic/u8g2_font_t0_13_t_symbol.png](fntpic/u8g2_font_t0_13_t_symbol.png)
## t0_13b
![fntpic/u8g2_font_t0_13b_tf.png](fntpic/u8g2_font_t0_13b_tf.png)
![fntpic/u8g2_font_t0_13b_tr.png](fntpic/u8g2_font_t0_13b_tr.png)
![fntpic/u8g2_font_t0_13b_tn.png](fntpic/u8g2_font_t0_13b_tn.png)
![fntpic/u8g2_font_t0_13b_te.png](fntpic/u8g2_font_t0_13b_te.png)
![fntpic/u8g2_font_t0_13b_mf.png](fntpic/u8g2_font_t0_13b_mf.png)
![fntpic/u8g2_font_t0_13b_mr.png](fntpic/u8g2_font_t0_13b_mr.png)
![fntpic/u8g2_font_t0_13b_mn.png](fntpic/u8g2_font_t0_13b_mn.png)
![fntpic/u8g2_font_t0_13b_me.png](fntpic/u8g2_font_t0_13b_me.png)
## t0_14
![fntpic/u8g2_font_t0_14_tf.png](fntpic/u8g2_font_t0_14_tf.png)
![fntpic/u8g2_font_t0_14_tr.png](fntpic/u8g2_font_t0_14_tr.png)
![fntpic/u8g2_font_t0_14_tn.png](fntpic/u8g2_font_t0_14_tn.png)
![fntpic/u8g2_font_t0_14_te.png](fntpic/u8g2_font_t0_14_te.png)
![fntpic/u8g2_font_t0_14_mf.png](fntpic/u8g2_font_t0_14_mf.png)
![fntpic/u8g2_font_t0_14_mr.png](fntpic/u8g2_font_t0_14_mr.png)
![fntpic/u8g2_font_t0_14_mn.png](fntpic/u8g2_font_t0_14_mn.png)
![fntpic/u8g2_font_t0_14_me.png](fntpic/u8g2_font_t0_14_me.png)
![fntpic/u8g2_font_t0_14_t_symbol.png](fntpic/u8g2_font_t0_14_t_symbol.png)
## t0_14b
![fntpic/u8g2_font_t0_14b_tf.png](fntpic/u8g2_font_t0_14b_tf.png)
![fntpic/u8g2_font_t0_14b_tr.png](fntpic/u8g2_font_t0_14b_tr.png)
![fntpic/u8g2_font_t0_14b_tn.png](fntpic/u8g2_font_t0_14b_tn.png)
![fntpic/u8g2_font_t0_14b_te.png](fntpic/u8g2_font_t0_14b_te.png)
![fntpic/u8g2_font_t0_14b_mf.png](fntpic/u8g2_font_t0_14b_mf.png)
![fntpic/u8g2_font_t0_14b_mr.png](fntpic/u8g2_font_t0_14b_mr.png)
![fntpic/u8g2_font_t0_14b_mn.png](fntpic/u8g2_font_t0_14b_mn.png)
![fntpic/u8g2_font_t0_14b_me.png](fntpic/u8g2_font_t0_14b_me.png)
## t0_15
![fntpic/u8g2_font_t0_15_tf.png](fntpic/u8g2_font_t0_15_tf.png)
![fntpic/u8g2_font_t0_15_tr.png](fntpic/u8g2_font_t0_15_tr.png)
![fntpic/u8g2_font_t0_15_tn.png](fntpic/u8g2_font_t0_15_tn.png)
![fntpic/u8g2_font_t0_15_te.png](fntpic/u8g2_font_t0_15_te.png)
![fntpic/u8g2_font_t0_15_mf.png](fntpic/u8g2_font_t0_15_mf.png)
![fntpic/u8g2_font_t0_15_mr.png](fntpic/u8g2_font_t0_15_mr.png)
![fntpic/u8g2_font_t0_15_mn.png](fntpic/u8g2_font_t0_15_mn.png)
![fntpic/u8g2_font_t0_15_me.png](fntpic/u8g2_font_t0_15_me.png)
![fntpic/u8g2_font_t0_15_t_symbol.png](fntpic/u8g2_font_t0_15_t_symbol.png)
## t0_15b
![fntpic/u8g2_font_t0_15b_tf.png](fntpic/u8g2_font_t0_15b_tf.png)
![fntpic/u8g2_font_t0_15b_tr.png](fntpic/u8g2_font_t0_15b_tr.png)
![fntpic/u8g2_font_t0_15b_tn.png](fntpic/u8g2_font_t0_15b_tn.png)
![fntpic/u8g2_font_t0_15b_te.png](fntpic/u8g2_font_t0_15b_te.png)
![fntpic/u8g2_font_t0_15b_mf.png](fntpic/u8g2_font_t0_15b_mf.png)
![fntpic/u8g2_font_t0_15b_mr.png](fntpic/u8g2_font_t0_15b_mr.png)
![fntpic/u8g2_font_t0_15b_mn.png](fntpic/u8g2_font_t0_15b_mn.png)
![fntpic/u8g2_font_t0_15b_me.png](fntpic/u8g2_font_t0_15b_me.png)
## t0_16
![fntpic/u8g2_font_t0_16_tf.png](fntpic/u8g2_font_t0_16_tf.png)
![fntpic/u8g2_font_t0_16_tr.png](fntpic/u8g2_font_t0_16_tr.png)
![fntpic/u8g2_font_t0_16_tn.png](fntpic/u8g2_font_t0_16_tn.png)
![fntpic/u8g2_font_t0_16_te.png](fntpic/u8g2_font_t0_16_te.png)
![fntpic/u8g2_font_t0_16_mf.png](fntpic/u8g2_font_t0_16_mf.png)
![fntpic/u8g2_font_t0_16_mr.png](fntpic/u8g2_font_t0_16_mr.png)
![fntpic/u8g2_font_t0_16_mn.png](fntpic/u8g2_font_t0_16_mn.png)
![fntpic/u8g2_font_t0_16_me.png](fntpic/u8g2_font_t0_16_me.png)
![fntpic/u8g2_font_t0_16_t_symbol.png](fntpic/u8g2_font_t0_16_t_symbol.png)
## t0_16b
![fntpic/u8g2_font_t0_16b_tf.png](fntpic/u8g2_font_t0_16b_tf.png)
![fntpic/u8g2_font_t0_16b_tr.png](fntpic/u8g2_font_t0_16b_tr.png)
![fntpic/u8g2_font_t0_16b_tn.png](fntpic/u8g2_font_t0_16b_tn.png)
![fntpic/u8g2_font_t0_16b_te.png](fntpic/u8g2_font_t0_16b_te.png)
![fntpic/u8g2_font_t0_16b_mf.png](fntpic/u8g2_font_t0_16b_mf.png)
![fntpic/u8g2_font_t0_16b_mr.png](fntpic/u8g2_font_t0_16b_mr.png)
![fntpic/u8g2_font_t0_16b_mn.png](fntpic/u8g2_font_t0_16b_mn.png)
![fntpic/u8g2_font_t0_16b_me.png](fntpic/u8g2_font_t0_16b_me.png)
## t0_17
![fntpic/u8g2_font_t0_17_tf.png](fntpic/u8g2_font_t0_17_tf.png)
![fntpic/u8g2_font_t0_17_tr.png](fntpic/u8g2_font_t0_17_tr.png)
![fntpic/u8g2_font_t0_17_tn.png](fntpic/u8g2_font_t0_17_tn.png)
![fntpic/u8g2_font_t0_17_te.png](fntpic/u8g2_font_t0_17_te.png)
![fntpic/u8g2_font_t0_17_mf.png](fntpic/u8g2_font_t0_17_mf.png)
![fntpic/u8g2_font_t0_17_mr.png](fntpic/u8g2_font_t0_17_mr.png)
![fntpic/u8g2_font_t0_17_mn.png](fntpic/u8g2_font_t0_17_mn.png)
![fntpic/u8g2_font_t0_17_me.png](fntpic/u8g2_font_t0_17_me.png)
![fntpic/u8g2_font_t0_17_t_symbol.png](fntpic/u8g2_font_t0_17_t_symbol.png)
## t0_17b
![fntpic/u8g2_font_t0_17b_tf.png](fntpic/u8g2_font_t0_17b_tf.png)
![fntpic/u8g2_font_t0_17b_tr.png](fntpic/u8g2_font_t0_17b_tr.png)
![fntpic/u8g2_font_t0_17b_tn.png](fntpic/u8g2_font_t0_17b_tn.png)
![fntpic/u8g2_font_t0_17b_te.png](fntpic/u8g2_font_t0_17b_te.png)
![fntpic/u8g2_font_t0_17b_mf.png](fntpic/u8g2_font_t0_17b_mf.png)
![fntpic/u8g2_font_t0_17b_mr.png](fntpic/u8g2_font_t0_17b_mr.png)
![fntpic/u8g2_font_t0_17b_mn.png](fntpic/u8g2_font_t0_17b_mn.png)
![fntpic/u8g2_font_t0_17b_me.png](fntpic/u8g2_font_t0_17b_me.png)
## t0_18
![fntpic/u8g2_font_t0_18_tf.png](fntpic/u8g2_font_t0_18_tf.png)
![fntpic/u8g2_font_t0_18_tr.png](fntpic/u8g2_font_t0_18_tr.png)
![fntpic/u8g2_font_t0_18_tn.png](fntpic/u8g2_font_t0_18_tn.png)
![fntpic/u8g2_font_t0_18_te.png](fntpic/u8g2_font_t0_18_te.png)
![fntpic/u8g2_font_t0_18_mf.png](fntpic/u8g2_font_t0_18_mf.png)
![fntpic/u8g2_font_t0_18_mr.png](fntpic/u8g2_font_t0_18_mr.png)
![fntpic/u8g2_font_t0_18_mn.png](fntpic/u8g2_font_t0_18_mn.png)
![fntpic/u8g2_font_t0_18_me.png](fntpic/u8g2_font_t0_18_me.png)
![fntpic/u8g2_font_t0_18_t_symbol.png](fntpic/u8g2_font_t0_18_t_symbol.png)
## t0_18b
![fntpic/u8g2_font_t0_18b_tf.png](fntpic/u8g2_font_t0_18b_tf.png)
![fntpic/u8g2_font_t0_18b_tr.png](fntpic/u8g2_font_t0_18b_tr.png)
![fntpic/u8g2_font_t0_18b_tn.png](fntpic/u8g2_font_t0_18b_tn.png)
![fntpic/u8g2_font_t0_18b_te.png](fntpic/u8g2_font_t0_18b_te.png)
![fntpic/u8g2_font_t0_18b_mf.png](fntpic/u8g2_font_t0_18b_mf.png)
![fntpic/u8g2_font_t0_18b_mr.png](fntpic/u8g2_font_t0_18b_mr.png)
![fntpic/u8g2_font_t0_18b_mn.png](fntpic/u8g2_font_t0_18b_mn.png)
![fntpic/u8g2_font_t0_18b_me.png](fntpic/u8g2_font_t0_18b_me.png)
## t0_22
![fntpic/u8g2_font_t0_22_tf.png](fntpic/u8g2_font_t0_22_tf.png)
![fntpic/u8g2_font_t0_22_tr.png](fntpic/u8g2_font_t0_22_tr.png)
![fntpic/u8g2_font_t0_22_tn.png](fntpic/u8g2_font_t0_22_tn.png)
![fntpic/u8g2_font_t0_22_te.png](fntpic/u8g2_font_t0_22_te.png)
![fntpic/u8g2_font_t0_22_mf.png](fntpic/u8g2_font_t0_22_mf.png)
![fntpic/u8g2_font_t0_22_mr.png](fntpic/u8g2_font_t0_22_mr.png)
![fntpic/u8g2_font_t0_22_mn.png](fntpic/u8g2_font_t0_22_mn.png)
![fntpic/u8g2_font_t0_22_me.png](fntpic/u8g2_font_t0_22_me.png)
![fntpic/u8g2_font_t0_22_t_symbol.png](fntpic/u8g2_font_t0_22_t_symbol.png)
## t0_22b
![fntpic/u8g2_font_t0_22b_tf.png](fntpic/u8g2_font_t0_22b_tf.png)
![fntpic/u8g2_font_t0_22b_tr.png](fntpic/u8g2_font_t0_22b_tr.png)
![fntpic/u8g2_font_t0_22b_tn.png](fntpic/u8g2_font_t0_22b_tn.png)
![fntpic/u8g2_font_t0_22b_te.png](fntpic/u8g2_font_t0_22b_te.png)
![fntpic/u8g2_font_t0_22b_mf.png](fntpic/u8g2_font_t0_22b_mf.png)
![fntpic/u8g2_font_t0_22b_mr.png](fntpic/u8g2_font_t0_22b_mr.png)
![fntpic/u8g2_font_t0_22b_mn.png](fntpic/u8g2_font_t0_22b_mn.png)
![fntpic/u8g2_font_t0_22b_me.png](fntpic/u8g2_font_t0_22b_me.png)
## t0_30
![fntpic/u8g2_font_t0_30_tf.png](fntpic/u8g2_font_t0_30_tf.png)
![fntpic/u8g2_font_t0_30_tr.png](fntpic/u8g2_font_t0_30_tr.png)
![fntpic/u8g2_font_t0_30_tn.png](fntpic/u8g2_font_t0_30_tn.png)
![fntpic/u8g2_font_t0_30_te.png](fntpic/u8g2_font_t0_30_te.png)
![fntpic/u8g2_font_t0_30_mf.png](fntpic/u8g2_font_t0_30_mf.png)
![fntpic/u8g2_font_t0_30_mr.png](fntpic/u8g2_font_t0_30_mr.png)
![fntpic/u8g2_font_t0_30_mn.png](fntpic/u8g2_font_t0_30_mn.png)
![fntpic/u8g2_font_t0_30_me.png](fntpic/u8g2_font_t0_30_me.png)
![fntpic/u8g2_font_t0_30_t_symbol.png](fntpic/u8g2_font_t0_30_t_symbol.png)
## t0_30b
![fntpic/u8g2_font_t0_30b_tf.png](fntpic/u8g2_font_t0_30b_tf.png)
![fntpic/u8g2_font_t0_30b_tr.png](fntpic/u8g2_font_t0_30b_tr.png)
![fntpic/u8g2_font_t0_30b_tn.png](fntpic/u8g2_font_t0_30b_tn.png)
![fntpic/u8g2_font_t0_30b_te.png](fntpic/u8g2_font_t0_30b_te.png)
![fntpic/u8g2_font_t0_30b_mf.png](fntpic/u8g2_font_t0_30b_mf.png)
![fntpic/u8g2_font_t0_30b_mr.png](fntpic/u8g2_font_t0_30b_mr.png)
![fntpic/u8g2_font_t0_30b_mn.png](fntpic/u8g2_font_t0_30b_mn.png)
![fntpic/u8g2_font_t0_30b_me.png](fntpic/u8g2_font_t0_30b_me.png)
## t0_40
![fntpic/u8g2_font_t0_40_tf.png](fntpic/u8g2_font_t0_40_tf.png)
![fntpic/u8g2_font_t0_40_tr.png](fntpic/u8g2_font_t0_40_tr.png)
![fntpic/u8g2_font_t0_40_tn.png](fntpic/u8g2_font_t0_40_tn.png)
![fntpic/u8g2_font_t0_40_te.png](fntpic/u8g2_font_t0_40_te.png)
![fntpic/u8g2_font_t0_40_mf.png](fntpic/u8g2_font_t0_40_mf.png)
![fntpic/u8g2_font_t0_40_mr.png](fntpic/u8g2_font_t0_40_mr.png)
![fntpic/u8g2_font_t0_40_mn.png](fntpic/u8g2_font_t0_40_mn.png)
![fntpic/u8g2_font_t0_40_me.png](fntpic/u8g2_font_t0_40_me.png)
![fntpic/u8g2_font_t0_40_t_symbol.png](fntpic/u8g2_font_t0_40_t_symbol.png)
## t0_40b
![fntpic/u8g2_font_t0_40b_tf.png](fntpic/u8g2_font_t0_40b_tf.png)
![fntpic/u8g2_font_t0_40b_tr.png](fntpic/u8g2_font_t0_40b_tr.png)
![fntpic/u8g2_font_t0_40b_tn.png](fntpic/u8g2_font_t0_40b_tn.png)
![fntpic/u8g2_font_t0_40b_te.png](fntpic/u8g2_font_t0_40b_te.png)
![fntpic/u8g2_font_t0_40b_mf.png](fntpic/u8g2_font_t0_40b_mf.png)
![fntpic/u8g2_font_t0_40b_mr.png](fntpic/u8g2_font_t0_40b_mr.png)
![fntpic/u8g2_font_t0_40b_mn.png](fntpic/u8g2_font_t0_40b_mn.png)
![fntpic/u8g2_font_t0_40b_me.png](fntpic/u8g2_font_t0_40b_me.png)
+87
View File
@@ -0,0 +1,87 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Pictures](#font-pictures)
* [fewture](#fewture)
* [halftone](#halftone)
* [nerhoe](#nerhoe)
* [oskool](#oskool)
* [tinytim](#tinytim)
* [tooseornament](#tooseornament)
[tocend]: # (toc end)
# Reference
This page contains fonts from http://www.pentacom.jp/pentacom/bitfontmaker2/gallery
All fonts on this page are created by "tulamide".
Fonts will be available with U8g2 v2.25.
# Copyright
Fewture by tulamide
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=409
Halftone by tulamide
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=434
Nerhoe by tulamide
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=410
Oskool by tulamide
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=411
TinyTim by tulamide
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=450
TooseOrnament by tulamide
license : (Public Domain)
http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=461
# Font Pictures
## fewture
![fntpic/u8g2_font_fewture_tf.png](fntpic/u8g2_font_fewture_tf.png)
![fntpic/u8g2_font_fewture_tr.png](fntpic/u8g2_font_fewture_tr.png)
![fntpic/u8g2_font_fewture_tn.png](fntpic/u8g2_font_fewture_tn.png)
## halftone
![fntpic/u8g2_font_halftone_tf.png](fntpic/u8g2_font_halftone_tf.png)
![fntpic/u8g2_font_halftone_tr.png](fntpic/u8g2_font_halftone_tr.png)
![fntpic/u8g2_font_halftone_tn.png](fntpic/u8g2_font_halftone_tn.png)
## nerhoe
![fntpic/u8g2_font_nerhoe_tf.png](fntpic/u8g2_font_nerhoe_tf.png)
![fntpic/u8g2_font_nerhoe_tr.png](fntpic/u8g2_font_nerhoe_tr.png)
![fntpic/u8g2_font_nerhoe_tn.png](fntpic/u8g2_font_nerhoe_tn.png)
## oskool
![fntpic/u8g2_font_oskool_tf.png](fntpic/u8g2_font_oskool_tf.png)
![fntpic/u8g2_font_oskool_tr.png](fntpic/u8g2_font_oskool_tr.png)
![fntpic/u8g2_font_oskool_tn.png](fntpic/u8g2_font_oskool_tn.png)
## tinytim
![fntpic/u8g2_font_tinytim_tf.png](fntpic/u8g2_font_tinytim_tf.png)
![fntpic/u8g2_font_tinytim_tr.png](fntpic/u8g2_font_tinytim_tr.png)
![fntpic/u8g2_font_tinytim_tn.png](fntpic/u8g2_font_tinytim_tn.png)
## tooseornament
![fntpic/u8g2_font_tooseornament_tf.png](fntpic/u8g2_font_tooseornament_tf.png)
![fntpic/u8g2_font_tooseornament_tr.png](fntpic/u8g2_font_tooseornament_tr.png)
![fntpic/u8g2_font_tooseornament_tn.png](fntpic/u8g2_font_tooseornament_tn.png)
+138
View File
@@ -0,0 +1,138 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [u8glib_4](#u8glib_4)
* [m2icon_5](#m2icon_5)
* [m2icon_7](#m2icon_7)
* [m2icon_9](#m2icon_9)
* [emoticons21](#emoticons21)
* [battery19](#battery19)
* [battery24](#battery24)
* [squeezed_r6](#squeezed_r6)
* [squeezed_b6](#squeezed_b6)
* [squeezed_r7](#squeezed_r7)
* [squeezed_b7](#squeezed_b7)
* [percent_circle_25](#percent_circle_25)
* [freedoomr10](#freedoomr10)
* [freedoomr25](#freedoomr25)
* [7Segments_26x42](#7segments_26x42)
* [7_Seg_33x19](#7_seg_33x19)
* [7_Seg_41x21](#7_seg_41x21)
* [tiny5](#tiny5)
* [tiny5duo](#tiny5duo)
* [04b_03b](#04b_03b)
* [04b_03](#04b_03)
[tocend]: # (toc end)
# Reference
Created for, contributed to, takeover fonts from u8glib.
# Copyright
u8glib_4, m2icon_5, m2icon_7, m2icon_9, squeeze: Public domain, created by the author of u8glib and u8g2.
freedoomr10r: Contributed to u8glib, ported to u8g2. Copyright: Public domain.
freedoomr25n: Contributed to u8glib, ported to u8g2. Copyright: Feel free to do whatever you want with it... this font is Free in all human and lawful senses.
7Segments_26x42: Contributed via issue [https://github.com/olikraus/u8g2/issues/634](https://github.com/olikraus/u8g2/issues/634)
7_Seg_33x19 and 7_Seg_41x21: Contributed via issue https://github.com/olikraus/u8g2/issues/1769
tiny5 : Contributed via issues https://github.com/olikraus/u8g2/issues/2185 https://github.com/olikraus/u8g2/issues/2375, see also https://github.com/Gissio/font_tiny5
04b_03 and 04b_03b: Freeware! You may use them as you like, http://www.04.jp.org/, Copyright 1998-2003 YuJi Oshimoto
# Font Details
## u8glib_4
![fntpic/u8g2_font_u8glib_4_tf.png](fntpic/u8g2_font_u8glib_4_tf.png)
![fntpic/u8g2_font_u8glib_4_tr.png](fntpic/u8g2_font_u8glib_4_tr.png)
![fntpic/u8g2_font_u8glib_4_hf.png](fntpic/u8g2_font_u8glib_4_hf.png)
![fntpic/u8g2_font_u8glib_4_hr.png](fntpic/u8g2_font_u8glib_4_hr.png)
## m2icon_5
![fntpic/u8g2_font_m2icon_5_tf.png](fntpic/u8g2_font_m2icon_5_tf.png)
## m2icon_7
![fntpic/u8g2_font_m2icon_7_tf.png](fntpic/u8g2_font_m2icon_7_tf.png)
## m2icon_9
![fntpic/u8g2_font_m2icon_9_tf.png](fntpic/u8g2_font_m2icon_9_tf.png)
## emoticons21
![fntpic/u8g2_font_emoticons21_tr.png](fntpic/u8g2_font_emoticons21_tr.png)
## battery19
![fntpic/u8g2_font_battery19_tn.png](fntpic/u8g2_font_battery19_tn.png)
## battery24
![fntpic/u8g2_font_battery24_tr.png](fntpic/u8g2_font_battery24_tr.png)
## squeezed_r6
![fntpic/u8g2_font_squeezed_r6_tr.png](fntpic/u8g2_font_squeezed_r6_tr.png)
![fntpic/u8g2_font_squeezed_r6_tn.png](fntpic/u8g2_font_squeezed_r6_tn.png)
## squeezed_b6
![fntpic/u8g2_font_squeezed_b6_tr.png](fntpic/u8g2_font_squeezed_b6_tr.png)
![fntpic/u8g2_font_squeezed_b6_tn.png](fntpic/u8g2_font_squeezed_b6_tn.png)
## squeezed_r7
![fntpic/u8g2_font_squeezed_r7_tr.png](fntpic/u8g2_font_squeezed_r7_tr.png)
![fntpic/u8g2_font_squeezed_r7_tn.png](fntpic/u8g2_font_squeezed_r7_tn.png)
## squeezed_b7
![fntpic/u8g2_font_squeezed_b7_tr.png](fntpic/u8g2_font_squeezed_b7_tr.png)
![fntpic/u8g2_font_squeezed_b7_tn.png](fntpic/u8g2_font_squeezed_b7_tn.png)
## percent_circle_25
![fntpic/u8g2_font_percent_circle_25_hn.png](fntpic/u8g2_font_percent_circle_25_hn.png)
## freedoomr10
![fntpic/u8g2_font_freedoomr10_tu.png](fntpic/u8g2_font_freedoomr10_tu.png)
![fntpic/u8g2_font_freedoomr10_mu.png](fntpic/u8g2_font_freedoomr10_mu.png)
## freedoomr25
![fntpic/u8g2_font_freedoomr25_tn.png](fntpic/u8g2_font_freedoomr25_tn.png)
![fntpic/u8g2_font_freedoomr25_mn.png](fntpic/u8g2_font_freedoomr25_mn.png)
## 7Segments_26x42
![fntpic/u8g2_font_7Segments_26x42_mn.png](fntpic/u8g2_font_7Segments_26x42_mn.png)
## 7_Seg_33x19
![fntpic/u8g2_font_7_Seg_33x19_mn.png](fntpic/u8g2_font_7_Seg_33x19_mn.png)
## 7_Seg_41x21
![fntpic/u8g2_font_7_Seg_41x21_mn.png](fntpic/u8g2_font_7_Seg_41x21_mn.png)
## tiny5
![fntpic/u8g2_font_tiny5_tf.png](fntpic/u8g2_font_tiny5_tf.png)
![fntpic/u8g2_font_tiny5_tr.png](fntpic/u8g2_font_tiny5_tr.png)
![fntpic/u8g2_font_tiny5_te.png](fntpic/u8g2_font_tiny5_te.png)
![fntpic/u8g2_font_tiny5_t_all.png](fntpic/u8g2_font_tiny5_t_all.png)
## tiny5duo
![fntpic/u8g2_font_tiny5duo_tf.png](fntpic/u8g2_font_tiny5duo_tf.png)
![fntpic/u8g2_font_tiny5duo_tr.png](fntpic/u8g2_font_tiny5duo_tr.png)
![fntpic/u8g2_font_tiny5duo_te.png](fntpic/u8g2_font_tiny5duo_te.png)
![fntpic/u8g2_font_tiny5duo_t_all.png](fntpic/u8g2_font_tiny5duo_t_all.png)
## 04b_03b
![fntpic/u8g2_font_04b_03b_tr.png](fntpic/u8g2_font_04b_03b_tr.png)
## 04b_03
![fntpic/u8g2_font_04b_03_tr.png](fntpic/u8g2_font_04b_03_tr.png)
+131
View File
@@ -0,0 +1,131 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [unifont](#unifont)
[tocend]: # (toc end)
# Reference
Name: **GNU Unifont**
Unifont version updated to 12.1.02 in U8g2 version 2.26.
Unifont_jp added and Unifont plane 0 updated to 15.1.05 in U8g2 version 2.35.
Unifont_jp will be used for the japanese versions.
Download location: https://unifoundry.com/pub/unifont/unifont-15.1.05/
The Unifont project page is here: https://savannah.gnu.org/projects/unifont.
Note: Plane 1 fonts added with U8g2 version 2.26. All plane 1 glyphs are mapped into
ASCII range, starting with 0x20.
# Copyright
Font Copyright Statement:
"Copyright (C) 1998-2024 Roman Czyborra, Paul Hardy, Qianqian Fang, Andrew Miller, Johnnie Weaver, David Corbett, Nils Moskopp, Rebecca Bettencourt, Ho-Seok Ee, et al. License: SIL Open Font License version 1.1 and GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html> with the GNU Font Embedding Exception."
License: http://unifoundry.com/LICENSE.txt
GNU Font Embedding Exception: http://www.gnu.org/licenses/gpl-faq.html#FontException
# Font Details
## unifont
![fntpic/u8g2_font_unifont_tf.png](fntpic/u8g2_font_unifont_tf.png)
![fntpic/u8g2_font_unifont_tr.png](fntpic/u8g2_font_unifont_tr.png)
![fntpic/u8g2_font_unifont_te.png](fntpic/u8g2_font_unifont_te.png)
![fntpic/u8g2_font_unifont_t_latin.png](fntpic/u8g2_font_unifont_t_latin.png)
![fntpic/u8g2_font_unifont_t_extended.png](fntpic/u8g2_font_unifont_t_extended.png)
![fntpic/u8g2_font_unifont_t_72_73.png](fntpic/u8g2_font_unifont_t_72_73.png)
![fntpic/u8g2_font_unifont_t_0_72_73.png](fntpic/u8g2_font_unifont_t_0_72_73.png)
![fntpic/u8g2_font_unifont_t_75.png](fntpic/u8g2_font_unifont_t_75.png)
![fntpic/u8g2_font_unifont_t_0_75.png](fntpic/u8g2_font_unifont_t_0_75.png)
![fntpic/u8g2_font_unifont_t_76.png](fntpic/u8g2_font_unifont_t_76.png)
![fntpic/u8g2_font_unifont_t_0_76.png](fntpic/u8g2_font_unifont_t_0_76.png)
![fntpic/u8g2_font_unifont_t_77.png](fntpic/u8g2_font_unifont_t_77.png)
![fntpic/u8g2_font_unifont_t_0_77.png](fntpic/u8g2_font_unifont_t_0_77.png)
![fntpic/u8g2_font_unifont_t_78_79.png](fntpic/u8g2_font_unifont_t_78_79.png)
![fntpic/u8g2_font_unifont_t_0_78_79.png](fntpic/u8g2_font_unifont_t_0_78_79.png)
![fntpic/u8g2_font_unifont_t_86.png](fntpic/u8g2_font_unifont_t_86.png)
![fntpic/u8g2_font_unifont_t_0_86.png](fntpic/u8g2_font_unifont_t_0_86.png)
![fntpic/u8g2_font_unifont_t_greek.png](fntpic/u8g2_font_unifont_t_greek.png)
![fntpic/u8g2_font_unifont_t_cyrillic.png](fntpic/u8g2_font_unifont_t_cyrillic.png)
![fntpic/u8g2_font_unifont_t_hebrew.png](fntpic/u8g2_font_unifont_t_hebrew.png)
![fntpic/u8g2_font_unifont_t_bengali.png](fntpic/u8g2_font_unifont_t_bengali.png)
![fntpic/u8g2_font_unifont_t_tibetan.png](fntpic/u8g2_font_unifont_t_tibetan.png)
![fntpic/u8g2_font_unifont_t_urdu.png](fntpic/u8g2_font_unifont_t_urdu.png)
![fntpic/u8g2_font_unifont_t_polish.png](fntpic/u8g2_font_unifont_t_polish.png)
![fntpic/u8g2_font_unifont_t_devanagari.png](fntpic/u8g2_font_unifont_t_devanagari.png)
![fntpic/u8g2_font_unifont_t_malayalam.png](fntpic/u8g2_font_unifont_t_malayalam.png)
![fntpic/u8g2_font_unifont_t_arabic.png](fntpic/u8g2_font_unifont_t_arabic.png)
![fntpic/u8g2_font_unifont_t_symbols.png](fntpic/u8g2_font_unifont_t_symbols.png)
![fntpic/u8g2_font_unifont_h_symbols.png](fntpic/u8g2_font_unifont_h_symbols.png)
![fntpic/u8g2_font_unifont_t_emoticons.png](fntpic/u8g2_font_unifont_t_emoticons.png)
![fntpic/u8g2_font_unifont_t_animals.png](fntpic/u8g2_font_unifont_t_animals.png)
![fntpic/u8g2_font_unifont_t_domino.png](fntpic/u8g2_font_unifont_t_domino.png)
![fntpic/u8g2_font_unifont_t_cards.png](fntpic/u8g2_font_unifont_t_cards.png)
![fntpic/u8g2_font_unifont_t_weather.png](fntpic/u8g2_font_unifont_t_weather.png)
![fntpic/u8g2_font_unifont_t_chinese1.png](fntpic/u8g2_font_unifont_t_chinese1.png)
![fntpic/u8g2_font_unifont_t_chinese2.png](fntpic/u8g2_font_unifont_t_chinese2.png)
![fntpic/u8g2_font_unifont_t_chinese3.png](fntpic/u8g2_font_unifont_t_chinese3.png)
![fntpic/u8g2_font_unifont_t_gb2312.png](fntpic/u8g2_font_unifont_t_gb2312.png)
![fntpic/u8g2_font_unifont_t_gb2312a.png](fntpic/u8g2_font_unifont_t_gb2312a.png)
![fntpic/u8g2_font_unifont_t_gb2312b.png](fntpic/u8g2_font_unifont_t_gb2312b.png)
![fntpic/u8g2_font_unifont_t_japanese1.png](fntpic/u8g2_font_unifont_t_japanese1.png)
![fntpic/u8g2_font_unifont_t_japanese2.png](fntpic/u8g2_font_unifont_t_japanese2.png)
![fntpic/u8g2_font_unifont_t_japanese3.png](fntpic/u8g2_font_unifont_t_japanese3.png)
![fntpic/u8g2_font_unifont_t_korean1.png](fntpic/u8g2_font_unifont_t_korean1.png)
![fntpic/u8g2_font_unifont_t_korean2.png](fntpic/u8g2_font_unifont_t_korean2.png)
![fntpic/u8g2_font_unifont_t_vietnamese1.png](fntpic/u8g2_font_unifont_t_vietnamese1.png)
![fntpic/u8g2_font_unifont_t_vietnamese2.png](fntpic/u8g2_font_unifont_t_vietnamese2.png)
+114
View File
@@ -0,0 +1,114 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [wqy12](#wqy12)
* [wqy13](#wqy13)
* [wqy14](#wqy14)
* [wqy15](#wqy15)
* [wqy16](#wqy16)
[tocend]: # (toc end)
# Reference
The WenQuanYi bitmap fonts are maintained here: [http://wenq.org/wqy2/](http://wenq.org/wqy2/).
The u8g2 fonts are based on the bdf files from here: [https://github.com/larryli/u8g2_wqy](https://github.com/larryli/u8g2_wqy)
From the font files:
WenQuanYi bitmap fonts include all 20,932 Unicode 5.2
CJK Unified Ideographs (U4E00 - U9FA5) and 6,582
CJK Extension A characters (U3400 - U4DB5) at
5 different pixel sizes (9pt-12X12, 10pt-13X13,
10.5pt-14x14, 11pt-15X15 and 12pt-16x16 pixel).
Use of this bitmap font for on-screen display of Chinese
(traditional and simplified) in web pages and elsewhere
eliminates the annoying "blurring" problems caused by
insufficient "hinting" of anti-aliased vector CJK fonts.
In addition, Latin characters, Japanese Kanas and
Korean Hangul glyphs (U+AC00~U+D7A3) are also included.
# Copyright
From the font files:
```
Copyright: (C)2004-2010, WenQuanYi Project
Board of Trustees and Qianqian Fang
License : GPL v2 (with font embedding exception)
```
# Font Details
## wqy12
![fntpic/u8g2_font_wqy12_t_chinese1.png](fntpic/u8g2_font_wqy12_t_chinese1.png)
![fntpic/u8g2_font_wqy12_t_chinese2.png](fntpic/u8g2_font_wqy12_t_chinese2.png)
![fntpic/u8g2_font_wqy12_t_chinese3.png](fntpic/u8g2_font_wqy12_t_chinese3.png)
![fntpic/u8g2_font_wqy12_t_gb2312.png](fntpic/u8g2_font_wqy12_t_gb2312.png)
![fntpic/u8g2_font_wqy12_t_gb2312a.png](fntpic/u8g2_font_wqy12_t_gb2312a.png)
![fntpic/u8g2_font_wqy12_t_gb2312b.png](fntpic/u8g2_font_wqy12_t_gb2312b.png)
## wqy13
![fntpic/u8g2_font_wqy13_t_chinese1.png](fntpic/u8g2_font_wqy13_t_chinese1.png)
![fntpic/u8g2_font_wqy13_t_chinese2.png](fntpic/u8g2_font_wqy13_t_chinese2.png)
![fntpic/u8g2_font_wqy13_t_chinese3.png](fntpic/u8g2_font_wqy13_t_chinese3.png)
![fntpic/u8g2_font_wqy13_t_gb2312.png](fntpic/u8g2_font_wqy13_t_gb2312.png)
![fntpic/u8g2_font_wqy13_t_gb2312a.png](fntpic/u8g2_font_wqy13_t_gb2312a.png)
![fntpic/u8g2_font_wqy13_t_gb2312b.png](fntpic/u8g2_font_wqy13_t_gb2312b.png)
## wqy14
![fntpic/u8g2_font_wqy14_t_chinese1.png](fntpic/u8g2_font_wqy14_t_chinese1.png)
![fntpic/u8g2_font_wqy14_t_chinese2.png](fntpic/u8g2_font_wqy14_t_chinese2.png)
![fntpic/u8g2_font_wqy14_t_chinese3.png](fntpic/u8g2_font_wqy14_t_chinese3.png)
![fntpic/u8g2_font_wqy14_t_gb2312.png](fntpic/u8g2_font_wqy14_t_gb2312.png)
![fntpic/u8g2_font_wqy14_t_gb2312a.png](fntpic/u8g2_font_wqy14_t_gb2312a.png)
![fntpic/u8g2_font_wqy14_t_gb2312b.png](fntpic/u8g2_font_wqy14_t_gb2312b.png)
## wqy15
![fntpic/u8g2_font_wqy15_t_chinese1.png](fntpic/u8g2_font_wqy15_t_chinese1.png)
![fntpic/u8g2_font_wqy15_t_chinese2.png](fntpic/u8g2_font_wqy15_t_chinese2.png)
![fntpic/u8g2_font_wqy15_t_chinese3.png](fntpic/u8g2_font_wqy15_t_chinese3.png)
![fntpic/u8g2_font_wqy15_t_gb2312.png](fntpic/u8g2_font_wqy15_t_gb2312.png)
![fntpic/u8g2_font_wqy15_t_gb2312a.png](fntpic/u8g2_font_wqy15_t_gb2312a.png)
![fntpic/u8g2_font_wqy15_t_gb2312b.png](fntpic/u8g2_font_wqy15_t_gb2312b.png)
## wqy16
![fntpic/u8g2_font_wqy16_t_chinese1.png](fntpic/u8g2_font_wqy16_t_chinese1.png)
![fntpic/u8g2_font_wqy16_t_chinese2.png](fntpic/u8g2_font_wqy16_t_chinese2.png)
![fntpic/u8g2_font_wqy16_t_chinese3.png](fntpic/u8g2_font_wqy16_t_chinese3.png)
![fntpic/u8g2_font_wqy16_t_gb2312.png](fntpic/u8g2_font_wqy16_t_gb2312.png)
![fntpic/u8g2_font_wqy16_t_gb2312a.png](fntpic/u8g2_font_wqy16_t_gb2312a.png)
![fntpic/u8g2_font_wqy16_t_gb2312b.png](fntpic/u8g2_font_wqy16_t_gb2312b.png)
+336
View File
@@ -0,0 +1,336 @@
[tocstart]: # (toc start)
* [Reference](#reference)
* [Copyright](#copyright)
* [Font Details](#font-details)
* [cursor](#cursor)
* [micro](#micro)
* [4x6](#4x6)
* [5x7](#5x7)
* [5x8](#5x8)
* [6x10](#6x10)
* [6x12](#6x12)
* [6x13](#6x13)
* [6x13B](#6x13b)
* [6x13O](#6x13o)
* [7x13](#7x13)
* [7x13B](#7x13b)
* [7x13O](#7x13o)
* [7x14](#7x14)
* [7x14B](#7x14b)
* [8x13](#8x13)
* [8x13B](#8x13b)
* [8x13O](#8x13o)
* [9x15](#9x15)
* [9x15B](#9x15b)
* [9x18](#9x18)
* [9x18B](#9x18b)
* [10x20](#10x20)
* [8x13_1x2](#8x13_1x2)
* [8x13B_1x2](#8x13b_1x2)
* [7x14_1x2](#7x14_1x2)
* [7x14B_1x2](#7x14b_1x2)
[tocend]: # (toc end)
# Reference
Fonts on this page are part of the [X11 distribution](http://www.x.org/). On a Linux client these fonts are often located here: `/usr/share/fonts/X11/misc`.
X11 font sources are hosted [here](http://cgit.freedesktop.org/xorg/font/).
# Copyright
Copyright information is available on the [x.org](http://www.x.org/archive/X11R7.5/doc/LICENSE.html) server.
Copyright string from the font file: "Public domain font. Share and enjoy." or "These glyphs are unencumbered"
# Font Details
## cursor
![fntpic/u8g2_font_cursor_tf.png](fntpic/u8g2_font_cursor_tf.png)
![fntpic/u8g2_font_cursor_tr.png](fntpic/u8g2_font_cursor_tr.png)
## micro
![fntpic/u8g2_font_micro_tr.png](fntpic/u8g2_font_micro_tr.png)
![fntpic/u8g2_font_micro_tn.png](fntpic/u8g2_font_micro_tn.png)
![fntpic/u8g2_font_micro_mr.png](fntpic/u8g2_font_micro_mr.png)
![fntpic/u8g2_font_micro_mn.png](fntpic/u8g2_font_micro_mn.png)
## 4x6
![fntpic/u8g2_font_4x6_tf.png](fntpic/u8g2_font_4x6_tf.png)
![fntpic/u8g2_font_4x6_tr.png](fntpic/u8g2_font_4x6_tr.png)
![fntpic/u8g2_font_4x6_tn.png](fntpic/u8g2_font_4x6_tn.png)
![fntpic/u8g2_font_4x6_mf.png](fntpic/u8g2_font_4x6_mf.png)
![fntpic/u8g2_font_4x6_mr.png](fntpic/u8g2_font_4x6_mr.png)
![fntpic/u8g2_font_4x6_mn.png](fntpic/u8g2_font_4x6_mn.png)
![fntpic/u8g2_font_4x6_t_cyrillic.png](fntpic/u8g2_font_4x6_t_cyrillic.png)
## 5x7
![fntpic/u8g2_font_5x7_tf.png](fntpic/u8g2_font_5x7_tf.png)
![fntpic/u8g2_font_5x7_tr.png](fntpic/u8g2_font_5x7_tr.png)
![fntpic/u8g2_font_5x7_tn.png](fntpic/u8g2_font_5x7_tn.png)
![fntpic/u8g2_font_5x7_mf.png](fntpic/u8g2_font_5x7_mf.png)
![fntpic/u8g2_font_5x7_mr.png](fntpic/u8g2_font_5x7_mr.png)
![fntpic/u8g2_font_5x7_mn.png](fntpic/u8g2_font_5x7_mn.png)
![fntpic/u8x8_font_5x7_f.png](fntpic/u8x8_font_5x7_f.png)
![fntpic/u8x8_font_5x7_r.png](fntpic/u8x8_font_5x7_r.png)
![fntpic/u8x8_font_5x7_n.png](fntpic/u8x8_font_5x7_n.png)
![fntpic/u8g2_font_5x7_t_cyrillic.png](fntpic/u8g2_font_5x7_t_cyrillic.png)
## 5x8
![fntpic/u8g2_font_5x8_tf.png](fntpic/u8g2_font_5x8_tf.png)
![fntpic/u8g2_font_5x8_tr.png](fntpic/u8g2_font_5x8_tr.png)
![fntpic/u8g2_font_5x8_tn.png](fntpic/u8g2_font_5x8_tn.png)
![fntpic/u8g2_font_5x8_mf.png](fntpic/u8g2_font_5x8_mf.png)
![fntpic/u8g2_font_5x8_mr.png](fntpic/u8g2_font_5x8_mr.png)
![fntpic/u8g2_font_5x8_mn.png](fntpic/u8g2_font_5x8_mn.png)
![fntpic/u8x8_font_5x8_f.png](fntpic/u8x8_font_5x8_f.png)
![fntpic/u8x8_font_5x8_r.png](fntpic/u8x8_font_5x8_r.png)
![fntpic/u8x8_font_5x8_n.png](fntpic/u8x8_font_5x8_n.png)
![fntpic/u8g2_font_5x8_t_cyrillic.png](fntpic/u8g2_font_5x8_t_cyrillic.png)
## 6x10
![fntpic/u8g2_font_6x10_tf.png](fntpic/u8g2_font_6x10_tf.png)
![fntpic/u8g2_font_6x10_tr.png](fntpic/u8g2_font_6x10_tr.png)
![fntpic/u8g2_font_6x10_tn.png](fntpic/u8g2_font_6x10_tn.png)
![fntpic/u8g2_font_6x10_mf.png](fntpic/u8g2_font_6x10_mf.png)
![fntpic/u8g2_font_6x10_mr.png](fntpic/u8g2_font_6x10_mr.png)
![fntpic/u8g2_font_6x10_mn.png](fntpic/u8g2_font_6x10_mn.png)
## 6x12
![fntpic/u8g2_font_6x12_tf.png](fntpic/u8g2_font_6x12_tf.png)
![fntpic/u8g2_font_6x12_tr.png](fntpic/u8g2_font_6x12_tr.png)
![fntpic/u8g2_font_6x12_tn.png](fntpic/u8g2_font_6x12_tn.png)
![fntpic/u8g2_font_6x12_te.png](fntpic/u8g2_font_6x12_te.png)
![fntpic/u8g2_font_6x12_mf.png](fntpic/u8g2_font_6x12_mf.png)
![fntpic/u8g2_font_6x12_mr.png](fntpic/u8g2_font_6x12_mr.png)
![fntpic/u8g2_font_6x12_mn.png](fntpic/u8g2_font_6x12_mn.png)
![fntpic/u8g2_font_6x12_me.png](fntpic/u8g2_font_6x12_me.png)
![fntpic/u8g2_font_6x12_t_symbols.png](fntpic/u8g2_font_6x12_t_symbols.png)
![fntpic/u8g2_font_6x12_m_symbols.png](fntpic/u8g2_font_6x12_m_symbols.png)
![fntpic/u8g2_font_6x12_t_cyrillic.png](fntpic/u8g2_font_6x12_t_cyrillic.png)
## 6x13
![fntpic/u8g2_font_6x13_tf.png](fntpic/u8g2_font_6x13_tf.png)
![fntpic/u8g2_font_6x13_tr.png](fntpic/u8g2_font_6x13_tr.png)
![fntpic/u8g2_font_6x13_tn.png](fntpic/u8g2_font_6x13_tn.png)
![fntpic/u8g2_font_6x13_te.png](fntpic/u8g2_font_6x13_te.png)
![fntpic/u8g2_font_6x13_mf.png](fntpic/u8g2_font_6x13_mf.png)
![fntpic/u8g2_font_6x13_mr.png](fntpic/u8g2_font_6x13_mr.png)
![fntpic/u8g2_font_6x13_mn.png](fntpic/u8g2_font_6x13_mn.png)
![fntpic/u8g2_font_6x13_me.png](fntpic/u8g2_font_6x13_me.png)
![fntpic/u8g2_font_6x13_t_hebrew.png](fntpic/u8g2_font_6x13_t_hebrew.png)
![fntpic/u8g2_font_6x13_t_cyrillic.png](fntpic/u8g2_font_6x13_t_cyrillic.png)
## 6x13B
![fntpic/u8g2_font_6x13B_tf.png](fntpic/u8g2_font_6x13B_tf.png)
![fntpic/u8g2_font_6x13B_tr.png](fntpic/u8g2_font_6x13B_tr.png)
![fntpic/u8g2_font_6x13B_tn.png](fntpic/u8g2_font_6x13B_tn.png)
![fntpic/u8g2_font_6x13B_mf.png](fntpic/u8g2_font_6x13B_mf.png)
![fntpic/u8g2_font_6x13B_mr.png](fntpic/u8g2_font_6x13B_mr.png)
![fntpic/u8g2_font_6x13B_mn.png](fntpic/u8g2_font_6x13B_mn.png)
![fntpic/u8g2_font_6x13B_t_hebrew.png](fntpic/u8g2_font_6x13B_t_hebrew.png)
![fntpic/u8g2_font_6x13B_t_cyrillic.png](fntpic/u8g2_font_6x13B_t_cyrillic.png)
## 6x13O
![fntpic/u8g2_font_6x13O_tf.png](fntpic/u8g2_font_6x13O_tf.png)
![fntpic/u8g2_font_6x13O_tr.png](fntpic/u8g2_font_6x13O_tr.png)
![fntpic/u8g2_font_6x13O_tn.png](fntpic/u8g2_font_6x13O_tn.png)
![fntpic/u8g2_font_6x13O_mf.png](fntpic/u8g2_font_6x13O_mf.png)
![fntpic/u8g2_font_6x13O_mr.png](fntpic/u8g2_font_6x13O_mr.png)
![fntpic/u8g2_font_6x13O_mn.png](fntpic/u8g2_font_6x13O_mn.png)
## 7x13
![fntpic/u8g2_font_7x13_tf.png](fntpic/u8g2_font_7x13_tf.png)
![fntpic/u8g2_font_7x13_tr.png](fntpic/u8g2_font_7x13_tr.png)
![fntpic/u8g2_font_7x13_tn.png](fntpic/u8g2_font_7x13_tn.png)
![fntpic/u8g2_font_7x13_te.png](fntpic/u8g2_font_7x13_te.png)
![fntpic/u8g2_font_7x13_mf.png](fntpic/u8g2_font_7x13_mf.png)
![fntpic/u8g2_font_7x13_mr.png](fntpic/u8g2_font_7x13_mr.png)
![fntpic/u8g2_font_7x13_mn.png](fntpic/u8g2_font_7x13_mn.png)
![fntpic/u8g2_font_7x13_me.png](fntpic/u8g2_font_7x13_me.png)
![fntpic/u8g2_font_7x13_t_symbols.png](fntpic/u8g2_font_7x13_t_symbols.png)
![fntpic/u8g2_font_7x13_m_symbols.png](fntpic/u8g2_font_7x13_m_symbols.png)
![fntpic/u8g2_font_7x13_t_cyrillic.png](fntpic/u8g2_font_7x13_t_cyrillic.png)
## 7x13B
![fntpic/u8g2_font_7x13B_tf.png](fntpic/u8g2_font_7x13B_tf.png)
![fntpic/u8g2_font_7x13B_tr.png](fntpic/u8g2_font_7x13B_tr.png)
![fntpic/u8g2_font_7x13B_tn.png](fntpic/u8g2_font_7x13B_tn.png)
![fntpic/u8g2_font_7x13B_mf.png](fntpic/u8g2_font_7x13B_mf.png)
![fntpic/u8g2_font_7x13B_mr.png](fntpic/u8g2_font_7x13B_mr.png)
![fntpic/u8g2_font_7x13B_mn.png](fntpic/u8g2_font_7x13B_mn.png)
## 7x13O
![fntpic/u8g2_font_7x13O_tf.png](fntpic/u8g2_font_7x13O_tf.png)
![fntpic/u8g2_font_7x13O_tr.png](fntpic/u8g2_font_7x13O_tr.png)
![fntpic/u8g2_font_7x13O_tn.png](fntpic/u8g2_font_7x13O_tn.png)
![fntpic/u8g2_font_7x13O_mf.png](fntpic/u8g2_font_7x13O_mf.png)
![fntpic/u8g2_font_7x13O_mr.png](fntpic/u8g2_font_7x13O_mr.png)
![fntpic/u8g2_font_7x13O_mn.png](fntpic/u8g2_font_7x13O_mn.png)
## 7x14
![fntpic/u8g2_font_7x14_tf.png](fntpic/u8g2_font_7x14_tf.png)
![fntpic/u8g2_font_7x14_tr.png](fntpic/u8g2_font_7x14_tr.png)
![fntpic/u8g2_font_7x14_tn.png](fntpic/u8g2_font_7x14_tn.png)
![fntpic/u8g2_font_7x14_mf.png](fntpic/u8g2_font_7x14_mf.png)
![fntpic/u8g2_font_7x14_mr.png](fntpic/u8g2_font_7x14_mr.png)
![fntpic/u8g2_font_7x14_mn.png](fntpic/u8g2_font_7x14_mn.png)
## 7x14B
![fntpic/u8g2_font_7x14B_tf.png](fntpic/u8g2_font_7x14B_tf.png)
![fntpic/u8g2_font_7x14B_tr.png](fntpic/u8g2_font_7x14B_tr.png)
![fntpic/u8g2_font_7x14B_tn.png](fntpic/u8g2_font_7x14B_tn.png)
![fntpic/u8g2_font_7x14B_mf.png](fntpic/u8g2_font_7x14B_mf.png)
![fntpic/u8g2_font_7x14B_mr.png](fntpic/u8g2_font_7x14B_mr.png)
![fntpic/u8g2_font_7x14B_mn.png](fntpic/u8g2_font_7x14B_mn.png)
## 8x13
![fntpic/u8g2_font_8x13_tf.png](fntpic/u8g2_font_8x13_tf.png)
![fntpic/u8g2_font_8x13_tr.png](fntpic/u8g2_font_8x13_tr.png)
![fntpic/u8g2_font_8x13_tn.png](fntpic/u8g2_font_8x13_tn.png)
![fntpic/u8g2_font_8x13_te.png](fntpic/u8g2_font_8x13_te.png)
![fntpic/u8g2_font_8x13_mf.png](fntpic/u8g2_font_8x13_mf.png)
![fntpic/u8g2_font_8x13_mr.png](fntpic/u8g2_font_8x13_mr.png)
![fntpic/u8g2_font_8x13_mn.png](fntpic/u8g2_font_8x13_mn.png)
![fntpic/u8g2_font_8x13_me.png](fntpic/u8g2_font_8x13_me.png)
![fntpic/u8g2_font_8x13_t_symbols.png](fntpic/u8g2_font_8x13_t_symbols.png)
![fntpic/u8g2_font_8x13_m_symbols.png](fntpic/u8g2_font_8x13_m_symbols.png)
![fntpic/u8g2_font_8x13_t_cyrillic.png](fntpic/u8g2_font_8x13_t_cyrillic.png)
## 8x13B
![fntpic/u8g2_font_8x13B_tf.png](fntpic/u8g2_font_8x13B_tf.png)
![fntpic/u8g2_font_8x13B_tr.png](fntpic/u8g2_font_8x13B_tr.png)
![fntpic/u8g2_font_8x13B_tn.png](fntpic/u8g2_font_8x13B_tn.png)
![fntpic/u8g2_font_8x13B_mf.png](fntpic/u8g2_font_8x13B_mf.png)
![fntpic/u8g2_font_8x13B_mr.png](fntpic/u8g2_font_8x13B_mr.png)
![fntpic/u8g2_font_8x13B_mn.png](fntpic/u8g2_font_8x13B_mn.png)
## 8x13O
![fntpic/u8g2_font_8x13O_tf.png](fntpic/u8g2_font_8x13O_tf.png)
![fntpic/u8g2_font_8x13O_tr.png](fntpic/u8g2_font_8x13O_tr.png)
![fntpic/u8g2_font_8x13O_tn.png](fntpic/u8g2_font_8x13O_tn.png)
![fntpic/u8g2_font_8x13O_mf.png](fntpic/u8g2_font_8x13O_mf.png)
![fntpic/u8g2_font_8x13O_mr.png](fntpic/u8g2_font_8x13O_mr.png)
![fntpic/u8g2_font_8x13O_mn.png](fntpic/u8g2_font_8x13O_mn.png)
## 9x15
![fntpic/u8g2_font_9x15_tf.png](fntpic/u8g2_font_9x15_tf.png)
![fntpic/u8g2_font_9x15_tr.png](fntpic/u8g2_font_9x15_tr.png)
![fntpic/u8g2_font_9x15_tn.png](fntpic/u8g2_font_9x15_tn.png)
![fntpic/u8g2_font_9x15_te.png](fntpic/u8g2_font_9x15_te.png)
![fntpic/u8g2_font_9x15_mf.png](fntpic/u8g2_font_9x15_mf.png)
![fntpic/u8g2_font_9x15_mr.png](fntpic/u8g2_font_9x15_mr.png)
![fntpic/u8g2_font_9x15_mn.png](fntpic/u8g2_font_9x15_mn.png)
![fntpic/u8g2_font_9x15_me.png](fntpic/u8g2_font_9x15_me.png)
![fntpic/u8g2_font_9x15_t_symbols.png](fntpic/u8g2_font_9x15_t_symbols.png)
![fntpic/u8g2_font_9x15_m_symbols.png](fntpic/u8g2_font_9x15_m_symbols.png)
![fntpic/u8g2_font_9x15_t_cyrillic.png](fntpic/u8g2_font_9x15_t_cyrillic.png)
## 9x15B
![fntpic/u8g2_font_9x15B_tf.png](fntpic/u8g2_font_9x15B_tf.png)
![fntpic/u8g2_font_9x15B_tr.png](fntpic/u8g2_font_9x15B_tr.png)
![fntpic/u8g2_font_9x15B_tn.png](fntpic/u8g2_font_9x15B_tn.png)
![fntpic/u8g2_font_9x15B_mf.png](fntpic/u8g2_font_9x15B_mf.png)
![fntpic/u8g2_font_9x15B_mr.png](fntpic/u8g2_font_9x15B_mr.png)
![fntpic/u8g2_font_9x15B_mn.png](fntpic/u8g2_font_9x15B_mn.png)
## 9x18
![fntpic/u8g2_font_9x18_tf.png](fntpic/u8g2_font_9x18_tf.png)
![fntpic/u8g2_font_9x18_tr.png](fntpic/u8g2_font_9x18_tr.png)
![fntpic/u8g2_font_9x18_tn.png](fntpic/u8g2_font_9x18_tn.png)
![fntpic/u8g2_font_9x18_mf.png](fntpic/u8g2_font_9x18_mf.png)
![fntpic/u8g2_font_9x18_mr.png](fntpic/u8g2_font_9x18_mr.png)
![fntpic/u8g2_font_9x18_mn.png](fntpic/u8g2_font_9x18_mn.png)
## 9x18B
![fntpic/u8g2_font_9x18B_tf.png](fntpic/u8g2_font_9x18B_tf.png)
![fntpic/u8g2_font_9x18B_tr.png](fntpic/u8g2_font_9x18B_tr.png)
![fntpic/u8g2_font_9x18B_tn.png](fntpic/u8g2_font_9x18B_tn.png)
![fntpic/u8g2_font_9x18B_mf.png](fntpic/u8g2_font_9x18B_mf.png)
![fntpic/u8g2_font_9x18B_mr.png](fntpic/u8g2_font_9x18B_mr.png)
![fntpic/u8g2_font_9x18B_mn.png](fntpic/u8g2_font_9x18B_mn.png)
## 10x20
![fntpic/u8g2_font_10x20_tf.png](fntpic/u8g2_font_10x20_tf.png)
![fntpic/u8g2_font_10x20_tr.png](fntpic/u8g2_font_10x20_tr.png)
![fntpic/u8g2_font_10x20_tn.png](fntpic/u8g2_font_10x20_tn.png)
![fntpic/u8g2_font_10x20_te.png](fntpic/u8g2_font_10x20_te.png)
![fntpic/u8g2_font_10x20_mf.png](fntpic/u8g2_font_10x20_mf.png)
![fntpic/u8g2_font_10x20_mr.png](fntpic/u8g2_font_10x20_mr.png)
![fntpic/u8g2_font_10x20_mn.png](fntpic/u8g2_font_10x20_mn.png)
![fntpic/u8g2_font_10x20_me.png](fntpic/u8g2_font_10x20_me.png)
![fntpic/u8g2_font_10x20_t_greek.png](fntpic/u8g2_font_10x20_t_greek.png)
![fntpic/u8g2_font_10x20_t_cyrillic.png](fntpic/u8g2_font_10x20_t_cyrillic.png)
![fntpic/u8g2_font_10x20_t_arabic.png](fntpic/u8g2_font_10x20_t_arabic.png)
## 8x13_1x2
![fntpic/u8x8_font_8x13_1x2_f.png](fntpic/u8x8_font_8x13_1x2_f.png)
![fntpic/u8x8_font_8x13_1x2_r.png](fntpic/u8x8_font_8x13_1x2_r.png)
![fntpic/u8x8_font_8x13_1x2_n.png](fntpic/u8x8_font_8x13_1x2_n.png)
## 8x13B_1x2
![fntpic/u8x8_font_8x13B_1x2_f.png](fntpic/u8x8_font_8x13B_1x2_f.png)
![fntpic/u8x8_font_8x13B_1x2_r.png](fntpic/u8x8_font_8x13B_1x2_r.png)
![fntpic/u8x8_font_8x13B_1x2_n.png](fntpic/u8x8_font_8x13B_1x2_n.png)
## 7x14_1x2
![fntpic/u8x8_font_7x14_1x2_f.png](fntpic/u8x8_font_7x14_1x2_f.png)
![fntpic/u8x8_font_7x14_1x2_r.png](fntpic/u8x8_font_7x14_1x2_r.png)
![fntpic/u8x8_font_7x14_1x2_n.png](fntpic/u8x8_font_7x14_1x2_n.png)
## 7x14B_1x2
![fntpic/u8x8_font_7x14B_1x2_f.png](fntpic/u8x8_font_7x14B_1x2_f.png)
![fntpic/u8x8_font_7x14B_1x2_r.png](fntpic/u8x8_font_7x14B_1x2_r.png)
![fntpic/u8x8_font_7x14B_1x2_n.png](fntpic/u8x8_font_7x14B_1x2_n.png)
+155
View File
@@ -0,0 +1,155 @@
[tocstart]: # (toc start)
* [Icon and Symbol Fonts](#icon-and-symbol-fonts)
* [Unicode Symbols and Icons](#unicode-symbols-and-icons)
* [Other Icons](#other-icons)
[tocend]: # (toc end)
# Icon and Symbol Fonts
Many icons and symbols are part of U8g2 and U8x8 Fonts. This page is an overview
of the existing icons and symbols.
Font names are linked to the corresponding sub page which
include further details and (in some cases) variants of the icon/symbol font.
## Unicode Symbols and Icons
### u8g2_font_cu12_t_symbols and u8g2_font_cu12_h_symbols
U8g2 Wiki Page: [cu12](fntgrpcu12): ClearlyU Unicode Bitmap Font
Link: http://sofia.nmsu.edu/~mleisher/Software/cu/
License/Copyright: See [U8g2 CU12 (ClearlyU) Wiki Page](fntgrpcu12).
![fntpic/u8g2_font_cu12_t_symbols.png](fntpic/u8g2_font_cu12_t_symbols.png)
### Unifont
* u8g2_font_unifont_t_75
* u8g2_font_unifont_t_76
* u8g2_font_unifont_t_77
* u8g2_font_unifont_t_78_79
* u8g2_font_unifont_t_symbols
* u8g2_font_unifont_t_emoticons
* u8g2_font_unifont_t_animals
* u8g2_font_unifont_t_domino
* u8g2_font_unifont_t_cards
* u8g2_font_unifont_t_weather
U8g2 Wiki Page: [Unifont](fntgrpunifont)
Link: https://savannah.gnu.org/projects/unifont
License/Copyright: See [U8g2 Unifont Wiki Page](fntgrpunifont)
![fntpic/u8g2_font_unifont_t_75.png](fntpic/u8g2_font_unifont_t_75.png)
![fntpic/u8g2_font_unifont_t_76.png](fntpic/u8g2_font_unifont_t_76.png)
![fntpic/u8g2_font_unifont_t_77.png](fntpic/u8g2_font_unifont_t_77.png)
![fntpic/u8g2_font_unifont_t_78_79.png](fntpic/u8g2_font_unifont_t_78_79.png)
![fntpic/u8g2_font_unifont_t_86.png](fntpic/u8g2_font_unifont_t_86.png)
![fntpic/u8g2_font_unifont_t_symbols.png](fntpic/u8g2_font_unifont_t_symbols.png)
![fntpic/u8g2_font_unifont_t_emoticons.png](fntpic/u8g2_font_unifont_t_emoticons.png)
![fntpic/u8g2_font_unifont_t_animals.png](fntpic/u8g2_font_unifont_t_animals.png)
![fntpic/u8g2_font_unifont_t_domino.png](fntpic/u8g2_font_unifont_t_domino.png)
![fntpic/u8g2_font_unifont_t_cards.png](fntpic/u8g2_font_unifont_t_cards.png)
![fntpic/u8g2_font_unifont_t_weather.png](fntpic/u8g2_font_unifont_t_weather.png)
### X11
* u8g2_font_6x12_t_symbols
* u8g2_font_7x13_t_symbols
* u8g2_font_8x13_t_symbols
* u8g2_font_9x15_t_symbols
U8g2 Wiki Page: [Unifont](fntgrpunifont)
License/Copyright: http://www.x.org/archive/X11R7.5/doc/LICENSE.html
![fntpic/u8g2_font_6x12_t_symbols.png](fntpic/u8g2_font_6x12_t_symbols.png)
![fntpic/u8g2_font_7x13_t_symbols.png](fntpic/u8g2_font_7x13_t_symbols.png)
![fntpic/u8g2_font_8x13_t_symbols.png](fntpic/u8g2_font_8x13_t_symbols.png)
![fntpic/u8g2_font_9x15_t_symbols.png](fntpic/u8g2_font_9x15_t_symbols.png)
## Other Icons
### u8g2_font_iconquadpix_m_all
IconQuadPix by ravee de
U8g2 Wiki Page: [bitfontmaker2](fntgrpbitfontmaker2)
Link: http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=244
License/Copyright: Creative Commons NonCommercial
![fntpic/u8g2_font_iconquadpix_m_all.png](fntpic/u8g2_font_iconquadpix_m_all.png)
### u8g2_font_twelvedings_t_all
TwelveDings by Geoff
U8g2 Wiki Page: [Geoff](fntgrpgeoff)
Link: http://www.pentacom.jp/pentacom/bitfontmaker2/gallery/?id=330
License/Copyright: Public Domain
![fntpic/u8g2_font_twelvedings_t_all.png](fntpic/u8g2_font_twelvedings_t_all.png)
### U8g2 Fonts
* u8g2_font_m2icon_5_tf, u8g2_font_m2icon_7_tf, u8g2_font_m2icon_9_tf
* u8g2_font_emoticons21_tr
* u8g2_font_battery19_tn
U8g2 Wiki Page: [U8g](fntgrpu8g)
License/Copyright: Public Domain
![fntpic/u8g2_font_m2icon_9_tf.png](fntpic/u8g2_font_m2icon_9_tf.png)
![fntpic/u8g2_font_emoticons21_tr.png](fntpic/u8g2_font_emoticons21_tr.png)
![fntpic/u8g2_font_battery19_tn.png](fntpic/u8g2_font_battery19_tn.png)
### Open Iconic
U8g2 Wiki Page: [Open Iconic](fntgrpiconic)
Link: https://github.com/iconic/open-iconic
License/Copyright: Open Iconic Icons are available under the SIL OPEN FONT LICENSE ([https://github.com/iconic/open-iconic](https://github.com/iconic/open-iconic)).
See the Wiki page above for all available sizes and subsets.
![fntpic/u8g2_font_open_iconic_all_2x_t.png](fntpic/u8g2_font_open_iconic_all_2x_t.png)
### Streamline Pixel Icons
U8g2 Wiki Page: [Streamline](fntgrpstreamline)
Link: https://app.streamlinehq.com/icons/pixel
License/Copyright: The "streamline pixel" are available for free if the attribution link is provided (https://intercom.help/streamlinehq/en/articles/5354403-how-to-create-an-attribution-link).
![fntpic/u8g2_font_streamline_all_t.png](fntpic/u8g2_font_streamline_all_t.png)
### Siji Pixel Icons
U8g2 Wiki Page: [Siji](fntgrpsiji)
Link: https://github.com/stark/siji
License/Copyright: Siji icon font is available under the "GNU General Public License v2.0"
![fntpic/u8g2_font_siji_t_6x10.png](fntpic/u8g2_font_siji_t_6x10.png)
+1650
View File
File diff suppressed because it is too large Load Diff
+492
View File
@@ -0,0 +1,492 @@
[tocstart]: # (toc start)
* [U8g2 Font List](#u8g2-font-list)
* [U8g2 Font Names](#u8g2-font-names)
* [U8g2 Fonts, Capital A Height 13..16](#u8g2-fonts-capital-a-height-1316)
* [13 Pixel Height](#13-pixel-height)
* [14 Pixel Height](#14-pixel-height)
* [15 Pixel Height](#15-pixel-height)
* [16 Pixel Height](#16-pixel-height)
[tocend]: # (toc end)
# U8g2 Font List
* [Font List 3-8 Pixel Height](fntlist8)
* [Font List 9-12 Pixel Height](fntlist12)
* Font List 13-16 Pixel Height (this page)
* [Font List 17-99 Pixel Height](fntlist99)
# U8g2 Font Names
```
<prefix> '_' <name> '_' <purpose> <char set>
```
| `<purpose>` | Description |
|---------------------|---------------------|
| `t` | Transparent font, Do not use a background color. |
| `h` | All glyphs have common height. |
| `m` | All glyphs have common height and width (monospace). |
| `8` | All glyphs fit into a 8x8 pixel box. |
| `<char set>` | Description |
|---------------------|-----------------|
| `f` | The font includes up to 256 glyphs. |
| `r` | Only glyphs on the range of the ASCII codes 32 to 127 are included in the font. |
| `u` | Only glyphs on the range of the ASCII codes 32 to 95 (uppercase chars) are included in the font. |
| `n` | Only numbers and extra glyphs for writing date and time strings are included in the font. |
| ... | Other custom character list.
# U8g2 Fonts, Capital A Height 13..16
## 13 Pixel Height
![fntpic/u8g2_font_10x20_tf_short.png](fntpic/u8g2_font_10x20_tf_short.png) u8g2_font_10x20_tf [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_tr_short.png](fntpic/u8g2_font_10x20_tr_short.png) u8g2_font_10x20_tr [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_te_short.png](fntpic/u8g2_font_10x20_te_short.png) u8g2_font_10x20_te [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_mf_short.png](fntpic/u8g2_font_10x20_mf_short.png) u8g2_font_10x20_mf [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_mr_short.png](fntpic/u8g2_font_10x20_mr_short.png) u8g2_font_10x20_mr [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_me_short.png](fntpic/u8g2_font_10x20_me_short.png) u8g2_font_10x20_me [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_t_greek_short.png](fntpic/u8g2_font_10x20_t_greek_short.png) u8g2_font_10x20_t_greek [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_t_cyrillic_short.png](fntpic/u8g2_font_10x20_t_cyrillic_short.png) u8g2_font_10x20_t_cyrillic [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_t_arabic_short.png](fntpic/u8g2_font_10x20_t_arabic_short.png) u8g2_font_10x20_t_arabic [X11](fntgrpx11)
![fntpic/u8g2_font_t0_22_tf_short.png](fntpic/u8g2_font_t0_22_tf_short.png) u8g2_font_t0_22_tf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_tr_short.png](fntpic/u8g2_font_t0_22_tr_short.png) u8g2_font_t0_22_tr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_te_short.png](fntpic/u8g2_font_t0_22_te_short.png) u8g2_font_t0_22_te [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_mf_short.png](fntpic/u8g2_font_t0_22_mf_short.png) u8g2_font_t0_22_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_mr_short.png](fntpic/u8g2_font_t0_22_mr_short.png) u8g2_font_t0_22_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_me_short.png](fntpic/u8g2_font_t0_22_me_short.png) u8g2_font_t0_22_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_t_symbol_short.png](fntpic/u8g2_font_t0_22_t_symbol_short.png) u8g2_font_t0_22_t_symbol [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_tf_short.png](fntpic/u8g2_font_t0_22b_tf_short.png) u8g2_font_t0_22b_tf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_tr_short.png](fntpic/u8g2_font_t0_22b_tr_short.png) u8g2_font_t0_22b_tr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_te_short.png](fntpic/u8g2_font_t0_22b_te_short.png) u8g2_font_t0_22b_te [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_mf_short.png](fntpic/u8g2_font_t0_22b_mf_short.png) u8g2_font_t0_22b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_mr_short.png](fntpic/u8g2_font_t0_22b_mr_short.png) u8g2_font_t0_22b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_me_short.png](fntpic/u8g2_font_t0_22b_me_short.png) u8g2_font_t0_22b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_crox2cb_tn_short.png](fntpic/u8g2_font_crox2cb_tn_short.png) u8g2_font_crox2cb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2cb_mn_short.png](fntpic/u8g2_font_crox2cb_mn_short.png) u8g2_font_crox2cb_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2c_tn_short.png](fntpic/u8g2_font_crox2c_tn_short.png) u8g2_font_crox2c_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2c_mn_short.png](fntpic/u8g2_font_crox2c_mn_short.png) u8g2_font_crox2c_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2hb_tn_short.png](fntpic/u8g2_font_crox2hb_tn_short.png) u8g2_font_crox2hb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2h_tn_short.png](fntpic/u8g2_font_crox2h_tn_short.png) u8g2_font_crox2h_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2tb_tn_short.png](fntpic/u8g2_font_crox2tb_tn_short.png) u8g2_font_crox2tb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2t_tn_short.png](fntpic/u8g2_font_crox2t_tn_short.png) u8g2_font_crox2t_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4tb_tf_short.png](fntpic/u8g2_font_crox4tb_tf_short.png) u8g2_font_crox4tb_tf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4tb_tr_short.png](fntpic/u8g2_font_crox4tb_tr_short.png) u8g2_font_crox4tb_tr [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4t_tf_short.png](fntpic/u8g2_font_crox4t_tf_short.png) u8g2_font_crox4t_tf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4t_tr_short.png](fntpic/u8g2_font_crox4t_tr_short.png) u8g2_font_crox4t_tr [crox](fntgrpcrox)
![fntpic/u8g2_font_gb24st_t_1_short.png](fntpic/u8g2_font_gb24st_t_1_short.png) u8g2_font_gb24st_t_1 [Academia Sinica](fntgrpacademiasinica)
![fntpic/u8g2_font_gb24st_t_2_short.png](fntpic/u8g2_font_gb24st_t_2_short.png) u8g2_font_gb24st_t_2 [Academia Sinica](fntgrpacademiasinica)
![fntpic/u8g2_font_gb24st_t_3_short.png](fntpic/u8g2_font_gb24st_t_3_short.png) u8g2_font_gb24st_t_3 [Academia Sinica](fntgrpacademiasinica)
![fntpic/u8g2_font_timB14_tf_short.png](fntpic/u8g2_font_timB14_tf_short.png) u8g2_font_timB14_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timB14_tr_short.png](fntpic/u8g2_font_timB14_tr_short.png) u8g2_font_timB14_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timB14_tn_short.png](fntpic/u8g2_font_timB14_tn_short.png) u8g2_font_timB14_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timR14_tf_short.png](fntpic/u8g2_font_timR14_tf_short.png) u8g2_font_timR14_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timR14_tr_short.png](fntpic/u8g2_font_timR14_tr_short.png) u8g2_font_timR14_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timR14_tn_short.png](fntpic/u8g2_font_timR14_tn_short.png) u8g2_font_timR14_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_lubB12_tf_short.png](fntpic/u8g2_font_lubB12_tf_short.png) u8g2_font_lubB12_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubB12_tr_short.png](fntpic/u8g2_font_lubB12_tr_short.png) u8g2_font_lubB12_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubB12_tn_short.png](fntpic/u8g2_font_lubB12_tn_short.png) u8g2_font_lubB12_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubB12_te_short.png](fntpic/u8g2_font_lubB12_te_short.png) u8g2_font_lubB12_te [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI12_tf_short.png](fntpic/u8g2_font_lubBI12_tf_short.png) u8g2_font_lubBI12_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI12_tr_short.png](fntpic/u8g2_font_lubBI12_tr_short.png) u8g2_font_lubBI12_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI12_tn_short.png](fntpic/u8g2_font_lubBI12_tn_short.png) u8g2_font_lubBI12_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI12_te_short.png](fntpic/u8g2_font_lubBI12_te_short.png) u8g2_font_lubBI12_te [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI12_tf_short.png](fntpic/u8g2_font_lubI12_tf_short.png) u8g2_font_lubI12_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI12_tr_short.png](fntpic/u8g2_font_lubI12_tr_short.png) u8g2_font_lubI12_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI12_tn_short.png](fntpic/u8g2_font_lubI12_tn_short.png) u8g2_font_lubI12_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI12_te_short.png](fntpic/u8g2_font_lubI12_te_short.png) u8g2_font_lubI12_te [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR12_tf_short.png](fntpic/u8g2_font_lubR12_tf_short.png) u8g2_font_lubR12_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR12_tr_short.png](fntpic/u8g2_font_lubR12_tr_short.png) u8g2_font_lubR12_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR12_tn_short.png](fntpic/u8g2_font_lubR12_tn_short.png) u8g2_font_lubR12_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR12_te_short.png](fntpic/u8g2_font_lubR12_te_short.png) u8g2_font_lubR12_te [lucida](fntgrplucida)
## 14 Pixel Height
![fntpic/u8g2_font_9x18_tn_short.png](fntpic/u8g2_font_9x18_tn_short.png) u8g2_font_9x18_tn [X11](fntgrpx11)
![fntpic/u8g2_font_9x18_mn_short.png](fntpic/u8g2_font_9x18_mn_short.png) u8g2_font_9x18_mn [X11](fntgrpx11)
![fntpic/u8g2_font_9x18B_tn_short.png](fntpic/u8g2_font_9x18B_tn_short.png) u8g2_font_9x18B_tn [X11](fntgrpx11)
![fntpic/u8g2_font_9x18B_mn_short.png](fntpic/u8g2_font_9x18B_mn_short.png) u8g2_font_9x18B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_t0_17_tn_short.png](fntpic/u8g2_font_t0_17_tn_short.png) u8g2_font_t0_17_tn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17_mn_short.png](fntpic/u8g2_font_t0_17_mn_short.png) u8g2_font_t0_17_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17b_tn_short.png](fntpic/u8g2_font_t0_17b_tn_short.png) u8g2_font_t0_17b_tn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17b_mn_short.png](fntpic/u8g2_font_t0_17b_mn_short.png) u8g2_font_t0_17b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18_tn_short.png](fntpic/u8g2_font_t0_18_tn_short.png) u8g2_font_t0_18_tn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18_mn_short.png](fntpic/u8g2_font_t0_18_mn_short.png) u8g2_font_t0_18_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18b_tn_short.png](fntpic/u8g2_font_t0_18b_tn_short.png) u8g2_font_t0_18b_tn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18b_mn_short.png](fntpic/u8g2_font_t0_18b_mn_short.png) u8g2_font_t0_18b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_open_iconic_arrow_2x_t_short.png](fntpic/u8g2_font_open_iconic_arrow_2x_t_short.png) u8g2_font_open_iconic_arrow_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_other_2x_t_short.png](fntpic/u8g2_font_open_iconic_other_2x_t_short.png) u8g2_font_open_iconic_other_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_profont22_tf_short.png](fntpic/u8g2_font_profont22_tf_short.png) u8g2_font_profont22_tf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_tr_short.png](fntpic/u8g2_font_profont22_tr_short.png) u8g2_font_profont22_tr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_tn_short.png](fntpic/u8g2_font_profont22_tn_short.png) u8g2_font_profont22_tn [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_mf_short.png](fntpic/u8g2_font_profont22_mf_short.png) u8g2_font_profont22_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_mr_short.png](fntpic/u8g2_font_profont22_mr_short.png) u8g2_font_profont22_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_mn_short.png](fntpic/u8g2_font_profont22_mn_short.png) u8g2_font_profont22_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_calibration_gothic_nbp_tf_short.png](fntpic/u8g2_font_calibration_gothic_nbp_tf_short.png) u8g2_font_calibration_gothic_nbp_tf [NBP](fntgrpnbp)
![fntpic/u8g2_font_calibration_gothic_nbp_tr_short.png](fntpic/u8g2_font_calibration_gothic_nbp_tr_short.png) u8g2_font_calibration_gothic_nbp_tr [NBP](fntgrpnbp)
![fntpic/u8g2_font_calibration_gothic_nbp_tn_short.png](fntpic/u8g2_font_calibration_gothic_nbp_tn_short.png) u8g2_font_calibration_gothic_nbp_tn [NBP](fntgrpnbp)
![fntpic/u8g2_font_calibration_gothic_nbp_t_all_short.png](fntpic/u8g2_font_calibration_gothic_nbp_t_all_short.png) u8g2_font_calibration_gothic_nbp_t_all [NBP](fntgrpnbp)
![fntpic/u8g2_font_balthasar_titling_nbp_tf_short.png](fntpic/u8g2_font_balthasar_titling_nbp_tf_short.png) u8g2_font_balthasar_titling_nbp_tf [NBP](fntgrpnbp)
![fntpic/u8g2_font_balthasar_titling_nbp_tr_short.png](fntpic/u8g2_font_balthasar_titling_nbp_tr_short.png) u8g2_font_balthasar_titling_nbp_tr [NBP](fntgrpnbp)
![fntpic/u8g2_font_balthasar_titling_nbp_tn_short.png](fntpic/u8g2_font_balthasar_titling_nbp_tn_short.png) u8g2_font_balthasar_titling_nbp_tn [NBP](fntgrpnbp)
![fntpic/u8g2_font_etl24thai_t_short.png](fntpic/u8g2_font_etl24thai_t_short.png) u8g2_font_etl24thai_t [Tlwg (Thai-Fonts)](fntgrptlwg)
![fntpic/u8g2_font_crox4hb_tf_short.png](fntpic/u8g2_font_crox4hb_tf_short.png) u8g2_font_crox4hb_tf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4hb_tr_short.png](fntpic/u8g2_font_crox4hb_tr_short.png) u8g2_font_crox4hb_tr [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4h_tf_short.png](fntpic/u8g2_font_crox4h_tf_short.png) u8g2_font_crox4h_tf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4h_tr_short.png](fntpic/u8g2_font_crox4h_tr_short.png) u8g2_font_crox4h_tr [crox](fntgrpcrox)
![fntpic/u8g2_font_unifont_t_72_73_short.png](fntpic/u8g2_font_unifont_t_72_73_short.png) u8g2_font_unifont_t_72_73 [Unifont](fntgrpunifont)
![fntpic/u8g2_font_unifont_t_75_short.png](fntpic/u8g2_font_unifont_t_75_short.png) u8g2_font_unifont_t_75 [Unifont](fntgrpunifont)
![fntpic/u8g2_font_unifont_t_76_short.png](fntpic/u8g2_font_unifont_t_76_short.png) u8g2_font_unifont_t_76 [Unifont](fntgrpunifont)
![fntpic/u8g2_font_unifont_t_77_short.png](fntpic/u8g2_font_unifont_t_77_short.png) u8g2_font_unifont_t_77 [Unifont](fntgrpunifont)
![fntpic/u8g2_font_unifont_t_78_79_short.png](fntpic/u8g2_font_unifont_t_78_79_short.png) u8g2_font_unifont_t_78_79 [Unifont](fntgrpunifont)
![fntpic/u8g2_font_unifont_t_86_short.png](fntpic/u8g2_font_unifont_t_86_short.png) u8g2_font_unifont_t_86 [Unifont](fntgrpunifont)
![fntpic/u8g2_font_courR18_tf_short.png](fntpic/u8g2_font_courR18_tf_short.png) u8g2_font_courR18_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courR18_tr_short.png](fntpic/u8g2_font_courR18_tr_short.png) u8g2_font_courR18_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courR18_tn_short.png](fntpic/u8g2_font_courR18_tn_short.png) u8g2_font_courR18_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB14_tf_short.png](fntpic/u8g2_font_helvB14_tf_short.png) u8g2_font_helvB14_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB14_tr_short.png](fntpic/u8g2_font_helvB14_tr_short.png) u8g2_font_helvB14_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB14_tn_short.png](fntpic/u8g2_font_helvB14_tn_short.png) u8g2_font_helvB14_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB14_te_short.png](fntpic/u8g2_font_helvB14_te_short.png) u8g2_font_helvB14_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR14_tf_short.png](fntpic/u8g2_font_helvR14_tf_short.png) u8g2_font_helvR14_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR14_tr_short.png](fntpic/u8g2_font_helvR14_tr_short.png) u8g2_font_helvR14_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR14_tn_short.png](fntpic/u8g2_font_helvR14_tn_short.png) u8g2_font_helvR14_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR14_te_short.png](fntpic/u8g2_font_helvR14_te_short.png) u8g2_font_helvR14_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB14_tf_short.png](fntpic/u8g2_font_ncenB14_tf_short.png) u8g2_font_ncenB14_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB14_tr_short.png](fntpic/u8g2_font_ncenB14_tr_short.png) u8g2_font_ncenB14_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB14_tn_short.png](fntpic/u8g2_font_ncenB14_tn_short.png) u8g2_font_ncenB14_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB14_te_short.png](fntpic/u8g2_font_ncenB14_te_short.png) u8g2_font_ncenB14_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR14_tf_short.png](fntpic/u8g2_font_ncenR14_tf_short.png) u8g2_font_ncenR14_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR14_tr_short.png](fntpic/u8g2_font_ncenR14_tr_short.png) u8g2_font_ncenR14_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR14_tn_short.png](fntpic/u8g2_font_ncenR14_tn_short.png) u8g2_font_ncenR14_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR14_te_short.png](fntpic/u8g2_font_ncenR14_te_short.png) u8g2_font_ncenR14_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_luBIS14_tf_short.png](fntpic/u8g2_font_luBIS14_tf_short.png) u8g2_font_luBIS14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luBIS14_tr_short.png](fntpic/u8g2_font_luBIS14_tr_short.png) u8g2_font_luBIS14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luBIS14_tn_short.png](fntpic/u8g2_font_luBIS14_tn_short.png) u8g2_font_luBIS14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luBIS14_te_short.png](fntpic/u8g2_font_luBIS14_te_short.png) u8g2_font_luBIS14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS14_tf_short.png](fntpic/u8g2_font_luBS14_tf_short.png) u8g2_font_luBS14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS14_tr_short.png](fntpic/u8g2_font_luBS14_tr_short.png) u8g2_font_luBS14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS14_tn_short.png](fntpic/u8g2_font_luBS14_tn_short.png) u8g2_font_luBS14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS14_te_short.png](fntpic/u8g2_font_luBS14_te_short.png) u8g2_font_luBS14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS14_tf_short.png](fntpic/u8g2_font_luIS14_tf_short.png) u8g2_font_luIS14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS14_tr_short.png](fntpic/u8g2_font_luIS14_tr_short.png) u8g2_font_luIS14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS14_tn_short.png](fntpic/u8g2_font_luIS14_tn_short.png) u8g2_font_luIS14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS14_te_short.png](fntpic/u8g2_font_luIS14_te_short.png) u8g2_font_luIS14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS14_tf_short.png](fntpic/u8g2_font_luRS14_tf_short.png) u8g2_font_luRS14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS14_tr_short.png](fntpic/u8g2_font_luRS14_tr_short.png) u8g2_font_luRS14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS14_tn_short.png](fntpic/u8g2_font_luRS14_tn_short.png) u8g2_font_luRS14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS14_te_short.png](fntpic/u8g2_font_luRS14_te_short.png) u8g2_font_luRS14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_chargen_92_tf_short.png](fntpic/u8g2_font_chargen_92_tf_short.png) u8g2_font_chargen_92_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_tr_short.png](fntpic/u8g2_font_chargen_92_tr_short.png) u8g2_font_chargen_92_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_tn_short.png](fntpic/u8g2_font_chargen_92_tn_short.png) u8g2_font_chargen_92_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_te_short.png](fntpic/u8g2_font_chargen_92_te_short.png) u8g2_font_chargen_92_te [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_mf_short.png](fntpic/u8g2_font_chargen_92_mf_short.png) u8g2_font_chargen_92_mf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_mr_short.png](fntpic/u8g2_font_chargen_92_mr_short.png) u8g2_font_chargen_92_mr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_mn_short.png](fntpic/u8g2_font_chargen_92_mn_short.png) u8g2_font_chargen_92_mn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_me_short.png](fntpic/u8g2_font_chargen_92_me_short.png) u8g2_font_chargen_92_me [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_fub14_tf_short.png](fntpic/u8g2_font_fub14_tf_short.png) u8g2_font_fub14_tf [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fub14_tr_short.png](fntpic/u8g2_font_fub14_tr_short.png) u8g2_font_fub14_tr [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fub14_tn_short.png](fntpic/u8g2_font_fub14_tn_short.png) u8g2_font_fub14_tn [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fub14_t_symbol_short.png](fntpic/u8g2_font_fub14_t_symbol_short.png) u8g2_font_fub14_t_symbol [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fur14_tf_short.png](fntpic/u8g2_font_fur14_tf_short.png) u8g2_font_fur14_tf [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fur14_tr_short.png](fntpic/u8g2_font_fur14_tr_short.png) u8g2_font_fur14_tr [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fur14_tn_short.png](fntpic/u8g2_font_fur14_tn_short.png) u8g2_font_fur14_tn [Free Universal](fntgrpfreeuniversal)
![fntpic/u8g2_font_fur14_t_symbol_short.png](fntpic/u8g2_font_fur14_t_symbol_short.png) u8g2_font_fur14_t_symbol [Free Universal](fntgrpfreeuniversal)
## 15 Pixel Height
![fntpic/u8g2_font_spleen12x24_mf_short.png](fntpic/u8g2_font_spleen12x24_mf_short.png) u8g2_font_spleen12x24_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen12x24_mr_short.png](fntpic/u8g2_font_spleen12x24_mr_short.png) u8g2_font_spleen12x24_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen12x24_mu_short.png](fntpic/u8g2_font_spleen12x24_mu_short.png) u8g2_font_spleen12x24_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen12x24_me_short.png](fntpic/u8g2_font_spleen12x24_me_short.png) u8g2_font_spleen12x24_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_VCR_OSD_tf_short.png](fntpic/u8g2_font_VCR_OSD_tf_short.png) u8g2_font_VCR_OSD_tf [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_tr_short.png](fntpic/u8g2_font_VCR_OSD_tr_short.png) u8g2_font_VCR_OSD_tr [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_tn_short.png](fntpic/u8g2_font_VCR_OSD_tn_short.png) u8g2_font_VCR_OSD_tn [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_tu_short.png](fntpic/u8g2_font_VCR_OSD_tu_short.png) u8g2_font_VCR_OSD_tu [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mf_short.png](fntpic/u8g2_font_VCR_OSD_mf_short.png) u8g2_font_VCR_OSD_mf [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mr_short.png](fntpic/u8g2_font_VCR_OSD_mr_short.png) u8g2_font_VCR_OSD_mr [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mn_short.png](fntpic/u8g2_font_VCR_OSD_mn_short.png) u8g2_font_VCR_OSD_mn [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mu_short.png](fntpic/u8g2_font_VCR_OSD_mu_short.png) u8g2_font_VCR_OSD_mu [dafont](fntgrpdafont)
![fntpic/u8g2_font_crox3tb_tn_short.png](fntpic/u8g2_font_crox3tb_tn_short.png) u8g2_font_crox3tb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3t_tn_short.png](fntpic/u8g2_font_crox3t_tn_short.png) u8g2_font_crox3t_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_courB18_tf_short.png](fntpic/u8g2_font_courB18_tf_short.png) u8g2_font_courB18_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courB18_tr_short.png](fntpic/u8g2_font_courB18_tr_short.png) u8g2_font_courB18_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courB18_tn_short.png](fntpic/u8g2_font_courB18_tn_short.png) u8g2_font_courB18_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_lubB14_tf_short.png](fntpic/u8g2_font_lubB14_tf_short.png) u8g2_font_lubB14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubB14_tr_short.png](fntpic/u8g2_font_lubB14_tr_short.png) u8g2_font_lubB14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubB14_tn_short.png](fntpic/u8g2_font_lubB14_tn_short.png) u8g2_font_lubB14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubB14_te_short.png](fntpic/u8g2_font_lubB14_te_short.png) u8g2_font_lubB14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI14_tf_short.png](fntpic/u8g2_font_lubBI14_tf_short.png) u8g2_font_lubBI14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI14_tr_short.png](fntpic/u8g2_font_lubBI14_tr_short.png) u8g2_font_lubBI14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI14_tn_short.png](fntpic/u8g2_font_lubBI14_tn_short.png) u8g2_font_lubBI14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubBI14_te_short.png](fntpic/u8g2_font_lubBI14_te_short.png) u8g2_font_lubBI14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI14_tf_short.png](fntpic/u8g2_font_lubI14_tf_short.png) u8g2_font_lubI14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI14_tr_short.png](fntpic/u8g2_font_lubI14_tr_short.png) u8g2_font_lubI14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI14_tn_short.png](fntpic/u8g2_font_lubI14_tn_short.png) u8g2_font_lubI14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubI14_te_short.png](fntpic/u8g2_font_lubI14_te_short.png) u8g2_font_lubI14_te [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR14_tf_short.png](fntpic/u8g2_font_lubR14_tf_short.png) u8g2_font_lubR14_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR14_tr_short.png](fntpic/u8g2_font_lubR14_tr_short.png) u8g2_font_lubR14_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR14_tn_short.png](fntpic/u8g2_font_lubR14_tn_short.png) u8g2_font_lubR14_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_lubR14_te_short.png](fntpic/u8g2_font_lubR14_te_short.png) u8g2_font_lubR14_te [lucida](fntgrplucida)
## 16 Pixel Height
![fntpic/u8g2_font_10x20_tn_short.png](fntpic/u8g2_font_10x20_tn_short.png) u8g2_font_10x20_tn [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_mn_short.png](fntpic/u8g2_font_10x20_mn_short.png) u8g2_font_10x20_mn [X11](fntgrpx11)
![fntpic/u8g2_font_open_iconic_all_2x_t_short.png](fntpic/u8g2_font_open_iconic_all_2x_t_short.png) u8g2_font_open_iconic_all_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_app_2x_t_short.png](fntpic/u8g2_font_open_iconic_app_2x_t_short.png) u8g2_font_open_iconic_app_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_check_2x_t_short.png](fntpic/u8g2_font_open_iconic_check_2x_t_short.png) u8g2_font_open_iconic_check_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_email_2x_t_short.png](fntpic/u8g2_font_open_iconic_email_2x_t_short.png) u8g2_font_open_iconic_email_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_embedded_2x_t_short.png](fntpic/u8g2_font_open_iconic_embedded_2x_t_short.png) u8g2_font_open_iconic_embedded_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_gui_2x_t_short.png](fntpic/u8g2_font_open_iconic_gui_2x_t_short.png) u8g2_font_open_iconic_gui_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_human_2x_t_short.png](fntpic/u8g2_font_open_iconic_human_2x_t_short.png) u8g2_font_open_iconic_human_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_mime_2x_t_short.png](fntpic/u8g2_font_open_iconic_mime_2x_t_short.png) u8g2_font_open_iconic_mime_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_play_2x_t_short.png](fntpic/u8g2_font_open_iconic_play_2x_t_short.png) u8g2_font_open_iconic_play_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_text_2x_t_short.png](fntpic/u8g2_font_open_iconic_text_2x_t_short.png) u8g2_font_open_iconic_text_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_thing_2x_t_short.png](fntpic/u8g2_font_open_iconic_thing_2x_t_short.png) u8g2_font_open_iconic_thing_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_weather_2x_t_short.png](fntpic/u8g2_font_open_iconic_weather_2x_t_short.png) u8g2_font_open_iconic_weather_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_www_2x_t_short.png](fntpic/u8g2_font_open_iconic_www_2x_t_short.png) u8g2_font_open_iconic_www_2x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_streamline_interface_essential_text_t_short.png](fntpic/u8g2_font_streamline_interface_essential_text_t_short.png) u8g2_font_streamline_interface_essential_text_t [streamline](fntgrpstreamline)
![fntpic/u8g2_font_callite24_tr_short.png](fntpic/u8g2_font_callite24_tr_short.png) u8g2_font_callite24_tr [Integrated Mapping Ltd](fntgrpim)
![fntpic/u8g2_font_crox3cb_tn_short.png](fntpic/u8g2_font_crox3cb_tn_short.png) u8g2_font_crox3cb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3cb_mn_short.png](fntpic/u8g2_font_crox3cb_mn_short.png) u8g2_font_crox3cb_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3c_tn_short.png](fntpic/u8g2_font_crox3c_tn_short.png) u8g2_font_crox3c_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3c_mn_short.png](fntpic/u8g2_font_crox3c_mn_short.png) u8g2_font_crox3c_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3hb_tn_short.png](fntpic/u8g2_font_crox3hb_tn_short.png) u8g2_font_crox3hb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3h_tn_short.png](fntpic/u8g2_font_crox3h_tn_short.png) u8g2_font_crox3h_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4tb_tn_short.png](fntpic/u8g2_font_crox4tb_tn_short.png) u8g2_font_crox4tb_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox4t_tn_short.png](fntpic/u8g2_font_crox4t_tn_short.png) u8g2_font_crox4t_tn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox5tb_tf_short.png](fntpic/u8g2_font_crox5tb_tf_short.png) u8g2_font_crox5tb_tf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox5tb_tr_short.png](fntpic/u8g2_font_crox5tb_tr_short.png) u8g2_font_crox5tb_tr [crox](fntgrpcrox)
![fntpic/u8g2_font_crox5t_tf_short.png](fntpic/u8g2_font_crox5t_tf_short.png) u8g2_font_crox5t_tf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox5t_tr_short.png](fntpic/u8g2_font_crox5t_tr_short.png) u8g2_font_crox5t_tr [crox](fntgrpcrox)
![fntpic/u8g2_font_inr16_mf_short.png](fntpic/u8g2_font_inr16_mf_short.png) u8g2_font_inr16_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr16_mr_short.png](fntpic/u8g2_font_inr16_mr_short.png) u8g2_font_inr16_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr16_mn_short.png](fntpic/u8g2_font_inr16_mn_short.png) u8g2_font_inr16_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb16_mf_short.png](fntpic/u8g2_font_inb16_mf_short.png) u8g2_font_inb16_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb16_mr_short.png](fntpic/u8g2_font_inb16_mr_short.png) u8g2_font_inb16_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb16_mn_short.png](fntpic/u8g2_font_inb16_mn_short.png) u8g2_font_inb16_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_logisoso16_tf_short.png](fntpic/u8g2_font_logisoso16_tf_short.png) u8g2_font_logisoso16_tf [Logisoso](fntgrplogisoso)
![fntpic/u8g2_font_logisoso16_tr_short.png](fntpic/u8g2_font_logisoso16_tr_short.png) u8g2_font_logisoso16_tr [Logisoso](fntgrplogisoso)
![fntpic/u8g2_font_logisoso16_tn_short.png](fntpic/u8g2_font_logisoso16_tn_short.png) u8g2_font_logisoso16_tn [Logisoso](fntgrplogisoso)
+938
View File
@@ -0,0 +1,938 @@
[tocstart]: # (toc start)
* [U8g2 Font List](#u8g2-font-list)
* [U8g2 Font Names](#u8g2-font-names)
* [U8g2 Fonts, Capital A Height 3..8](#u8g2-fonts-capital-a-height-38)
* [3 Pixel Height](#3-pixel-height)
* [4 Pixel Height](#4-pixel-height)
* [5 Pixel Height](#5-pixel-height)
* [6 Pixel Height](#6-pixel-height)
* [7 Pixel Height](#7-pixel-height)
* [8 Pixel Height](#8-pixel-height)
[tocend]: # (toc end)
# U8g2 Font List
* Font List 3-8 Pixel Height (this page)
* [Font List 9-12 Pixel Height](fntlist12)
* [Font List 13-16 Pixel Height](fntlist16)
* [Font List 17-99 Pixel Height](fntlist99)
# U8g2 Font Names
```
<prefix> '_' <name> '_' <purpose> <char set>
```
| `<purpose>` | Description |
|---------------------|---------------------|
| `t` | Transparent font, Do not use a background color. |
| `h` | All glyphs have common height. |
| `m` | All glyphs have common height and width (monospace). |
| `8` | All glyphs fit into a 8x8 pixel box. |
| `<char set>` | Description |
|---------------------|-----------------|
| `f` | The font includes up to 256 glyphs. |
| `r` | Only glyphs on the range of the ASCII codes 32 to 127 are included in the font. |
| `u` | Only glyphs on the range of the ASCII codes 32 to 95 (uppercase chars) are included in the font. |
| `n` | Only numbers and extra glyphs for writing date and time strings are included in the font. |
| ... | Other custom character list.
# U8g2 Fonts, Capital A Height 3..8
## 3 Pixel Height
![fntpic/u8g2_font_minimal3x3_tu_short.png](fntpic/u8g2_font_minimal3x3_tu_short.png) u8g2_font_minimal3x3_tu [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_3x3basic_tr_short.png](fntpic/u8g2_font_3x3basic_tr_short.png) u8g2_font_3x3basic_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_pearfont_tr_short.png](fntpic/u8g2_font_pearfont_tr_short.png) u8g2_font_pearfont_tr [dafont](fntgrpdafont)
## 4 Pixel Height
![fntpic/u8g2_font_u8glib_4_tf_short.png](fntpic/u8g2_font_u8glib_4_tf_short.png) u8g2_font_u8glib_4_tf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_u8glib_4_tr_short.png](fntpic/u8g2_font_u8glib_4_tr_short.png) u8g2_font_u8glib_4_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_u8glib_4_hf_short.png](fntpic/u8g2_font_u8glib_4_hf_short.png) u8g2_font_u8glib_4_hf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_u8glib_4_hr_short.png](fntpic/u8g2_font_u8glib_4_hr_short.png) u8g2_font_u8glib_4_hr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny_gk_tr_short.png](fntpic/u8g2_font_tiny_gk_tr_short.png) u8g2_font_tiny_gk_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_threepix_tr_short.png](fntpic/u8g2_font_threepix_tr_short.png) u8g2_font_threepix_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_eventhrees_tr_short.png](fntpic/u8g2_font_eventhrees_tr_short.png) u8g2_font_eventhrees_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_fourmat_tf_short.png](fntpic/u8g2_font_fourmat_tf_short.png) u8g2_font_fourmat_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_fourmat_tr_short.png](fntpic/u8g2_font_fourmat_tr_short.png) u8g2_font_fourmat_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_fourmat_te_short.png](fntpic/u8g2_font_fourmat_te_short.png) u8g2_font_fourmat_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_p01type_tf_short.png](fntpic/u8g2_font_p01type_tf_short.png) u8g2_font_p01type_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_p01type_tr_short.png](fntpic/u8g2_font_p01type_tr_short.png) u8g2_font_p01type_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_p01type_tn_short.png](fntpic/u8g2_font_p01type_tn_short.png) u8g2_font_p01type_tn [Fontstruct](fntgrpfontstruct)
## 5 Pixel Height
![fntpic/u8g2_font_m2icon_5_tf_short.png](fntpic/u8g2_font_m2icon_5_tf_short.png) u8g2_font_m2icon_5_tf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5_tf_short.png](fntpic/u8g2_font_tiny5_tf_short.png) u8g2_font_tiny5_tf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5_tr_short.png](fntpic/u8g2_font_tiny5_tr_short.png) u8g2_font_tiny5_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5_te_short.png](fntpic/u8g2_font_tiny5_te_short.png) u8g2_font_tiny5_te [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5_t_all_short.png](fntpic/u8g2_font_tiny5_t_all_short.png) u8g2_font_tiny5_t_all [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5duo_tf_short.png](fntpic/u8g2_font_tiny5duo_tf_short.png) u8g2_font_tiny5duo_tf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5duo_tr_short.png](fntpic/u8g2_font_tiny5duo_tr_short.png) u8g2_font_tiny5duo_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5duo_te_short.png](fntpic/u8g2_font_tiny5duo_te_short.png) u8g2_font_tiny5duo_te [U8glib](fntgrpu8g)
![fntpic/u8g2_font_tiny5duo_t_all_short.png](fntpic/u8g2_font_tiny5duo_t_all_short.png) u8g2_font_tiny5duo_t_all [U8glib](fntgrpu8g)
![fntpic/u8g2_font_04b_03b_tr_short.png](fntpic/u8g2_font_04b_03b_tr_short.png) u8g2_font_04b_03b_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_04b_03_tr_short.png](fntpic/u8g2_font_04b_03_tr_short.png) u8g2_font_04b_03_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_micro_tr_short.png](fntpic/u8g2_font_micro_tr_short.png) u8g2_font_micro_tr [X11](fntgrpx11)
![fntpic/u8g2_font_micro_tn_short.png](fntpic/u8g2_font_micro_tn_short.png) u8g2_font_micro_tn [X11](fntgrpx11)
![fntpic/u8g2_font_micro_mr_short.png](fntpic/u8g2_font_micro_mr_short.png) u8g2_font_micro_mr [X11](fntgrpx11)
![fntpic/u8g2_font_micro_mn_short.png](fntpic/u8g2_font_micro_mn_short.png) u8g2_font_micro_mn [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_tf_short.png](fntpic/u8g2_font_4x6_tf_short.png) u8g2_font_4x6_tf [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_tr_short.png](fntpic/u8g2_font_4x6_tr_short.png) u8g2_font_4x6_tr [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_tn_short.png](fntpic/u8g2_font_4x6_tn_short.png) u8g2_font_4x6_tn [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_mf_short.png](fntpic/u8g2_font_4x6_mf_short.png) u8g2_font_4x6_mf [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_mr_short.png](fntpic/u8g2_font_4x6_mr_short.png) u8g2_font_4x6_mr [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_mn_short.png](fntpic/u8g2_font_4x6_mn_short.png) u8g2_font_4x6_mn [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_t_cyrillic_short.png](fntpic/u8g2_font_4x6_t_cyrillic_short.png) u8g2_font_4x6_t_cyrillic [X11](fntgrpx11)
![fntpic/u8g2_font_tom_thumb_4x6_t_all_short.png](fntpic/u8g2_font_tom_thumb_4x6_t_all_short.png) u8g2_font_tom_thumb_4x6_t_all [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_tf_short.png](fntpic/u8g2_font_tom_thumb_4x6_tf_short.png) u8g2_font_tom_thumb_4x6_tf [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_tr_short.png](fntpic/u8g2_font_tom_thumb_4x6_tr_short.png) u8g2_font_tom_thumb_4x6_tr [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_tn_short.png](fntpic/u8g2_font_tom_thumb_4x6_tn_short.png) u8g2_font_tom_thumb_4x6_tn [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_te_short.png](fntpic/u8g2_font_tom_thumb_4x6_te_short.png) u8g2_font_tom_thumb_4x6_te [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_mf_short.png](fntpic/u8g2_font_tom_thumb_4x6_mf_short.png) u8g2_font_tom_thumb_4x6_mf [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_mr_short.png](fntpic/u8g2_font_tom_thumb_4x6_mr_short.png) u8g2_font_tom_thumb_4x6_mr [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_mn_short.png](fntpic/u8g2_font_tom_thumb_4x6_mn_short.png) u8g2_font_tom_thumb_4x6_mn [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_me_short.png](fntpic/u8g2_font_tom_thumb_4x6_me_short.png) u8g2_font_tom_thumb_4x6_me [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tinytim_tf_short.png](fntpic/u8g2_font_tinytim_tf_short.png) u8g2_font_tinytim_tf [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_tinytim_tr_short.png](fntpic/u8g2_font_tinytim_tr_short.png) u8g2_font_tinytim_tr [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_tinytim_tn_short.png](fntpic/u8g2_font_tinytim_tn_short.png) u8g2_font_tinytim_tn [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_tiny_simon_tr_short.png](fntpic/u8g2_font_tiny_simon_tr_short.png) u8g2_font_tiny_simon_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tiny_simon_mr_short.png](fntpic/u8g2_font_tiny_simon_mr_short.png) u8g2_font_tiny_simon_mr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_smolfont_tf_short.png](fntpic/u8g2_font_smolfont_tf_short.png) u8g2_font_smolfont_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_smolfont_tr_short.png](fntpic/u8g2_font_smolfont_tr_short.png) u8g2_font_smolfont_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_smolfont_te_short.png](fntpic/u8g2_font_smolfont_te_short.png) u8g2_font_smolfont_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tinyunicode_tf_short.png](fntpic/u8g2_font_tinyunicode_tf_short.png) u8g2_font_tinyunicode_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tinyunicode_tr_short.png](fntpic/u8g2_font_tinyunicode_tr_short.png) u8g2_font_tinyunicode_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tinyunicode_te_short.png](fntpic/u8g2_font_tinyunicode_te_short.png) u8g2_font_tinyunicode_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_micropixel_tf_short.png](fntpic/u8g2_font_micropixel_tf_short.png) u8g2_font_micropixel_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_micropixel_tr_short.png](fntpic/u8g2_font_micropixel_tr_short.png) u8g2_font_micropixel_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_micropixel_te_short.png](fntpic/u8g2_font_micropixel_te_short.png) u8g2_font_micropixel_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tinypixie2_tr_short.png](fntpic/u8g2_font_tinypixie2_tr_short.png) u8g2_font_tinypixie2_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_standardized3x5_tr_short.png](fntpic/u8g2_font_standardized3x5_tr_short.png) u8g2_font_standardized3x5_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_fivepx_tr_short.png](fntpic/u8g2_font_fivepx_tr_short.png) u8g2_font_fivepx_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_3x5im_tr_short.png](fntpic/u8g2_font_3x5im_tr_short.png) u8g2_font_3x5im_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_3x5im_te_short.png](fntpic/u8g2_font_3x5im_te_short.png) u8g2_font_3x5im_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_3x5im_mr_short.png](fntpic/u8g2_font_3x5im_mr_short.png) u8g2_font_3x5im_mr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_wedge_tr_short.png](fntpic/u8g2_font_wedge_tr_short.png) u8g2_font_wedge_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_kibibyte_tr_short.png](fntpic/u8g2_font_kibibyte_tr_short.png) u8g2_font_kibibyte_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_kibibyte_te_short.png](fntpic/u8g2_font_kibibyte_te_short.png) u8g2_font_kibibyte_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tinyface_tr_short.png](fntpic/u8g2_font_tinyface_tr_short.png) u8g2_font_tinyface_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_tinyface_te_short.png](fntpic/u8g2_font_tinyface_te_short.png) u8g2_font_tinyface_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_baby_tf_short.png](fntpic/u8g2_font_baby_tf_short.png) u8g2_font_baby_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_baby_tr_short.png](fntpic/u8g2_font_baby_tr_short.png) u8g2_font_baby_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_baby_tn_short.png](fntpic/u8g2_font_baby_tn_short.png) u8g2_font_baby_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_blipfest_07_tr_short.png](fntpic/u8g2_font_blipfest_07_tr_short.png) u8g2_font_blipfest_07_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_blipfest_07_tn_short.png](fntpic/u8g2_font_blipfest_07_tn_short.png) u8g2_font_blipfest_07_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chikita_tf_short.png](fntpic/u8g2_font_chikita_tf_short.png) u8g2_font_chikita_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chikita_tr_short.png](fntpic/u8g2_font_chikita_tr_short.png) u8g2_font_chikita_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chikita_tn_short.png](fntpic/u8g2_font_chikita_tn_short.png) u8g2_font_chikita_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_pixelle_micro_tr_short.png](fntpic/u8g2_font_pixelle_micro_tr_short.png) u8g2_font_pixelle_micro_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_pixelle_micro_tn_short.png](fntpic/u8g2_font_pixelle_micro_tn_short.png) u8g2_font_pixelle_micro_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_trixel_square_tf_short.png](fntpic/u8g2_font_trixel_square_tf_short.png) u8g2_font_trixel_square_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_trixel_square_tr_short.png](fntpic/u8g2_font_trixel_square_tr_short.png) u8g2_font_trixel_square_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_trixel_square_tn_short.png](fntpic/u8g2_font_trixel_square_tn_short.png) u8g2_font_trixel_square_tn [Fontstruct](fntgrpfontstruct)
## 6 Pixel Height
![fntpic/u8g2_font_squeezed_r6_tr_short.png](fntpic/u8g2_font_squeezed_r6_tr_short.png) u8g2_font_squeezed_r6_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_r6_tn_short.png](fntpic/u8g2_font_squeezed_r6_tn_short.png) u8g2_font_squeezed_r6_tn [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_b6_tr_short.png](fntpic/u8g2_font_squeezed_b6_tr_short.png) u8g2_font_squeezed_b6_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_b6_tn_short.png](fntpic/u8g2_font_squeezed_b6_tn_short.png) u8g2_font_squeezed_b6_tn [U8glib](fntgrpu8g)
![fntpic/u8g2_font_5x7_tf_short.png](fntpic/u8g2_font_5x7_tf_short.png) u8g2_font_5x7_tf [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_tr_short.png](fntpic/u8g2_font_5x7_tr_short.png) u8g2_font_5x7_tr [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_tn_short.png](fntpic/u8g2_font_5x7_tn_short.png) u8g2_font_5x7_tn [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_mf_short.png](fntpic/u8g2_font_5x7_mf_short.png) u8g2_font_5x7_mf [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_mr_short.png](fntpic/u8g2_font_5x7_mr_short.png) u8g2_font_5x7_mr [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_mn_short.png](fntpic/u8g2_font_5x7_mn_short.png) u8g2_font_5x7_mn [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_t_cyrillic_short.png](fntpic/u8g2_font_5x7_t_cyrillic_short.png) u8g2_font_5x7_t_cyrillic [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_tf_short.png](fntpic/u8g2_font_5x8_tf_short.png) u8g2_font_5x8_tf [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_tr_short.png](fntpic/u8g2_font_5x8_tr_short.png) u8g2_font_5x8_tr [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_mf_short.png](fntpic/u8g2_font_5x8_mf_short.png) u8g2_font_5x8_mf [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_mr_short.png](fntpic/u8g2_font_5x8_mr_short.png) u8g2_font_5x8_mr [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_t_cyrillic_short.png](fntpic/u8g2_font_5x8_t_cyrillic_short.png) u8g2_font_5x8_t_cyrillic [X11](fntgrpx11)
![fntpic/u8g2_font_profont10_tf_short.png](fntpic/u8g2_font_profont10_tf_short.png) u8g2_font_profont10_tf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_tr_short.png](fntpic/u8g2_font_profont10_tr_short.png) u8g2_font_profont10_tr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_tn_short.png](fntpic/u8g2_font_profont10_tn_short.png) u8g2_font_profont10_tn [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_mf_short.png](fntpic/u8g2_font_profont10_mf_short.png) u8g2_font_profont10_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_mr_short.png](fntpic/u8g2_font_profont10_mr_short.png) u8g2_font_profont10_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_mn_short.png](fntpic/u8g2_font_profont10_mn_short.png) u8g2_font_profont10_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_iranian_sans_8_t_all_short.png](fntpic/u8g2_font_iranian_sans_8_t_all_short.png) u8g2_font_iranian_sans_8_t_all [Persian](fntgrppersian)
![fntpic/u8g2_font_synchronizer_nbp_tf_short.png](fntpic/u8g2_font_synchronizer_nbp_tf_short.png) u8g2_font_synchronizer_nbp_tf [NBP](fntgrpnbp)
![fntpic/u8g2_font_synchronizer_nbp_tr_short.png](fntpic/u8g2_font_synchronizer_nbp_tr_short.png) u8g2_font_synchronizer_nbp_tr [NBP](fntgrpnbp)
![fntpic/u8g2_font_synchronizer_nbp_tn_short.png](fntpic/u8g2_font_synchronizer_nbp_tn_short.png) u8g2_font_synchronizer_nbp_tn [NBP](fntgrpnbp)
![fntpic/u8g2_font_smallsimple_tr_short.png](fntpic/u8g2_font_smallsimple_tr_short.png) u8g2_font_smallsimple_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_smallsimple_te_short.png](fntpic/u8g2_font_smallsimple_te_short.png) u8g2_font_smallsimple_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_PixelTheatre_tr_short.png](fntpic/u8g2_font_PixelTheatre_tr_short.png) u8g2_font_PixelTheatre_tr [JapanYoshi](fntgrpjapanyoshi)
![fntpic/u8g2_font_PixelTheatre_te_short.png](fntpic/u8g2_font_PixelTheatre_te_short.png) u8g2_font_PixelTheatre_te [JapanYoshi](fntgrpjapanyoshi)
![fntpic/u8g2_font_spleen5x8_mf_short.png](fntpic/u8g2_font_spleen5x8_mf_short.png) u8g2_font_spleen5x8_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen5x8_mr_short.png](fntpic/u8g2_font_spleen5x8_mr_short.png) u8g2_font_spleen5x8_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen5x8_mu_short.png](fntpic/u8g2_font_spleen5x8_mu_short.png) u8g2_font_spleen5x8_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen5x8_me_short.png](fntpic/u8g2_font_spleen5x8_me_short.png) u8g2_font_spleen5x8_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_pixelpoiiz_tr_short.png](fntpic/u8g2_font_pixelpoiiz_tr_short.png) u8g2_font_pixelpoiiz_tr [dafont](fntgrpdafont)
![fntpic/u8g2_font_boutique_bitmap_7x7_tf_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_tf_short.png) u8g2_font_boutique_bitmap_7x7_tf [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_tr_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_tr_short.png) u8g2_font_boutique_bitmap_7x7_tr [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_tn_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_tn_short.png) u8g2_font_boutique_bitmap_7x7_tn [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_te_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_te_short.png) u8g2_font_boutique_bitmap_7x7_te [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_all_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_all_short.png) u8g2_font_boutique_bitmap_7x7_t_all [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese1_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese1_short.png) u8g2_font_boutique_bitmap_7x7_t_chinese1 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese2_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese2_short.png) u8g2_font_boutique_bitmap_7x7_t_chinese2 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese3_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_chinese3_short.png) u8g2_font_boutique_bitmap_7x7_t_chinese3 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312_short.png) u8g2_font_boutique_bitmap_7x7_t_gb2312 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312a_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312a_short.png) u8g2_font_boutique_bitmap_7x7_t_gb2312a [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312b_short.png](fntpic/u8g2_font_boutique_bitmap_7x7_t_gb2312b_short.png) u8g2_font_boutique_bitmap_7x7_t_gb2312b [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_tf_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_tf_short.png) u8g2_font_boutique_bitmap_9x9_tf [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_tr_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_tr_short.png) u8g2_font_boutique_bitmap_9x9_tr [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_tn_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_tn_short.png) u8g2_font_boutique_bitmap_9x9_tn [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_te_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_te_short.png) u8g2_font_boutique_bitmap_9x9_te [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_all_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_all_short.png) u8g2_font_boutique_bitmap_9x9_t_all [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese1_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese1_short.png) u8g2_font_boutique_bitmap_9x9_t_chinese1 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese2_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese2_short.png) u8g2_font_boutique_bitmap_9x9_t_chinese2 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese3_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_chinese3_short.png) u8g2_font_boutique_bitmap_9x9_t_chinese3 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312_short.png) u8g2_font_boutique_bitmap_9x9_t_gb2312 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312a_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312a_short.png) u8g2_font_boutique_bitmap_9x9_t_gb2312a [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312b_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_t_gb2312b_short.png) u8g2_font_boutique_bitmap_9x9_t_gb2312b [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_tf_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_tf_short.png) u8g2_font_boutique_bitmap_9x9_bold_tf [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_tr_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_tr_short.png) u8g2_font_boutique_bitmap_9x9_bold_tr [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_tn_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_tn_short.png) u8g2_font_boutique_bitmap_9x9_bold_tn [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_te_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_te_short.png) u8g2_font_boutique_bitmap_9x9_bold_te [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_all_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_all_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_all [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese1_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese1_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_chinese1 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese2_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese2_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_chinese2 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese3_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_chinese3_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_chinese3 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_gb2312 [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312a_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312a_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_gb2312a [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312b_short.png](fntpic/u8g2_font_boutique_bitmap_9x9_bold_t_gb2312b_short.png) u8g2_font_boutique_bitmap_9x9_bold_t_gb2312b [BoutiqueBitmap](fntgrpbb)
![fntpic/u8g2_font_b10_t_japanese1_short.png](fntpic/u8g2_font_b10_t_japanese1_short.png) u8g2_font_b10_t_japanese1 [efont](fntgrpefont)
![fntpic/u8g2_font_b10_t_japanese2_short.png](fntpic/u8g2_font_b10_t_japanese2_short.png) u8g2_font_b10_t_japanese2 [efont](fntgrpefont)
![fntpic/u8g2_font_b10_b_t_japanese1_short.png](fntpic/u8g2_font_b10_b_t_japanese1_short.png) u8g2_font_b10_b_t_japanese1 [efont](fntgrpefont)
![fntpic/u8g2_font_b10_b_t_japanese2_short.png](fntpic/u8g2_font_b10_b_t_japanese2_short.png) u8g2_font_b10_b_t_japanese2 [efont](fntgrpefont)
![fntpic/u8g2_font_chroma48medium8_8r_short.png](fntpic/u8g2_font_chroma48medium8_8r_short.png) u8g2_font_chroma48medium8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_chroma48medium8_8n_short.png](fntpic/u8g2_font_chroma48medium8_8n_short.png) u8g2_font_chroma48medium8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_chroma48medium8_8u_short.png](fntpic/u8g2_font_chroma48medium8_8u_short.png) u8g2_font_chroma48medium8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_courB08_tf_short.png](fntpic/u8g2_font_courB08_tf_short.png) u8g2_font_courB08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courB08_tr_short.png](fntpic/u8g2_font_courB08_tr_short.png) u8g2_font_courB08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courB08_tn_short.png](fntpic/u8g2_font_courB08_tn_short.png) u8g2_font_courB08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courR08_tf_short.png](fntpic/u8g2_font_courR08_tf_short.png) u8g2_font_courR08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courR08_tr_short.png](fntpic/u8g2_font_courR08_tr_short.png) u8g2_font_courR08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_courR08_tn_short.png](fntpic/u8g2_font_courR08_tn_short.png) u8g2_font_courR08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_pcsenior_8f_short.png](fntpic/u8g2_font_pcsenior_8f_short.png) u8g2_font_pcsenior_8f [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pcsenior_8r_short.png](fntpic/u8g2_font_pcsenior_8r_short.png) u8g2_font_pcsenior_8r [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pcsenior_8n_short.png](fntpic/u8g2_font_pcsenior_8n_short.png) u8g2_font_pcsenior_8n [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pcsenior_8u_short.png](fntpic/u8g2_font_pcsenior_8u_short.png) u8g2_font_pcsenior_8u [Codeman38](fntgrpcodeman38)
## 7 Pixel Height
![fntpic/u8g2_font_m2icon_7_tf_short.png](fntpic/u8g2_font_m2icon_7_tf_short.png) u8g2_font_m2icon_7_tf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_r7_tr_short.png](fntpic/u8g2_font_squeezed_r7_tr_short.png) u8g2_font_squeezed_r7_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_r7_tn_short.png](fntpic/u8g2_font_squeezed_r7_tn_short.png) u8g2_font_squeezed_r7_tn [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_b7_tr_short.png](fntpic/u8g2_font_squeezed_b7_tr_short.png) u8g2_font_squeezed_b7_tr [U8glib](fntgrpu8g)
![fntpic/u8g2_font_squeezed_b7_tn_short.png](fntpic/u8g2_font_squeezed_b7_tn_short.png) u8g2_font_squeezed_b7_tn [U8glib](fntgrpu8g)
![fntpic/u8g2_font_5x8_tn_short.png](fntpic/u8g2_font_5x8_tn_short.png) u8g2_font_5x8_tn [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_mn_short.png](fntpic/u8g2_font_5x8_mn_short.png) u8g2_font_5x8_mn [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_tf_short.png](fntpic/u8g2_font_6x10_tf_short.png) u8g2_font_6x10_tf [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_tr_short.png](fntpic/u8g2_font_6x10_tr_short.png) u8g2_font_6x10_tr [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_mf_short.png](fntpic/u8g2_font_6x10_mf_short.png) u8g2_font_6x10_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_mr_short.png](fntpic/u8g2_font_6x10_mr_short.png) u8g2_font_6x10_mr [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_tf_short.png](fntpic/u8g2_font_6x12_tf_short.png) u8g2_font_6x12_tf [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_tr_short.png](fntpic/u8g2_font_6x12_tr_short.png) u8g2_font_6x12_tr [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_te_short.png](fntpic/u8g2_font_6x12_te_short.png) u8g2_font_6x12_te [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_mf_short.png](fntpic/u8g2_font_6x12_mf_short.png) u8g2_font_6x12_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_mr_short.png](fntpic/u8g2_font_6x12_mr_short.png) u8g2_font_6x12_mr [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_me_short.png](fntpic/u8g2_font_6x12_me_short.png) u8g2_font_6x12_me [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_t_symbols_short.png](fntpic/u8g2_font_6x12_t_symbols_short.png) u8g2_font_6x12_t_symbols [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_m_symbols_short.png](fntpic/u8g2_font_6x12_m_symbols_short.png) u8g2_font_6x12_m_symbols [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_t_cyrillic_short.png](fntpic/u8g2_font_6x12_t_cyrillic_short.png) u8g2_font_6x12_t_cyrillic [X11](fntgrpx11)
![fntpic/u8g2_font_siji_t_6x10_short.png](fntpic/u8g2_font_siji_t_6x10_short.png) u8g2_font_siji_t_6x10 [Siji Icon Font](fntgrpsiji)
![fntpic/u8g2_font_open_iconic_arrow_1x_t_short.png](fntpic/u8g2_font_open_iconic_arrow_1x_t_short.png) u8g2_font_open_iconic_arrow_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_other_1x_t_short.png](fntpic/u8g2_font_open_iconic_other_1x_t_short.png) u8g2_font_open_iconic_other_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_profont11_tf_short.png](fntpic/u8g2_font_profont11_tf_short.png) u8g2_font_profont11_tf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_tr_short.png](fntpic/u8g2_font_profont11_tr_short.png) u8g2_font_profont11_tr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_tn_short.png](fntpic/u8g2_font_profont11_tn_short.png) u8g2_font_profont11_tn [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_mf_short.png](fntpic/u8g2_font_profont11_mf_short.png) u8g2_font_profont11_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_mr_short.png](fntpic/u8g2_font_profont11_mr_short.png) u8g2_font_profont11_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_mn_short.png](fntpic/u8g2_font_profont11_mn_short.png) u8g2_font_profont11_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_iranian_sans_10_t_all_short.png](fntpic/u8g2_font_iranian_sans_10_t_all_short.png) u8g2_font_iranian_sans_10_t_all [Persian](fntgrppersian)
![fntpic/u8g2_font_mozart_nbp_tf_short.png](fntpic/u8g2_font_mozart_nbp_tf_short.png) u8g2_font_mozart_nbp_tf [NBP](fntgrpnbp)
![fntpic/u8g2_font_mozart_nbp_tr_short.png](fntpic/u8g2_font_mozart_nbp_tr_short.png) u8g2_font_mozart_nbp_tr [NBP](fntgrpnbp)
![fntpic/u8g2_font_mozart_nbp_tn_short.png](fntpic/u8g2_font_mozart_nbp_tn_short.png) u8g2_font_mozart_nbp_tn [NBP](fntgrpnbp)
![fntpic/u8g2_font_mozart_nbp_t_all_short.png](fntpic/u8g2_font_mozart_nbp_t_all_short.png) u8g2_font_mozart_nbp_t_all [NBP](fntgrpnbp)
![fntpic/u8g2_font_mozart_nbp_h_all_short.png](fntpic/u8g2_font_mozart_nbp_h_all_short.png) u8g2_font_mozart_nbp_h_all [NBP](fntgrpnbp)
![fntpic/u8g2_font_roentgen_nbp_tf_short.png](fntpic/u8g2_font_roentgen_nbp_tf_short.png) u8g2_font_roentgen_nbp_tf [NBP](fntgrpnbp)
![fntpic/u8g2_font_roentgen_nbp_tr_short.png](fntpic/u8g2_font_roentgen_nbp_tr_short.png) u8g2_font_roentgen_nbp_tr [NBP](fntgrpnbp)
![fntpic/u8g2_font_roentgen_nbp_tn_short.png](fntpic/u8g2_font_roentgen_nbp_tn_short.png) u8g2_font_roentgen_nbp_tn [NBP](fntgrpnbp)
![fntpic/u8g2_font_roentgen_nbp_t_all_short.png](fntpic/u8g2_font_roentgen_nbp_t_all_short.png) u8g2_font_roentgen_nbp_t_all [NBP](fntgrpnbp)
![fntpic/u8g2_font_roentgen_nbp_h_all_short.png](fntpic/u8g2_font_roentgen_nbp_h_all_short.png) u8g2_font_roentgen_nbp_h_all [NBP](fntgrpnbp)
![fntpic/u8g2_font_sandyforest_tr_short.png](fntpic/u8g2_font_sandyforest_tr_short.png) u8g2_font_sandyforest_tr [JayWright](fntgrpjaywright)
![fntpic/u8g2_font_sandyforest_tn_short.png](fntpic/u8g2_font_sandyforest_tn_short.png) u8g2_font_sandyforest_tn [JayWright](fntgrpjaywright)
![fntpic/u8g2_font_sandyforest_tu_short.png](fntpic/u8g2_font_sandyforest_tu_short.png) u8g2_font_sandyforest_tu [JayWright](fntgrpjaywright)
![fntpic/u8g2_font_resoledbold_tr_short.png](fntpic/u8g2_font_resoledbold_tr_short.png) u8g2_font_resoledbold_tr [JosephKnightcom](fntgrpjosephknightcom)
![fntpic/u8g2_font_resoledmedium_tr_short.png](fntpic/u8g2_font_resoledmedium_tr_short.png) u8g2_font_resoledmedium_tr [JosephKnightcom](fntgrpjosephknightcom)
![fntpic/u8g2_font_lord_mr_short.png](fntpic/u8g2_font_lord_mr_short.png) u8g2_font_lord_mr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_oskool_tf_short.png](fntpic/u8g2_font_oskool_tf_short.png) u8g2_font_oskool_tf [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_oskool_tr_short.png](fntpic/u8g2_font_oskool_tr_short.png) u8g2_font_oskool_tr [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_oskool_tn_short.png](fntpic/u8g2_font_oskool_tn_short.png) u8g2_font_oskool_tn [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_finderskeepers_tf_short.png](fntpic/u8g2_font_finderskeepers_tf_short.png) u8g2_font_finderskeepers_tf [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_finderskeepers_tr_short.png](fntpic/u8g2_font_finderskeepers_tr_short.png) u8g2_font_finderskeepers_tr [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_finderskeepers_tn_short.png](fntpic/u8g2_font_finderskeepers_tn_short.png) u8g2_font_finderskeepers_tn [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_sirclivethebold_tr_short.png](fntpic/u8g2_font_sirclivethebold_tr_short.png) u8g2_font_sirclivethebold_tr [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_sirclivethebold_tn_short.png](fntpic/u8g2_font_sirclivethebold_tn_short.png) u8g2_font_sirclivethebold_tn [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_sirclive_tr_short.png](fntpic/u8g2_font_sirclive_tr_short.png) u8g2_font_sirclive_tr [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_sirclive_tn_short.png](fntpic/u8g2_font_sirclive_tn_short.png) u8g2_font_sirclive_tn [GilesBooth](fntgrpgilesbooth)
![fntpic/u8g2_font_simple1_tf_short.png](fntpic/u8g2_font_simple1_tf_short.png) u8g2_font_simple1_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_simple1_tr_short.png](fntpic/u8g2_font_simple1_tr_short.png) u8g2_font_simple1_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_simple1_te_short.png](fntpic/u8g2_font_simple1_te_short.png) u8g2_font_simple1_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_likeminecraft_te_short.png](fntpic/u8g2_font_likeminecraft_te_short.png) u8g2_font_likeminecraft_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_heisans_tr_short.png](fntpic/u8g2_font_heisans_tr_short.png) u8g2_font_heisans_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_minicute_tr_short.png](fntpic/u8g2_font_minicute_tr_short.png) u8g2_font_minicute_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_minicute_te_short.png](fntpic/u8g2_font_minicute_te_short.png) u8g2_font_minicute_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_stylishcharm_tr_short.png](fntpic/u8g2_font_stylishcharm_tr_short.png) u8g2_font_stylishcharm_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_stylishcharm_te_short.png](fntpic/u8g2_font_stylishcharm_te_short.png) u8g2_font_stylishcharm_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_bpixel_tr_short.png](fntpic/u8g2_font_bpixel_tr_short.png) u8g2_font_bpixel_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_bpixel_te_short.png](fntpic/u8g2_font_bpixel_te_short.png) u8g2_font_bpixel_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_minuteconsole_mr_short.png](fntpic/u8g2_font_minuteconsole_mr_short.png) u8g2_font_minuteconsole_mr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_minuteconsole_tr_short.png](fntpic/u8g2_font_minuteconsole_tr_short.png) u8g2_font_minuteconsole_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_new3x9pixelfont_tf_short.png](fntpic/u8g2_font_new3x9pixelfont_tf_short.png) u8g2_font_new3x9pixelfont_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_new3x9pixelfont_tr_short.png](fntpic/u8g2_font_new3x9pixelfont_tr_short.png) u8g2_font_new3x9pixelfont_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_new3x9pixelfont_te_short.png](fntpic/u8g2_font_new3x9pixelfont_te_short.png) u8g2_font_new3x9pixelfont_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_IPAandRUSLCD_tf_short.png](fntpic/u8g2_font_IPAandRUSLCD_tf_short.png) u8g2_font_IPAandRUSLCD_tf [JapanYoshi](fntgrpjapanyoshi)
![fntpic/u8g2_font_IPAandRUSLCD_tr_short.png](fntpic/u8g2_font_IPAandRUSLCD_tr_short.png) u8g2_font_IPAandRUSLCD_tr [JapanYoshi](fntgrpjapanyoshi)
![fntpic/u8g2_font_IPAandRUSLCD_te_short.png](fntpic/u8g2_font_IPAandRUSLCD_te_short.png) u8g2_font_IPAandRUSLCD_te [JapanYoshi](fntgrpjapanyoshi)
![fntpic/u8g2_font_BitTypeWriter_tr_short.png](fntpic/u8g2_font_BitTypeWriter_tr_short.png) u8g2_font_BitTypeWriter_tr [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_BitTypeWriter_te_short.png](fntpic/u8g2_font_BitTypeWriter_te_short.png) u8g2_font_BitTypeWriter_te [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_Georgia7px_tf_short.png](fntpic/u8g2_font_Georgia7px_tf_short.png) u8g2_font_Georgia7px_tf [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_Georgia7px_tr_short.png](fntpic/u8g2_font_Georgia7px_tr_short.png) u8g2_font_Georgia7px_tr [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_Georgia7px_te_short.png](fntpic/u8g2_font_Georgia7px_te_short.png) u8g2_font_Georgia7px_te [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_NokiaSmallBold_tf_short.png](fntpic/u8g2_font_NokiaSmallBold_tf_short.png) u8g2_font_NokiaSmallBold_tf [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_NokiaSmallBold_tr_short.png](fntpic/u8g2_font_NokiaSmallBold_tr_short.png) u8g2_font_NokiaSmallBold_tr [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_NokiaSmallBold_te_short.png](fntpic/u8g2_font_NokiaSmallBold_te_short.png) u8g2_font_NokiaSmallBold_te [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_NokiaSmallPlain_tf_short.png](fntpic/u8g2_font_NokiaSmallPlain_tf_short.png) u8g2_font_NokiaSmallPlain_tf [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_NokiaSmallPlain_tr_short.png](fntpic/u8g2_font_NokiaSmallPlain_tr_short.png) u8g2_font_NokiaSmallPlain_tr [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_NokiaSmallPlain_te_short.png](fntpic/u8g2_font_NokiaSmallPlain_te_short.png) u8g2_font_NokiaSmallPlain_te [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_spleen5x8_mn_short.png](fntpic/u8g2_font_spleen5x8_mn_short.png) u8g2_font_spleen5x8_mn [Spleen](fntgrpspleen)
![fntpic/u8g2_font_nokiafc22_tf_short.png](fntpic/u8g2_font_nokiafc22_tf_short.png) u8g2_font_nokiafc22_tf [dafont](fntgrpdafont)
![fntpic/u8g2_font_nokiafc22_tr_short.png](fntpic/u8g2_font_nokiafc22_tr_short.png) u8g2_font_nokiafc22_tr [dafont](fntgrpdafont)
![fntpic/u8g2_font_nokiafc22_tn_short.png](fntpic/u8g2_font_nokiafc22_tn_short.png) u8g2_font_nokiafc22_tn [dafont](fntgrpdafont)
![fntpic/u8g2_font_nokiafc22_tu_short.png](fntpic/u8g2_font_nokiafc22_tu_short.png) u8g2_font_nokiafc22_tu [dafont](fntgrpdafont)
![fntpic/u8g2_font_b12_t_japanese1_short.png](fntpic/u8g2_font_b12_t_japanese1_short.png) u8g2_font_b12_t_japanese1 [efont](fntgrpefont)
![fntpic/u8g2_font_b12_t_japanese2_short.png](fntpic/u8g2_font_b12_t_japanese2_short.png) u8g2_font_b12_t_japanese2 [efont](fntgrpefont)
![fntpic/u8g2_font_b12_t_japanese3_short.png](fntpic/u8g2_font_b12_t_japanese3_short.png) u8g2_font_b12_t_japanese3 [efont](fntgrpefont)
![fntpic/u8g2_font_b12_b_t_japanese1_short.png](fntpic/u8g2_font_b12_b_t_japanese1_short.png) u8g2_font_b12_b_t_japanese1 [efont](fntgrpefont)
![fntpic/u8g2_font_b12_b_t_japanese2_short.png](fntpic/u8g2_font_b12_b_t_japanese2_short.png) u8g2_font_b12_b_t_japanese2 [efont](fntgrpefont)
![fntpic/u8g2_font_b12_b_t_japanese3_short.png](fntpic/u8g2_font_b12_b_t_japanese3_short.png) u8g2_font_b12_b_t_japanese3 [efont](fntgrpefont)
![fntpic/u8g2_font_artossans8_8r_short.png](fntpic/u8g2_font_artossans8_8r_short.png) u8g2_font_artossans8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artossans8_8n_short.png](fntpic/u8g2_font_artossans8_8n_short.png) u8g2_font_artossans8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artossans8_8u_short.png](fntpic/u8g2_font_artossans8_8u_short.png) u8g2_font_artossans8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artosserif8_8r_short.png](fntpic/u8g2_font_artosserif8_8r_short.png) u8g2_font_artosserif8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artosserif8_8n_short.png](fntpic/u8g2_font_artosserif8_8n_short.png) u8g2_font_artosserif8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artosserif8_8u_short.png](fntpic/u8g2_font_artosserif8_8u_short.png) u8g2_font_artosserif8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_saikyosansbold8_8n_short.png](fntpic/u8g2_font_saikyosansbold8_8n_short.png) u8g2_font_saikyosansbold8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_saikyosansbold8_8u_short.png](fntpic/u8g2_font_saikyosansbold8_8u_short.png) u8g2_font_saikyosansbold8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_torussansbold8_8r_short.png](fntpic/u8g2_font_torussansbold8_8r_short.png) u8g2_font_torussansbold8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_torussansbold8_8n_short.png](fntpic/u8g2_font_torussansbold8_8n_short.png) u8g2_font_torussansbold8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_torussansbold8_8u_short.png](fntpic/u8g2_font_torussansbold8_8u_short.png) u8g2_font_torussansbold8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriabold8_8r_short.png](fntpic/u8g2_font_victoriabold8_8r_short.png) u8g2_font_victoriabold8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriabold8_8n_short.png](fntpic/u8g2_font_victoriabold8_8n_short.png) u8g2_font_victoriabold8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriabold8_8u_short.png](fntpic/u8g2_font_victoriabold8_8u_short.png) u8g2_font_victoriabold8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriamedium8_8r_short.png](fntpic/u8g2_font_victoriamedium8_8r_short.png) u8g2_font_victoriamedium8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriamedium8_8n_short.png](fntpic/u8g2_font_victoriamedium8_8n_short.png) u8g2_font_victoriamedium8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriamedium8_8u_short.png](fntpic/u8g2_font_victoriamedium8_8u_short.png) u8g2_font_victoriamedium8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_timB08_tf_short.png](fntpic/u8g2_font_timB08_tf_short.png) u8g2_font_timB08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timB08_tr_short.png](fntpic/u8g2_font_timB08_tr_short.png) u8g2_font_timB08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timB08_tn_short.png](fntpic/u8g2_font_timB08_tn_short.png) u8g2_font_timB08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timR08_tf_short.png](fntpic/u8g2_font_timR08_tf_short.png) u8g2_font_timR08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timR08_tr_short.png](fntpic/u8g2_font_timR08_tr_short.png) u8g2_font_timR08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_timR08_tn_short.png](fntpic/u8g2_font_timR08_tn_short.png) u8g2_font_timR08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_lucasfont_alternate_tf_short.png](fntpic/u8g2_font_lucasfont_alternate_tf_short.png) u8g2_font_lucasfont_alternate_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_lucasfont_alternate_tr_short.png](fntpic/u8g2_font_lucasfont_alternate_tr_short.png) u8g2_font_lucasfont_alternate_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_lucasfont_alternate_tn_short.png](fntpic/u8g2_font_lucasfont_alternate_tn_short.png) u8g2_font_lucasfont_alternate_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_haxrcorp4089_tr_short.png](fntpic/u8g2_font_haxrcorp4089_tr_short.png) u8g2_font_haxrcorp4089_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_haxrcorp4089_tn_short.png](fntpic/u8g2_font_haxrcorp4089_tn_short.png) u8g2_font_haxrcorp4089_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_haxrcorp4089_t_cyrillic_short.png](fntpic/u8g2_font_haxrcorp4089_t_cyrillic_short.png) u8g2_font_haxrcorp4089_t_cyrillic [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_pxplusibmcgathin_8f_short.png](fntpic/u8g2_font_pxplusibmcgathin_8f_short.png) u8g2_font_pxplusibmcgathin_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcgathin_8r_short.png](fntpic/u8g2_font_pxplusibmcgathin_8r_short.png) u8g2_font_pxplusibmcgathin_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcgathin_8n_short.png](fntpic/u8g2_font_pxplusibmcgathin_8n_short.png) u8g2_font_pxplusibmcgathin_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcgathin_8u_short.png](fntpic/u8g2_font_pxplusibmcgathin_8u_short.png) u8g2_font_pxplusibmcgathin_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8f_short.png](fntpic/u8g2_font_pxplusibmcga_8f_short.png) u8g2_font_pxplusibmcga_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8r_short.png](fntpic/u8g2_font_pxplusibmcga_8r_short.png) u8g2_font_pxplusibmcga_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8n_short.png](fntpic/u8g2_font_pxplusibmcga_8n_short.png) u8g2_font_pxplusibmcga_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8u_short.png](fntpic/u8g2_font_pxplusibmcga_8u_short.png) u8g2_font_pxplusibmcga_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8f_short.png](fntpic/u8g2_font_pxplustandynewtv_8f_short.png) u8g2_font_pxplustandynewtv_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8r_short.png](fntpic/u8g2_font_pxplustandynewtv_8r_short.png) u8g2_font_pxplustandynewtv_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8n_short.png](fntpic/u8g2_font_pxplustandynewtv_8n_short.png) u8g2_font_pxplustandynewtv_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8u_short.png](fntpic/u8g2_font_pxplustandynewtv_8u_short.png) u8g2_font_pxplustandynewtv_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_t_all_short.png](fntpic/u8g2_font_pxplustandynewtv_t_all_short.png) u8g2_font_pxplustandynewtv_t_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8_all_short.png](fntpic/u8g2_font_pxplustandynewtv_8_all_short.png) u8g2_font_pxplustandynewtv_8_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
## 8 Pixel Height
![fntpic/u8g2_font_m2icon_9_tf_short.png](fntpic/u8g2_font_m2icon_9_tf_short.png) u8g2_font_m2icon_9_tf [U8glib](fntgrpu8g)
![fntpic/u8g2_font_amstrad_cpc_extended_8f_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8f_short.png) u8g2_font_amstrad_cpc_extended_8f [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_amstrad_cpc_extended_8r_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8r_short.png) u8g2_font_amstrad_cpc_extended_8r [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_amstrad_cpc_extended_8n_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8n_short.png) u8g2_font_amstrad_cpc_extended_8n [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_amstrad_cpc_extended_8u_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8u_short.png) u8g2_font_amstrad_cpc_extended_8u [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_cursor_tf_short.png](fntpic/u8g2_font_cursor_tf_short.png) u8g2_font_cursor_tf [X11](fntgrpx11)
![fntpic/u8g2_font_cursor_tr_short.png](fntpic/u8g2_font_cursor_tr_short.png) u8g2_font_cursor_tr [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_tn_short.png](fntpic/u8g2_font_6x10_tn_short.png) u8g2_font_6x10_tn [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_mn_short.png](fntpic/u8g2_font_6x10_mn_short.png) u8g2_font_6x10_mn [X11](fntgrpx11)
![fntpic/u8g2_font_t0_11_tf_short.png](fntpic/u8g2_font_t0_11_tf_short.png) u8g2_font_t0_11_tf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_tr_short.png](fntpic/u8g2_font_t0_11_tr_short.png) u8g2_font_t0_11_tr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_te_short.png](fntpic/u8g2_font_t0_11_te_short.png) u8g2_font_t0_11_te [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_mf_short.png](fntpic/u8g2_font_t0_11_mf_short.png) u8g2_font_t0_11_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_mr_short.png](fntpic/u8g2_font_t0_11_mr_short.png) u8g2_font_t0_11_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_me_short.png](fntpic/u8g2_font_t0_11_me_short.png) u8g2_font_t0_11_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_t_all_short.png](fntpic/u8g2_font_t0_11_t_all_short.png) u8g2_font_t0_11_t_all [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_t_symbol_short.png](fntpic/u8g2_font_t0_11_t_symbol_short.png) u8g2_font_t0_11_t_symbol [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_tf_short.png](fntpic/u8g2_font_t0_11b_tf_short.png) u8g2_font_t0_11b_tf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_tr_short.png](fntpic/u8g2_font_t0_11b_tr_short.png) u8g2_font_t0_11b_tr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_te_short.png](fntpic/u8g2_font_t0_11b_te_short.png) u8g2_font_t0_11b_te [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_mf_short.png](fntpic/u8g2_font_t0_11b_mf_short.png) u8g2_font_t0_11b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_mr_short.png](fntpic/u8g2_font_t0_11b_mr_short.png) u8g2_font_t0_11b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_me_short.png](fntpic/u8g2_font_t0_11b_me_short.png) u8g2_font_t0_11b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_tf_short.png](fntpic/u8g2_font_t0_12_tf_short.png) u8g2_font_t0_12_tf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_tr_short.png](fntpic/u8g2_font_t0_12_tr_short.png) u8g2_font_t0_12_tr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_te_short.png](fntpic/u8g2_font_t0_12_te_short.png) u8g2_font_t0_12_te [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_mf_short.png](fntpic/u8g2_font_t0_12_mf_short.png) u8g2_font_t0_12_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_mr_short.png](fntpic/u8g2_font_t0_12_mr_short.png) u8g2_font_t0_12_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_me_short.png](fntpic/u8g2_font_t0_12_me_short.png) u8g2_font_t0_12_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_t_symbol_short.png](fntpic/u8g2_font_t0_12_t_symbol_short.png) u8g2_font_t0_12_t_symbol [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_tf_short.png](fntpic/u8g2_font_t0_12b_tf_short.png) u8g2_font_t0_12b_tf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_tr_short.png](fntpic/u8g2_font_t0_12b_tr_short.png) u8g2_font_t0_12b_tr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_te_short.png](fntpic/u8g2_font_t0_12b_te_short.png) u8g2_font_t0_12b_te [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_mf_short.png](fntpic/u8g2_font_t0_12b_mf_short.png) u8g2_font_t0_12b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_mr_short.png](fntpic/u8g2_font_t0_12b_mr_short.png) u8g2_font_t0_12b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_me_short.png](fntpic/u8g2_font_t0_12b_me_short.png) u8g2_font_t0_12b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_open_iconic_all_1x_t_short.png](fntpic/u8g2_font_open_iconic_all_1x_t_short.png) u8g2_font_open_iconic_all_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_app_1x_t_short.png](fntpic/u8g2_font_open_iconic_app_1x_t_short.png) u8g2_font_open_iconic_app_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_check_1x_t_short.png](fntpic/u8g2_font_open_iconic_check_1x_t_short.png) u8g2_font_open_iconic_check_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_email_1x_t_short.png](fntpic/u8g2_font_open_iconic_email_1x_t_short.png) u8g2_font_open_iconic_email_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_embedded_1x_t_short.png](fntpic/u8g2_font_open_iconic_embedded_1x_t_short.png) u8g2_font_open_iconic_embedded_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_gui_1x_t_short.png](fntpic/u8g2_font_open_iconic_gui_1x_t_short.png) u8g2_font_open_iconic_gui_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_human_1x_t_short.png](fntpic/u8g2_font_open_iconic_human_1x_t_short.png) u8g2_font_open_iconic_human_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_mime_1x_t_short.png](fntpic/u8g2_font_open_iconic_mime_1x_t_short.png) u8g2_font_open_iconic_mime_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_play_1x_t_short.png](fntpic/u8g2_font_open_iconic_play_1x_t_short.png) u8g2_font_open_iconic_play_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_text_1x_t_short.png](fntpic/u8g2_font_open_iconic_text_1x_t_short.png) u8g2_font_open_iconic_text_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_thing_1x_t_short.png](fntpic/u8g2_font_open_iconic_thing_1x_t_short.png) u8g2_font_open_iconic_thing_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_weather_1x_t_short.png](fntpic/u8g2_font_open_iconic_weather_1x_t_short.png) u8g2_font_open_iconic_weather_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_open_iconic_www_1x_t_short.png](fntpic/u8g2_font_open_iconic_www_1x_t_short.png) u8g2_font_open_iconic_www_1x_t [Open Iconic](fntgrpiconic)
![fntpic/u8g2_font_profont12_tf_short.png](fntpic/u8g2_font_profont12_tf_short.png) u8g2_font_profont12_tf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_tr_short.png](fntpic/u8g2_font_profont12_tr_short.png) u8g2_font_profont12_tr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_tn_short.png](fntpic/u8g2_font_profont12_tn_short.png) u8g2_font_profont12_tn [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_mf_short.png](fntpic/u8g2_font_profont12_mf_short.png) u8g2_font_profont12_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_mr_short.png](fntpic/u8g2_font_profont12_mr_short.png) u8g2_font_profont12_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_mn_short.png](fntpic/u8g2_font_profont12_mn_short.png) u8g2_font_profont12_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_samim_10_t_all_short.png](fntpic/u8g2_font_samim_10_t_all_short.png) u8g2_font_samim_10_t_all [Persian](fntgrppersian)
![fntpic/u8g2_font_samim_fd_10_t_all_short.png](fntpic/u8g2_font_samim_fd_10_t_all_short.png) u8g2_font_samim_fd_10_t_all [Persian](fntgrppersian)
![fntpic/u8g2_font_diodesemimono_tr_short.png](fntpic/u8g2_font_diodesemimono_tr_short.png) u8g2_font_diodesemimono_tr [JosephKnightcom](fntgrpjosephknightcom)
![fntpic/u8g2_font_bitcasual_tf_short.png](fntpic/u8g2_font_bitcasual_tf_short.png) u8g2_font_bitcasual_tf [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_bitcasual_tr_short.png](fntpic/u8g2_font_bitcasual_tr_short.png) u8g2_font_bitcasual_tr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_bitcasual_tn_short.png](fntpic/u8g2_font_bitcasual_tn_short.png) u8g2_font_bitcasual_tn [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_bitcasual_tu_short.png](fntpic/u8g2_font_bitcasual_tu_short.png) u8g2_font_bitcasual_tu [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_bitcasual_t_all_short.png](fntpic/u8g2_font_bitcasual_t_all_short.png) u8g2_font_bitcasual_t_all [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_abel_mr_short.png](fntpic/u8g2_font_abel_mr_short.png) u8g2_font_abel_mr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_nerhoe_tf_short.png](fntpic/u8g2_font_nerhoe_tf_short.png) u8g2_font_nerhoe_tf [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_nerhoe_tr_short.png](fntpic/u8g2_font_nerhoe_tr_short.png) u8g2_font_nerhoe_tr [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_nerhoe_tn_short.png](fntpic/u8g2_font_nerhoe_tn_short.png) u8g2_font_nerhoe_tn [Tulamide](fntgrptulamide)
![fntpic/u8g2_font_medsans_tr_short.png](fntpic/u8g2_font_medsans_tr_short.png) u8g2_font_medsans_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_originalsans_tr_short.png](fntpic/u8g2_font_originalsans_tr_short.png) u8g2_font_originalsans_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_scrum_tf_short.png](fntpic/u8g2_font_scrum_tf_short.png) u8g2_font_scrum_tf [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_scrum_tr_short.png](fntpic/u8g2_font_scrum_tr_short.png) u8g2_font_scrum_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_scrum_te_short.png](fntpic/u8g2_font_scrum_te_short.png) u8g2_font_scrum_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_busdisplay8x5_tr_short.png](fntpic/u8g2_font_busdisplay8x5_tr_short.png) u8g2_font_busdisplay8x5_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_littlemissloudonbold_tr_short.png](fntpic/u8g2_font_littlemissloudonbold_tr_short.png) u8g2_font_littlemissloudonbold_tr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_littlemissloudonbold_te_short.png](fntpic/u8g2_font_littlemissloudonbold_te_short.png) u8g2_font_littlemissloudonbold_te [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_HelvetiPixel_tr_short.png](fntpic/u8g2_font_HelvetiPixel_tr_short.png) u8g2_font_HelvetiPixel_tr [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_Wizzard_tr_short.png](fntpic/u8g2_font_Wizzard_tr_short.png) u8g2_font_Wizzard_tr [Pentacom](fntgrppentacom)
![fntpic/u8g2_font_spleen6x12_mf_short.png](fntpic/u8g2_font_spleen6x12_mf_short.png) u8g2_font_spleen6x12_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen6x12_mr_short.png](fntpic/u8g2_font_spleen6x12_mr_short.png) u8g2_font_spleen6x12_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen6x12_mu_short.png](fntpic/u8g2_font_spleen6x12_mu_short.png) u8g2_font_spleen6x12_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen6x12_me_short.png](fntpic/u8g2_font_spleen6x12_me_short.png) u8g2_font_spleen6x12_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_wqy12_t_chinese1_short.png](fntpic/u8g2_font_wqy12_t_chinese1_short.png) u8g2_font_wqy12_t_chinese1 [Wqy (Chinese Font)](fntgrpwqy)
![fntpic/u8g2_font_wqy12_t_chinese2_short.png](fntpic/u8g2_font_wqy12_t_chinese2_short.png) u8g2_font_wqy12_t_chinese2 [Wqy (Chinese Font)](fntgrpwqy)
![fntpic/u8g2_font_wqy12_t_chinese3_short.png](fntpic/u8g2_font_wqy12_t_chinese3_short.png) u8g2_font_wqy12_t_chinese3 [Wqy (Chinese Font)](fntgrpwqy)
![fntpic/u8g2_font_wqy12_t_gb2312_short.png](fntpic/u8g2_font_wqy12_t_gb2312_short.png) u8g2_font_wqy12_t_gb2312 [Wqy (Chinese Font)](fntgrpwqy)
![fntpic/u8g2_font_wqy12_t_gb2312a_short.png](fntpic/u8g2_font_wqy12_t_gb2312a_short.png) u8g2_font_wqy12_t_gb2312a [Wqy (Chinese Font)](fntgrpwqy)
![fntpic/u8g2_font_wqy12_t_gb2312b_short.png](fntpic/u8g2_font_wqy12_t_gb2312b_short.png) u8g2_font_wqy12_t_gb2312b [Wqy (Chinese Font)](fntgrpwqy)
![fntpic/u8g2_font_helvB08_tf_short.png](fntpic/u8g2_font_helvB08_tf_short.png) u8g2_font_helvB08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB08_tr_short.png](fntpic/u8g2_font_helvB08_tr_short.png) u8g2_font_helvB08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB08_tn_short.png](fntpic/u8g2_font_helvB08_tn_short.png) u8g2_font_helvB08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvB08_te_short.png](fntpic/u8g2_font_helvB08_te_short.png) u8g2_font_helvB08_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR08_tf_short.png](fntpic/u8g2_font_helvR08_tf_short.png) u8g2_font_helvR08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR08_tr_short.png](fntpic/u8g2_font_helvR08_tr_short.png) u8g2_font_helvR08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR08_tn_short.png](fntpic/u8g2_font_helvR08_tn_short.png) u8g2_font_helvR08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_helvR08_te_short.png](fntpic/u8g2_font_helvR08_te_short.png) u8g2_font_helvR08_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB08_tf_short.png](fntpic/u8g2_font_ncenB08_tf_short.png) u8g2_font_ncenB08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB08_tr_short.png](fntpic/u8g2_font_ncenB08_tr_short.png) u8g2_font_ncenB08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB08_tn_short.png](fntpic/u8g2_font_ncenB08_tn_short.png) u8g2_font_ncenB08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenB08_te_short.png](fntpic/u8g2_font_ncenB08_te_short.png) u8g2_font_ncenB08_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR08_tf_short.png](fntpic/u8g2_font_ncenR08_tf_short.png) u8g2_font_ncenR08_tf [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR08_tr_short.png](fntpic/u8g2_font_ncenR08_tr_short.png) u8g2_font_ncenR08_tr [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR08_tn_short.png](fntpic/u8g2_font_ncenR08_tn_short.png) u8g2_font_ncenR08_tn [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_ncenR08_te_short.png](fntpic/u8g2_font_ncenR08_te_short.png) u8g2_font_ncenR08_te [Adobe X11](fntgrpadobex11)
![fntpic/u8g2_font_luBIS08_tf_short.png](fntpic/u8g2_font_luBIS08_tf_short.png) u8g2_font_luBIS08_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luBIS08_tr_short.png](fntpic/u8g2_font_luBIS08_tr_short.png) u8g2_font_luBIS08_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luBIS08_tn_short.png](fntpic/u8g2_font_luBIS08_tn_short.png) u8g2_font_luBIS08_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luBIS08_te_short.png](fntpic/u8g2_font_luBIS08_te_short.png) u8g2_font_luBIS08_te [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS08_tf_short.png](fntpic/u8g2_font_luBS08_tf_short.png) u8g2_font_luBS08_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS08_tr_short.png](fntpic/u8g2_font_luBS08_tr_short.png) u8g2_font_luBS08_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS08_tn_short.png](fntpic/u8g2_font_luBS08_tn_short.png) u8g2_font_luBS08_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luBS08_te_short.png](fntpic/u8g2_font_luBS08_te_short.png) u8g2_font_luBS08_te [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS08_tf_short.png](fntpic/u8g2_font_luIS08_tf_short.png) u8g2_font_luIS08_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS08_tr_short.png](fntpic/u8g2_font_luIS08_tr_short.png) u8g2_font_luIS08_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS08_tn_short.png](fntpic/u8g2_font_luIS08_tn_short.png) u8g2_font_luIS08_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luIS08_te_short.png](fntpic/u8g2_font_luIS08_te_short.png) u8g2_font_luIS08_te [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS08_tf_short.png](fntpic/u8g2_font_luRS08_tf_short.png) u8g2_font_luRS08_tf [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS08_tr_short.png](fntpic/u8g2_font_luRS08_tr_short.png) u8g2_font_luRS08_tr [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS08_tn_short.png](fntpic/u8g2_font_luRS08_tn_short.png) u8g2_font_luRS08_tn [lucida](fntgrplucida)
![fntpic/u8g2_font_luRS08_te_short.png](fntpic/u8g2_font_luRS08_te_short.png) u8g2_font_luRS08_te [lucida](fntgrplucida)
![fntpic/u8g2_font_robot_de_niro_tf_short.png](fntpic/u8g2_font_robot_de_niro_tf_short.png) u8g2_font_robot_de_niro_tf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_robot_de_niro_tr_short.png](fntpic/u8g2_font_robot_de_niro_tr_short.png) u8g2_font_robot_de_niro_tr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_robot_de_niro_tn_short.png](fntpic/u8g2_font_robot_de_niro_tn_short.png) u8g2_font_robot_de_niro_tn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_gulim11_t_korean1_short.png](fntpic/u8g2_font_gulim11_t_korean1_short.png) u8g2_font_gulim11_t_korean1 [Gulim](fntgrpgulim)
![fntpic/u8g2_font_gulim11_t_korean2_short.png](fntpic/u8g2_font_gulim11_t_korean2_short.png) u8g2_font_gulim11_t_korean2 [Gulim](fntgrpgulim)
![fntpic/u8g2_font_pressstart2p_8f_short.png](fntpic/u8g2_font_pressstart2p_8f_short.png) u8g2_font_pressstart2p_8f [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pressstart2p_8r_short.png](fntpic/u8g2_font_pressstart2p_8r_short.png) u8g2_font_pressstart2p_8r [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pressstart2p_8n_short.png](fntpic/u8g2_font_pressstart2p_8n_short.png) u8g2_font_pressstart2p_8n [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pressstart2p_8u_short.png](fntpic/u8g2_font_pressstart2p_8u_short.png) u8g2_font_pressstart2p_8u [Codeman38](fntgrpcodeman38)
+271
View File
@@ -0,0 +1,271 @@
[tocstart]: # (toc start)
* [Fonts for U8x8](#fonts-for-u8x8)
[tocend]: # (toc end)
# Fonts for U8x8
![fntpic/u8x8_font_amstrad_cpc_extended_f_short.png](fntpic/u8x8_font_amstrad_cpc_extended_f_short.png) u8x8_font_amstrad_cpc_extended_f [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_amstrad_cpc_extended_r_short.png](fntpic/u8x8_font_amstrad_cpc_extended_r_short.png) u8x8_font_amstrad_cpc_extended_r [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_amstrad_cpc_extended_n_short.png](fntpic/u8x8_font_amstrad_cpc_extended_n_short.png) u8x8_font_amstrad_cpc_extended_n [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_amstrad_cpc_extended_u_short.png](fntpic/u8x8_font_amstrad_cpc_extended_u_short.png) u8x8_font_amstrad_cpc_extended_u [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_5x7_f_short.png](fntpic/u8x8_font_5x7_f_short.png) u8x8_font_5x7_f [X11](fntgrpx11)
![fntpic/u8x8_font_5x7_r_short.png](fntpic/u8x8_font_5x7_r_short.png) u8x8_font_5x7_r [X11](fntgrpx11)
![fntpic/u8x8_font_5x7_n_short.png](fntpic/u8x8_font_5x7_n_short.png) u8x8_font_5x7_n [X11](fntgrpx11)
![fntpic/u8x8_font_5x8_f_short.png](fntpic/u8x8_font_5x8_f_short.png) u8x8_font_5x8_f [X11](fntgrpx11)
![fntpic/u8x8_font_5x8_r_short.png](fntpic/u8x8_font_5x8_r_short.png) u8x8_font_5x8_r [X11](fntgrpx11)
![fntpic/u8x8_font_5x8_n_short.png](fntpic/u8x8_font_5x8_n_short.png) u8x8_font_5x8_n [X11](fntgrpx11)
![fntpic/u8x8_font_8x13_1x2_f_short.png](fntpic/u8x8_font_8x13_1x2_f_short.png) u8x8_font_8x13_1x2_f [X11](fntgrpx11)
![fntpic/u8x8_font_8x13_1x2_r_short.png](fntpic/u8x8_font_8x13_1x2_r_short.png) u8x8_font_8x13_1x2_r [X11](fntgrpx11)
![fntpic/u8x8_font_8x13_1x2_n_short.png](fntpic/u8x8_font_8x13_1x2_n_short.png) u8x8_font_8x13_1x2_n [X11](fntgrpx11)
![fntpic/u8x8_font_8x13B_1x2_f_short.png](fntpic/u8x8_font_8x13B_1x2_f_short.png) u8x8_font_8x13B_1x2_f [X11](fntgrpx11)
![fntpic/u8x8_font_8x13B_1x2_r_short.png](fntpic/u8x8_font_8x13B_1x2_r_short.png) u8x8_font_8x13B_1x2_r [X11](fntgrpx11)
![fntpic/u8x8_font_8x13B_1x2_n_short.png](fntpic/u8x8_font_8x13B_1x2_n_short.png) u8x8_font_8x13B_1x2_n [X11](fntgrpx11)
![fntpic/u8x8_font_7x14_1x2_f_short.png](fntpic/u8x8_font_7x14_1x2_f_short.png) u8x8_font_7x14_1x2_f [X11](fntgrpx11)
![fntpic/u8x8_font_7x14_1x2_r_short.png](fntpic/u8x8_font_7x14_1x2_r_short.png) u8x8_font_7x14_1x2_r [X11](fntgrpx11)
![fntpic/u8x8_font_7x14_1x2_n_short.png](fntpic/u8x8_font_7x14_1x2_n_short.png) u8x8_font_7x14_1x2_n [X11](fntgrpx11)
![fntpic/u8x8_font_7x14B_1x2_f_short.png](fntpic/u8x8_font_7x14B_1x2_f_short.png) u8x8_font_7x14B_1x2_f [X11](fntgrpx11)
![fntpic/u8x8_font_7x14B_1x2_r_short.png](fntpic/u8x8_font_7x14B_1x2_r_short.png) u8x8_font_7x14B_1x2_r [X11](fntgrpx11)
![fntpic/u8x8_font_7x14B_1x2_n_short.png](fntpic/u8x8_font_7x14B_1x2_n_short.png) u8x8_font_7x14B_1x2_n [X11](fntgrpx11)
![fntpic/u8x8_font_open_iconic_arrow_1x1_short.png](fntpic/u8x8_font_open_iconic_arrow_1x1_short.png) u8x8_font_open_iconic_arrow_1x1 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_check_1x1_short.png](fntpic/u8x8_font_open_iconic_check_1x1_short.png) u8x8_font_open_iconic_check_1x1 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_embedded_1x1_short.png](fntpic/u8x8_font_open_iconic_embedded_1x1_short.png) u8x8_font_open_iconic_embedded_1x1 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_play_1x1_short.png](fntpic/u8x8_font_open_iconic_play_1x1_short.png) u8x8_font_open_iconic_play_1x1 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_thing_1x1_short.png](fntpic/u8x8_font_open_iconic_thing_1x1_short.png) u8x8_font_open_iconic_thing_1x1 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_weather_1x1_short.png](fntpic/u8x8_font_open_iconic_weather_1x1_short.png) u8x8_font_open_iconic_weather_1x1 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_arrow_2x2_short.png](fntpic/u8x8_font_open_iconic_arrow_2x2_short.png) u8x8_font_open_iconic_arrow_2x2 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_check_2x2_short.png](fntpic/u8x8_font_open_iconic_check_2x2_short.png) u8x8_font_open_iconic_check_2x2 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_embedded_2x2_short.png](fntpic/u8x8_font_open_iconic_embedded_2x2_short.png) u8x8_font_open_iconic_embedded_2x2 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_play_2x2_short.png](fntpic/u8x8_font_open_iconic_play_2x2_short.png) u8x8_font_open_iconic_play_2x2 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_thing_2x2_short.png](fntpic/u8x8_font_open_iconic_thing_2x2_short.png) u8x8_font_open_iconic_thing_2x2 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_weather_2x2_short.png](fntpic/u8x8_font_open_iconic_weather_2x2_short.png) u8x8_font_open_iconic_weather_2x2 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_arrow_4x4_short.png](fntpic/u8x8_font_open_iconic_arrow_4x4_short.png) u8x8_font_open_iconic_arrow_4x4 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_check_4x4_short.png](fntpic/u8x8_font_open_iconic_check_4x4_short.png) u8x8_font_open_iconic_check_4x4 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_embedded_4x4_short.png](fntpic/u8x8_font_open_iconic_embedded_4x4_short.png) u8x8_font_open_iconic_embedded_4x4 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_play_4x4_short.png](fntpic/u8x8_font_open_iconic_play_4x4_short.png) u8x8_font_open_iconic_play_4x4 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_thing_4x4_short.png](fntpic/u8x8_font_open_iconic_thing_4x4_short.png) u8x8_font_open_iconic_thing_4x4 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_weather_4x4_short.png](fntpic/u8x8_font_open_iconic_weather_4x4_short.png) u8x8_font_open_iconic_weather_4x4 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_arrow_8x8_short.png](fntpic/u8x8_font_open_iconic_arrow_8x8_short.png) u8x8_font_open_iconic_arrow_8x8 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_check_8x8_short.png](fntpic/u8x8_font_open_iconic_check_8x8_short.png) u8x8_font_open_iconic_check_8x8 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_embedded_8x8_short.png](fntpic/u8x8_font_open_iconic_embedded_8x8_short.png) u8x8_font_open_iconic_embedded_8x8 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_play_8x8_short.png](fntpic/u8x8_font_open_iconic_play_8x8_short.png) u8x8_font_open_iconic_play_8x8 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_thing_8x8_short.png](fntpic/u8x8_font_open_iconic_thing_8x8_short.png) u8x8_font_open_iconic_thing_8x8 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_open_iconic_weather_8x8_short.png](fntpic/u8x8_font_open_iconic_weather_8x8_short.png) u8x8_font_open_iconic_weather_8x8 [Open Iconic](fntgrpiconic)
![fntpic/u8x8_font_profont29_2x3_f_short.png](fntpic/u8x8_font_profont29_2x3_f_short.png) u8x8_font_profont29_2x3_f [Profont](fntgrpprofont)
![fntpic/u8x8_font_profont29_2x3_r_short.png](fntpic/u8x8_font_profont29_2x3_r_short.png) u8x8_font_profont29_2x3_r [Profont](fntgrpprofont)
![fntpic/u8x8_font_profont29_2x3_n_short.png](fntpic/u8x8_font_profont29_2x3_n_short.png) u8x8_font_profont29_2x3_n [Profont](fntgrpprofont)
![fntpic/u8x8_font_artossans8_r_short.png](fntpic/u8x8_font_artossans8_r_short.png) u8x8_font_artossans8_r [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_artossans8_n_short.png](fntpic/u8x8_font_artossans8_n_short.png) u8x8_font_artossans8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_artossans8_u_short.png](fntpic/u8x8_font_artossans8_u_short.png) u8x8_font_artossans8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_artosserif8_r_short.png](fntpic/u8x8_font_artosserif8_r_short.png) u8x8_font_artosserif8_r [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_artosserif8_n_short.png](fntpic/u8x8_font_artosserif8_n_short.png) u8x8_font_artosserif8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_artosserif8_u_short.png](fntpic/u8x8_font_artosserif8_u_short.png) u8x8_font_artosserif8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_chroma48medium8_r_short.png](fntpic/u8x8_font_chroma48medium8_r_short.png) u8x8_font_chroma48medium8_r [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_chroma48medium8_n_short.png](fntpic/u8x8_font_chroma48medium8_n_short.png) u8x8_font_chroma48medium8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_chroma48medium8_u_short.png](fntpic/u8x8_font_chroma48medium8_u_short.png) u8x8_font_chroma48medium8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_saikyosansbold8_n_short.png](fntpic/u8x8_font_saikyosansbold8_n_short.png) u8x8_font_saikyosansbold8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_saikyosansbold8_u_short.png](fntpic/u8x8_font_saikyosansbold8_u_short.png) u8x8_font_saikyosansbold8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_torussansbold8_r_short.png](fntpic/u8x8_font_torussansbold8_r_short.png) u8x8_font_torussansbold8_r [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_torussansbold8_n_short.png](fntpic/u8x8_font_torussansbold8_n_short.png) u8x8_font_torussansbold8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_torussansbold8_u_short.png](fntpic/u8x8_font_torussansbold8_u_short.png) u8x8_font_torussansbold8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_victoriabold8_r_short.png](fntpic/u8x8_font_victoriabold8_r_short.png) u8x8_font_victoriabold8_r [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_victoriabold8_n_short.png](fntpic/u8x8_font_victoriabold8_n_short.png) u8x8_font_victoriabold8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_victoriabold8_u_short.png](fntpic/u8x8_font_victoriabold8_u_short.png) u8x8_font_victoriabold8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_victoriamedium8_r_short.png](fntpic/u8x8_font_victoriamedium8_r_short.png) u8x8_font_victoriamedium8_r [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_victoriamedium8_n_short.png](fntpic/u8x8_font_victoriamedium8_n_short.png) u8x8_font_victoriamedium8_n [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_victoriamedium8_u_short.png](fntpic/u8x8_font_victoriamedium8_u_short.png) u8x8_font_victoriamedium8_u [Open Game Art](fntgrpopengameart)
![fntpic/u8x8_font_courB18_2x3_f_short.png](fntpic/u8x8_font_courB18_2x3_f_short.png) u8x8_font_courB18_2x3_f [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courB18_2x3_r_short.png](fntpic/u8x8_font_courB18_2x3_r_short.png) u8x8_font_courB18_2x3_r [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courB18_2x3_n_short.png](fntpic/u8x8_font_courB18_2x3_n_short.png) u8x8_font_courB18_2x3_n [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courR18_2x3_f_short.png](fntpic/u8x8_font_courR18_2x3_f_short.png) u8x8_font_courR18_2x3_f [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courR18_2x3_r_short.png](fntpic/u8x8_font_courR18_2x3_r_short.png) u8x8_font_courR18_2x3_r [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courR18_2x3_n_short.png](fntpic/u8x8_font_courR18_2x3_n_short.png) u8x8_font_courR18_2x3_n [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courB24_3x4_f_short.png](fntpic/u8x8_font_courB24_3x4_f_short.png) u8x8_font_courB24_3x4_f [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courB24_3x4_r_short.png](fntpic/u8x8_font_courB24_3x4_r_short.png) u8x8_font_courB24_3x4_r [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courB24_3x4_n_short.png](fntpic/u8x8_font_courB24_3x4_n_short.png) u8x8_font_courB24_3x4_n [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courR24_3x4_f_short.png](fntpic/u8x8_font_courR24_3x4_f_short.png) u8x8_font_courR24_3x4_f [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courR24_3x4_r_short.png](fntpic/u8x8_font_courR24_3x4_r_short.png) u8x8_font_courR24_3x4_r [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_courR24_3x4_n_short.png](fntpic/u8x8_font_courR24_3x4_n_short.png) u8x8_font_courR24_3x4_n [Adobe X11](fntgrpadobex11)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_f_short.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_f_short.png) u8x8_font_lucasarts_scumm_subtitle_o_2x2_f [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_r_short.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_r_short.png) u8x8_font_lucasarts_scumm_subtitle_o_2x2_r [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_n_short.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_o_2x2_n_short.png) u8x8_font_lucasarts_scumm_subtitle_o_2x2_n [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_f_short.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_f_short.png) u8x8_font_lucasarts_scumm_subtitle_r_2x2_f [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_r_short.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_r_short.png) u8x8_font_lucasarts_scumm_subtitle_r_2x2_r [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_n_short.png](fntpic/u8x8_font_lucasarts_scumm_subtitle_r_2x2_n_short.png) u8x8_font_lucasarts_scumm_subtitle_r_2x2_n [Fontstruct](fntgrpfontstruct)
![fntpic/u8x8_font_inr21_2x4_f_short.png](fntpic/u8x8_font_inr21_2x4_f_short.png) u8x8_font_inr21_2x4_f [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr21_2x4_r_short.png](fntpic/u8x8_font_inr21_2x4_r_short.png) u8x8_font_inr21_2x4_r [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr21_2x4_n_short.png](fntpic/u8x8_font_inr21_2x4_n_short.png) u8x8_font_inr21_2x4_n [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr33_3x6_f_short.png](fntpic/u8x8_font_inr33_3x6_f_short.png) u8x8_font_inr33_3x6_f [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr33_3x6_r_short.png](fntpic/u8x8_font_inr33_3x6_r_short.png) u8x8_font_inr33_3x6_r [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr33_3x6_n_short.png](fntpic/u8x8_font_inr33_3x6_n_short.png) u8x8_font_inr33_3x6_n [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr46_4x8_f_short.png](fntpic/u8x8_font_inr46_4x8_f_short.png) u8x8_font_inr46_4x8_f [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr46_4x8_r_short.png](fntpic/u8x8_font_inr46_4x8_r_short.png) u8x8_font_inr46_4x8_r [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inr46_4x8_n_short.png](fntpic/u8x8_font_inr46_4x8_n_short.png) u8x8_font_inr46_4x8_n [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb21_2x4_f_short.png](fntpic/u8x8_font_inb21_2x4_f_short.png) u8x8_font_inb21_2x4_f [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb21_2x4_r_short.png](fntpic/u8x8_font_inb21_2x4_r_short.png) u8x8_font_inb21_2x4_r [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb21_2x4_n_short.png](fntpic/u8x8_font_inb21_2x4_n_short.png) u8x8_font_inb21_2x4_n [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb33_3x6_f_short.png](fntpic/u8x8_font_inb33_3x6_f_short.png) u8x8_font_inb33_3x6_f [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb33_3x6_r_short.png](fntpic/u8x8_font_inb33_3x6_r_short.png) u8x8_font_inb33_3x6_r [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb33_3x6_n_short.png](fntpic/u8x8_font_inb33_3x6_n_short.png) u8x8_font_inb33_3x6_n [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb46_4x8_f_short.png](fntpic/u8x8_font_inb46_4x8_f_short.png) u8x8_font_inb46_4x8_f [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb46_4x8_r_short.png](fntpic/u8x8_font_inb46_4x8_r_short.png) u8x8_font_inb46_4x8_r [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_inb46_4x8_n_short.png](fntpic/u8x8_font_inb46_4x8_n_short.png) u8x8_font_inb46_4x8_n [Inconsolata](fntgrpinconsolata)
![fntpic/u8x8_font_pressstart2p_f_short.png](fntpic/u8x8_font_pressstart2p_f_short.png) u8x8_font_pressstart2p_f [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pressstart2p_r_short.png](fntpic/u8x8_font_pressstart2p_r_short.png) u8x8_font_pressstart2p_r [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pressstart2p_n_short.png](fntpic/u8x8_font_pressstart2p_n_short.png) u8x8_font_pressstart2p_n [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pressstart2p_u_short.png](fntpic/u8x8_font_pressstart2p_u_short.png) u8x8_font_pressstart2p_u [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pcsenior_f_short.png](fntpic/u8x8_font_pcsenior_f_short.png) u8x8_font_pcsenior_f [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pcsenior_r_short.png](fntpic/u8x8_font_pcsenior_r_short.png) u8x8_font_pcsenior_r [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pcsenior_n_short.png](fntpic/u8x8_font_pcsenior_n_short.png) u8x8_font_pcsenior_n [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pcsenior_u_short.png](fntpic/u8x8_font_pcsenior_u_short.png) u8x8_font_pcsenior_u [Codeman38](fntgrpcodeman38)
![fntpic/u8x8_font_pxplusibmcgathin_f_short.png](fntpic/u8x8_font_pxplusibmcgathin_f_short.png) u8x8_font_pxplusibmcgathin_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcgathin_r_short.png](fntpic/u8x8_font_pxplusibmcgathin_r_short.png) u8x8_font_pxplusibmcgathin_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcgathin_n_short.png](fntpic/u8x8_font_pxplusibmcgathin_n_short.png) u8x8_font_pxplusibmcgathin_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcgathin_u_short.png](fntpic/u8x8_font_pxplusibmcgathin_u_short.png) u8x8_font_pxplusibmcgathin_u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcga_f_short.png](fntpic/u8x8_font_pxplusibmcga_f_short.png) u8x8_font_pxplusibmcga_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcga_r_short.png](fntpic/u8x8_font_pxplusibmcga_r_short.png) u8x8_font_pxplusibmcga_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcga_n_short.png](fntpic/u8x8_font_pxplusibmcga_n_short.png) u8x8_font_pxplusibmcga_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplusibmcga_u_short.png](fntpic/u8x8_font_pxplusibmcga_u_short.png) u8x8_font_pxplusibmcga_u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplustandynewtv_f_short.png](fntpic/u8x8_font_pxplustandynewtv_f_short.png) u8x8_font_pxplustandynewtv_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplustandynewtv_r_short.png](fntpic/u8x8_font_pxplustandynewtv_r_short.png) u8x8_font_pxplustandynewtv_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplustandynewtv_n_short.png](fntpic/u8x8_font_pxplustandynewtv_n_short.png) u8x8_font_pxplustandynewtv_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_pxplustandynewtv_u_short.png](fntpic/u8x8_font_pxplustandynewtv_u_short.png) u8x8_font_pxplustandynewtv_u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_px437wyse700a_2x2_f_short.png](fntpic/u8x8_font_px437wyse700a_2x2_f_short.png) u8x8_font_px437wyse700a_2x2_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_px437wyse700a_2x2_r_short.png](fntpic/u8x8_font_px437wyse700a_2x2_r_short.png) u8x8_font_px437wyse700a_2x2_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_px437wyse700a_2x2_n_short.png](fntpic/u8x8_font_px437wyse700a_2x2_n_short.png) u8x8_font_px437wyse700a_2x2_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_px437wyse700b_2x2_f_short.png](fntpic/u8x8_font_px437wyse700b_2x2_f_short.png) u8x8_font_px437wyse700b_2x2_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_px437wyse700b_2x2_r_short.png](fntpic/u8x8_font_px437wyse700b_2x2_r_short.png) u8x8_font_px437wyse700b_2x2_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8x8_font_px437wyse700b_2x2_n_short.png](fntpic/u8x8_font_px437wyse700b_2x2_n_short.png) u8x8_font_px437wyse700b_2x2_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
+1334
View File
File diff suppressed because it is too large Load Diff
+17
View File
@@ -0,0 +1,17 @@
Please visit one of the following four subpages to see the font name together with a preview picture of the font.
* [Font List 3-8 Pixel Height](fntlist8)
* [Font List 9-12 Pixel Height](fntlist12)
* [Font List 13-16 Pixel Height](fntlist16)
* [Font List 17-99 Pixel Height](fntlist99)
Other font pages:
* [Font Groups](fntgrp)
* [Icon and Symbol Fonts](fnticons)
* [List of all font names](fntlistallplain)
* [PDF: List of all fonts](https://github.com/olikraus/u8g2/blob/master/doc/u8g2fntlistallpic.pdf)
+8346
View File
File diff suppressed because it is too large Load Diff
+4308
View File
File diff suppressed because it is too large Load Diff
+951
View File
@@ -0,0 +1,951 @@
[tocstart]: # (toc start)
* [Monospaced and 8x8 Fonts for U8g2, Capital A Height](#monospaced-and-8x8-fonts-for-u8g2-capital-a-height)
* [5 Pixel Height](#5-pixel-height)
* [6 Pixel Height](#6-pixel-height)
* [7 Pixel Height](#7-pixel-height)
* [8 Pixel Height](#8-pixel-height)
* [9 Pixel Height](#9-pixel-height)
* [10 Pixel Height](#10-pixel-height)
* [11 Pixel Height](#11-pixel-height)
* [12 Pixel Height](#12-pixel-height)
* [13 Pixel Height](#13-pixel-height)
* [14 Pixel Height](#14-pixel-height)
* [15 Pixel Height](#15-pixel-height)
* [16 Pixel Height](#16-pixel-height)
* [17 Pixel Height](#17-pixel-height)
* [19 Pixel Height](#19-pixel-height)
* [20 Pixel Height](#20-pixel-height)
* [21 Pixel Height](#21-pixel-height)
* [22 Pixel Height](#22-pixel-height)
* [23 Pixel Height](#23-pixel-height)
* [24 Pixel Height](#24-pixel-height)
* [25 Pixel Height](#25-pixel-height)
* [26 Pixel Height](#26-pixel-height)
* [27 Pixel Height](#27-pixel-height)
* [30 Pixel Height](#30-pixel-height)
* [31 Pixel Height](#31-pixel-height)
* [33 Pixel Height](#33-pixel-height)
* [38 Pixel Height](#38-pixel-height)
* [39 Pixel Height](#39-pixel-height)
* [40 Pixel Height](#40-pixel-height)
* [42 Pixel Height](#42-pixel-height)
* [46 Pixel Height](#46-pixel-height)
* [49 Pixel Height](#49-pixel-height)
* [52 Pixel Height](#52-pixel-height)
* [53 Pixel Height](#53-pixel-height)
* [57 Pixel Height](#57-pixel-height)
* [61 Pixel Height](#61-pixel-height)
* [63 Pixel Height](#63-pixel-height)
[tocend]: # (toc end)
# Monospaced and 8x8 Fonts for U8g2, Capital A Height
## 5 Pixel Height
![fntpic/u8g2_font_micro_mr_short.png](fntpic/u8g2_font_micro_mr_short.png) u8g2_font_micro_mr [X11](fntgrpx11)
![fntpic/u8g2_font_micro_mn_short.png](fntpic/u8g2_font_micro_mn_short.png) u8g2_font_micro_mn [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_mf_short.png](fntpic/u8g2_font_4x6_mf_short.png) u8g2_font_4x6_mf [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_mr_short.png](fntpic/u8g2_font_4x6_mr_short.png) u8g2_font_4x6_mr [X11](fntgrpx11)
![fntpic/u8g2_font_4x6_mn_short.png](fntpic/u8g2_font_4x6_mn_short.png) u8g2_font_4x6_mn [X11](fntgrpx11)
![fntpic/u8g2_font_tom_thumb_4x6_mf_short.png](fntpic/u8g2_font_tom_thumb_4x6_mf_short.png) u8g2_font_tom_thumb_4x6_mf [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_mr_short.png](fntpic/u8g2_font_tom_thumb_4x6_mr_short.png) u8g2_font_tom_thumb_4x6_mr [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_mn_short.png](fntpic/u8g2_font_tom_thumb_4x6_mn_short.png) u8g2_font_tom_thumb_4x6_mn [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tom_thumb_4x6_me_short.png](fntpic/u8g2_font_tom_thumb_4x6_me_short.png) u8g2_font_tom_thumb_4x6_me [Tom-Thumb](fntgrptomthumb)
![fntpic/u8g2_font_tiny_simon_mr_short.png](fntpic/u8g2_font_tiny_simon_mr_short.png) u8g2_font_tiny_simon_mr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_3x5im_mr_short.png](fntpic/u8g2_font_3x5im_mr_short.png) u8g2_font_3x5im_mr [bitfontmaker2](fntgrpbitfontmaker2)
## 6 Pixel Height
![fntpic/u8g2_font_5x7_mf_short.png](fntpic/u8g2_font_5x7_mf_short.png) u8g2_font_5x7_mf [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_mr_short.png](fntpic/u8g2_font_5x7_mr_short.png) u8g2_font_5x7_mr [X11](fntgrpx11)
![fntpic/u8g2_font_5x7_mn_short.png](fntpic/u8g2_font_5x7_mn_short.png) u8g2_font_5x7_mn [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_mf_short.png](fntpic/u8g2_font_5x8_mf_short.png) u8g2_font_5x8_mf [X11](fntgrpx11)
![fntpic/u8g2_font_5x8_mr_short.png](fntpic/u8g2_font_5x8_mr_short.png) u8g2_font_5x8_mr [X11](fntgrpx11)
![fntpic/u8g2_font_profont10_mf_short.png](fntpic/u8g2_font_profont10_mf_short.png) u8g2_font_profont10_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_mr_short.png](fntpic/u8g2_font_profont10_mr_short.png) u8g2_font_profont10_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont10_mn_short.png](fntpic/u8g2_font_profont10_mn_short.png) u8g2_font_profont10_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_spleen5x8_mf_short.png](fntpic/u8g2_font_spleen5x8_mf_short.png) u8g2_font_spleen5x8_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen5x8_mr_short.png](fntpic/u8g2_font_spleen5x8_mr_short.png) u8g2_font_spleen5x8_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen5x8_mu_short.png](fntpic/u8g2_font_spleen5x8_mu_short.png) u8g2_font_spleen5x8_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen5x8_me_short.png](fntpic/u8g2_font_spleen5x8_me_short.png) u8g2_font_spleen5x8_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_chroma48medium8_8r_short.png](fntpic/u8g2_font_chroma48medium8_8r_short.png) u8g2_font_chroma48medium8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_chroma48medium8_8n_short.png](fntpic/u8g2_font_chroma48medium8_8n_short.png) u8g2_font_chroma48medium8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_chroma48medium8_8u_short.png](fntpic/u8g2_font_chroma48medium8_8u_short.png) u8g2_font_chroma48medium8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_pcsenior_8f_short.png](fntpic/u8g2_font_pcsenior_8f_short.png) u8g2_font_pcsenior_8f [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pcsenior_8r_short.png](fntpic/u8g2_font_pcsenior_8r_short.png) u8g2_font_pcsenior_8r [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pcsenior_8n_short.png](fntpic/u8g2_font_pcsenior_8n_short.png) u8g2_font_pcsenior_8n [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pcsenior_8u_short.png](fntpic/u8g2_font_pcsenior_8u_short.png) u8g2_font_pcsenior_8u [Codeman38](fntgrpcodeman38)
## 7 Pixel Height
![fntpic/u8g2_font_5x8_mn_short.png](fntpic/u8g2_font_5x8_mn_short.png) u8g2_font_5x8_mn [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_mf_short.png](fntpic/u8g2_font_6x10_mf_short.png) u8g2_font_6x10_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x10_mr_short.png](fntpic/u8g2_font_6x10_mr_short.png) u8g2_font_6x10_mr [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_mf_short.png](fntpic/u8g2_font_6x12_mf_short.png) u8g2_font_6x12_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_mr_short.png](fntpic/u8g2_font_6x12_mr_short.png) u8g2_font_6x12_mr [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_me_short.png](fntpic/u8g2_font_6x12_me_short.png) u8g2_font_6x12_me [X11](fntgrpx11)
![fntpic/u8g2_font_6x12_m_symbols_short.png](fntpic/u8g2_font_6x12_m_symbols_short.png) u8g2_font_6x12_m_symbols [X11](fntgrpx11)
![fntpic/u8g2_font_profont11_mf_short.png](fntpic/u8g2_font_profont11_mf_short.png) u8g2_font_profont11_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_mr_short.png](fntpic/u8g2_font_profont11_mr_short.png) u8g2_font_profont11_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont11_mn_short.png](fntpic/u8g2_font_profont11_mn_short.png) u8g2_font_profont11_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_lord_mr_short.png](fntpic/u8g2_font_lord_mr_short.png) u8g2_font_lord_mr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_minuteconsole_mr_short.png](fntpic/u8g2_font_minuteconsole_mr_short.png) u8g2_font_minuteconsole_mr [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_spleen5x8_mn_short.png](fntpic/u8g2_font_spleen5x8_mn_short.png) u8g2_font_spleen5x8_mn [Spleen](fntgrpspleen)
![fntpic/u8g2_font_artossans8_8r_short.png](fntpic/u8g2_font_artossans8_8r_short.png) u8g2_font_artossans8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artossans8_8n_short.png](fntpic/u8g2_font_artossans8_8n_short.png) u8g2_font_artossans8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artossans8_8u_short.png](fntpic/u8g2_font_artossans8_8u_short.png) u8g2_font_artossans8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artosserif8_8r_short.png](fntpic/u8g2_font_artosserif8_8r_short.png) u8g2_font_artosserif8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artosserif8_8n_short.png](fntpic/u8g2_font_artosserif8_8n_short.png) u8g2_font_artosserif8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_artosserif8_8u_short.png](fntpic/u8g2_font_artosserif8_8u_short.png) u8g2_font_artosserif8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_saikyosansbold8_8n_short.png](fntpic/u8g2_font_saikyosansbold8_8n_short.png) u8g2_font_saikyosansbold8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_saikyosansbold8_8u_short.png](fntpic/u8g2_font_saikyosansbold8_8u_short.png) u8g2_font_saikyosansbold8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_torussansbold8_8r_short.png](fntpic/u8g2_font_torussansbold8_8r_short.png) u8g2_font_torussansbold8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_torussansbold8_8n_short.png](fntpic/u8g2_font_torussansbold8_8n_short.png) u8g2_font_torussansbold8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_torussansbold8_8u_short.png](fntpic/u8g2_font_torussansbold8_8u_short.png) u8g2_font_torussansbold8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriabold8_8r_short.png](fntpic/u8g2_font_victoriabold8_8r_short.png) u8g2_font_victoriabold8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriabold8_8n_short.png](fntpic/u8g2_font_victoriabold8_8n_short.png) u8g2_font_victoriabold8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriabold8_8u_short.png](fntpic/u8g2_font_victoriabold8_8u_short.png) u8g2_font_victoriabold8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriamedium8_8r_short.png](fntpic/u8g2_font_victoriamedium8_8r_short.png) u8g2_font_victoriamedium8_8r [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriamedium8_8n_short.png](fntpic/u8g2_font_victoriamedium8_8n_short.png) u8g2_font_victoriamedium8_8n [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_victoriamedium8_8u_short.png](fntpic/u8g2_font_victoriamedium8_8u_short.png) u8g2_font_victoriamedium8_8u [Open Game Art](fntgrpopengameart)
![fntpic/u8g2_font_pxplusibmcgathin_8f_short.png](fntpic/u8g2_font_pxplusibmcgathin_8f_short.png) u8g2_font_pxplusibmcgathin_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcgathin_8r_short.png](fntpic/u8g2_font_pxplusibmcgathin_8r_short.png) u8g2_font_pxplusibmcgathin_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcgathin_8n_short.png](fntpic/u8g2_font_pxplusibmcgathin_8n_short.png) u8g2_font_pxplusibmcgathin_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcgathin_8u_short.png](fntpic/u8g2_font_pxplusibmcgathin_8u_short.png) u8g2_font_pxplusibmcgathin_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8f_short.png](fntpic/u8g2_font_pxplusibmcga_8f_short.png) u8g2_font_pxplusibmcga_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8r_short.png](fntpic/u8g2_font_pxplusibmcga_8r_short.png) u8g2_font_pxplusibmcga_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8n_short.png](fntpic/u8g2_font_pxplusibmcga_8n_short.png) u8g2_font_pxplusibmcga_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmcga_8u_short.png](fntpic/u8g2_font_pxplusibmcga_8u_short.png) u8g2_font_pxplusibmcga_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8f_short.png](fntpic/u8g2_font_pxplustandynewtv_8f_short.png) u8g2_font_pxplustandynewtv_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8r_short.png](fntpic/u8g2_font_pxplustandynewtv_8r_short.png) u8g2_font_pxplustandynewtv_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8n_short.png](fntpic/u8g2_font_pxplustandynewtv_8n_short.png) u8g2_font_pxplustandynewtv_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8u_short.png](fntpic/u8g2_font_pxplustandynewtv_8u_short.png) u8g2_font_pxplustandynewtv_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplustandynewtv_8_all_short.png](fntpic/u8g2_font_pxplustandynewtv_8_all_short.png) u8g2_font_pxplustandynewtv_8_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
## 8 Pixel Height
![fntpic/u8g2_font_amstrad_cpc_extended_8f_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8f_short.png) u8g2_font_amstrad_cpc_extended_8f [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_amstrad_cpc_extended_8r_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8r_short.png) u8g2_font_amstrad_cpc_extended_8r [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_amstrad_cpc_extended_8n_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8n_short.png) u8g2_font_amstrad_cpc_extended_8n [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_amstrad_cpc_extended_8u_short.png](fntpic/u8g2_font_amstrad_cpc_extended_8u_short.png) u8g2_font_amstrad_cpc_extended_8u [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_6x10_mn_short.png](fntpic/u8g2_font_6x10_mn_short.png) u8g2_font_6x10_mn [X11](fntgrpx11)
![fntpic/u8g2_font_t0_11_mf_short.png](fntpic/u8g2_font_t0_11_mf_short.png) u8g2_font_t0_11_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_mr_short.png](fntpic/u8g2_font_t0_11_mr_short.png) u8g2_font_t0_11_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11_me_short.png](fntpic/u8g2_font_t0_11_me_short.png) u8g2_font_t0_11_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_mf_short.png](fntpic/u8g2_font_t0_11b_mf_short.png) u8g2_font_t0_11b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_mr_short.png](fntpic/u8g2_font_t0_11b_mr_short.png) u8g2_font_t0_11b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_me_short.png](fntpic/u8g2_font_t0_11b_me_short.png) u8g2_font_t0_11b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_mf_short.png](fntpic/u8g2_font_t0_12_mf_short.png) u8g2_font_t0_12_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_mr_short.png](fntpic/u8g2_font_t0_12_mr_short.png) u8g2_font_t0_12_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_me_short.png](fntpic/u8g2_font_t0_12_me_short.png) u8g2_font_t0_12_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_mf_short.png](fntpic/u8g2_font_t0_12b_mf_short.png) u8g2_font_t0_12b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_mr_short.png](fntpic/u8g2_font_t0_12b_mr_short.png) u8g2_font_t0_12b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_me_short.png](fntpic/u8g2_font_t0_12b_me_short.png) u8g2_font_t0_12b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_profont12_mf_short.png](fntpic/u8g2_font_profont12_mf_short.png) u8g2_font_profont12_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_mr_short.png](fntpic/u8g2_font_profont12_mr_short.png) u8g2_font_profont12_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont12_mn_short.png](fntpic/u8g2_font_profont12_mn_short.png) u8g2_font_profont12_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_abel_mr_short.png](fntpic/u8g2_font_abel_mr_short.png) u8g2_font_abel_mr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_spleen6x12_mf_short.png](fntpic/u8g2_font_spleen6x12_mf_short.png) u8g2_font_spleen6x12_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen6x12_mr_short.png](fntpic/u8g2_font_spleen6x12_mr_short.png) u8g2_font_spleen6x12_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen6x12_mu_short.png](fntpic/u8g2_font_spleen6x12_mu_short.png) u8g2_font_spleen6x12_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen6x12_me_short.png](fntpic/u8g2_font_spleen6x12_me_short.png) u8g2_font_spleen6x12_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_pressstart2p_8f_short.png](fntpic/u8g2_font_pressstart2p_8f_short.png) u8g2_font_pressstart2p_8f [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pressstart2p_8r_short.png](fntpic/u8g2_font_pressstart2p_8r_short.png) u8g2_font_pressstart2p_8r [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pressstart2p_8n_short.png](fntpic/u8g2_font_pressstart2p_8n_short.png) u8g2_font_pressstart2p_8n [Codeman38](fntgrpcodeman38)
![fntpic/u8g2_font_pressstart2p_8u_short.png](fntpic/u8g2_font_pressstart2p_8u_short.png) u8g2_font_pressstart2p_8u [Codeman38](fntgrpcodeman38)
## 9 Pixel Height
![fntpic/u8g2_font_6x13_mf_short.png](fntpic/u8g2_font_6x13_mf_short.png) u8g2_font_6x13_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x13_mr_short.png](fntpic/u8g2_font_6x13_mr_short.png) u8g2_font_6x13_mr [X11](fntgrpx11)
![fntpic/u8g2_font_6x13_me_short.png](fntpic/u8g2_font_6x13_me_short.png) u8g2_font_6x13_me [X11](fntgrpx11)
![fntpic/u8g2_font_6x13B_mf_short.png](fntpic/u8g2_font_6x13B_mf_short.png) u8g2_font_6x13B_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x13B_mr_short.png](fntpic/u8g2_font_6x13B_mr_short.png) u8g2_font_6x13B_mr [X11](fntgrpx11)
![fntpic/u8g2_font_6x13O_mf_short.png](fntpic/u8g2_font_6x13O_mf_short.png) u8g2_font_6x13O_mf [X11](fntgrpx11)
![fntpic/u8g2_font_6x13O_mr_short.png](fntpic/u8g2_font_6x13O_mr_short.png) u8g2_font_6x13O_mr [X11](fntgrpx11)
![fntpic/u8g2_font_7x13_mf_short.png](fntpic/u8g2_font_7x13_mf_short.png) u8g2_font_7x13_mf [X11](fntgrpx11)
![fntpic/u8g2_font_7x13_mr_short.png](fntpic/u8g2_font_7x13_mr_short.png) u8g2_font_7x13_mr [X11](fntgrpx11)
![fntpic/u8g2_font_7x13_me_short.png](fntpic/u8g2_font_7x13_me_short.png) u8g2_font_7x13_me [X11](fntgrpx11)
![fntpic/u8g2_font_7x13_m_symbols_short.png](fntpic/u8g2_font_7x13_m_symbols_short.png) u8g2_font_7x13_m_symbols [X11](fntgrpx11)
![fntpic/u8g2_font_7x13B_mf_short.png](fntpic/u8g2_font_7x13B_mf_short.png) u8g2_font_7x13B_mf [X11](fntgrpx11)
![fntpic/u8g2_font_7x13B_mr_short.png](fntpic/u8g2_font_7x13B_mr_short.png) u8g2_font_7x13B_mr [X11](fntgrpx11)
![fntpic/u8g2_font_7x13O_mf_short.png](fntpic/u8g2_font_7x13O_mf_short.png) u8g2_font_7x13O_mf [X11](fntgrpx11)
![fntpic/u8g2_font_7x13O_mr_short.png](fntpic/u8g2_font_7x13O_mr_short.png) u8g2_font_7x13O_mr [X11](fntgrpx11)
![fntpic/u8g2_font_8x13_mf_short.png](fntpic/u8g2_font_8x13_mf_short.png) u8g2_font_8x13_mf [X11](fntgrpx11)
![fntpic/u8g2_font_8x13_mr_short.png](fntpic/u8g2_font_8x13_mr_short.png) u8g2_font_8x13_mr [X11](fntgrpx11)
![fntpic/u8g2_font_8x13_me_short.png](fntpic/u8g2_font_8x13_me_short.png) u8g2_font_8x13_me [X11](fntgrpx11)
![fntpic/u8g2_font_8x13_m_symbols_short.png](fntpic/u8g2_font_8x13_m_symbols_short.png) u8g2_font_8x13_m_symbols [X11](fntgrpx11)
![fntpic/u8g2_font_8x13O_mf_short.png](fntpic/u8g2_font_8x13O_mf_short.png) u8g2_font_8x13O_mf [X11](fntgrpx11)
![fntpic/u8g2_font_8x13O_mr_short.png](fntpic/u8g2_font_8x13O_mr_short.png) u8g2_font_8x13O_mr [X11](fntgrpx11)
![fntpic/u8g2_font_t0_11_mn_short.png](fntpic/u8g2_font_t0_11_mn_short.png) u8g2_font_t0_11_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_11b_mn_short.png](fntpic/u8g2_font_t0_11b_mn_short.png) u8g2_font_t0_11b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12_mn_short.png](fntpic/u8g2_font_t0_12_mn_short.png) u8g2_font_t0_12_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_12b_mn_short.png](fntpic/u8g2_font_t0_12b_mn_short.png) u8g2_font_t0_12b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13_mf_short.png](fntpic/u8g2_font_t0_13_mf_short.png) u8g2_font_t0_13_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13_mr_short.png](fntpic/u8g2_font_t0_13_mr_short.png) u8g2_font_t0_13_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13_me_short.png](fntpic/u8g2_font_t0_13_me_short.png) u8g2_font_t0_13_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13b_mf_short.png](fntpic/u8g2_font_t0_13b_mf_short.png) u8g2_font_t0_13b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13b_mr_short.png](fntpic/u8g2_font_t0_13b_mr_short.png) u8g2_font_t0_13b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13b_me_short.png](fntpic/u8g2_font_t0_13b_me_short.png) u8g2_font_t0_13b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14_mf_short.png](fntpic/u8g2_font_t0_14_mf_short.png) u8g2_font_t0_14_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14_mr_short.png](fntpic/u8g2_font_t0_14_mr_short.png) u8g2_font_t0_14_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14_me_short.png](fntpic/u8g2_font_t0_14_me_short.png) u8g2_font_t0_14_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14b_mf_short.png](fntpic/u8g2_font_t0_14b_mf_short.png) u8g2_font_t0_14b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14b_mr_short.png](fntpic/u8g2_font_t0_14b_mr_short.png) u8g2_font_t0_14b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14b_me_short.png](fntpic/u8g2_font_t0_14b_me_short.png) u8g2_font_t0_14b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_profont15_mf_short.png](fntpic/u8g2_font_profont15_mf_short.png) u8g2_font_profont15_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont15_mr_short.png](fntpic/u8g2_font_profont15_mr_short.png) u8g2_font_profont15_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont15_mn_short.png](fntpic/u8g2_font_profont15_mn_short.png) u8g2_font_profont15_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_frigidaire_mr_short.png](fntpic/u8g2_font_frigidaire_mr_short.png) u8g2_font_frigidaire_mr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_9x6LED_mn_short.png](fntpic/u8g2_font_9x6LED_mn_short.png) u8g2_font_9x6LED_mn [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_spleen6x12_mn_short.png](fntpic/u8g2_font_spleen6x12_mn_short.png) u8g2_font_spleen6x12_mn [Spleen](fntgrpspleen)
![fntpic/u8g2_font_crox1cb_mf_short.png](fntpic/u8g2_font_crox1cb_mf_short.png) u8g2_font_crox1cb_mf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox1cb_mr_short.png](fntpic/u8g2_font_crox1cb_mr_short.png) u8g2_font_crox1cb_mr [crox](fntgrpcrox)
![fntpic/u8g2_font_crox1c_mf_short.png](fntpic/u8g2_font_crox1c_mf_short.png) u8g2_font_crox1c_mf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox1c_mr_short.png](fntpic/u8g2_font_crox1c_mr_short.png) u8g2_font_crox1c_mr [crox](fntgrpcrox)
## 10 Pixel Height
![fntpic/u8g2_font_6x12_mn_short.png](fntpic/u8g2_font_6x12_mn_short.png) u8g2_font_6x12_mn [X11](fntgrpx11)
![fntpic/u8g2_font_7x14_mf_short.png](fntpic/u8g2_font_7x14_mf_short.png) u8g2_font_7x14_mf [X11](fntgrpx11)
![fntpic/u8g2_font_7x14_mr_short.png](fntpic/u8g2_font_7x14_mr_short.png) u8g2_font_7x14_mr [X11](fntgrpx11)
![fntpic/u8g2_font_7x14B_mf_short.png](fntpic/u8g2_font_7x14B_mf_short.png) u8g2_font_7x14B_mf [X11](fntgrpx11)
![fntpic/u8g2_font_7x14B_mr_short.png](fntpic/u8g2_font_7x14B_mr_short.png) u8g2_font_7x14B_mr [X11](fntgrpx11)
![fntpic/u8g2_font_8x13B_mf_short.png](fntpic/u8g2_font_8x13B_mf_short.png) u8g2_font_8x13B_mf [X11](fntgrpx11)
![fntpic/u8g2_font_8x13B_mr_short.png](fntpic/u8g2_font_8x13B_mr_short.png) u8g2_font_8x13B_mr [X11](fntgrpx11)
![fntpic/u8g2_font_9x15_mf_short.png](fntpic/u8g2_font_9x15_mf_short.png) u8g2_font_9x15_mf [X11](fntgrpx11)
![fntpic/u8g2_font_9x15_mr_short.png](fntpic/u8g2_font_9x15_mr_short.png) u8g2_font_9x15_mr [X11](fntgrpx11)
![fntpic/u8g2_font_9x15_me_short.png](fntpic/u8g2_font_9x15_me_short.png) u8g2_font_9x15_me [X11](fntgrpx11)
![fntpic/u8g2_font_9x15_m_symbols_short.png](fntpic/u8g2_font_9x15_m_symbols_short.png) u8g2_font_9x15_m_symbols [X11](fntgrpx11)
![fntpic/u8g2_font_9x15B_mf_short.png](fntpic/u8g2_font_9x15B_mf_short.png) u8g2_font_9x15B_mf [X11](fntgrpx11)
![fntpic/u8g2_font_9x15B_mr_short.png](fntpic/u8g2_font_9x15B_mr_short.png) u8g2_font_9x15B_mr [X11](fntgrpx11)
![fntpic/u8g2_font_9x18_mf_short.png](fntpic/u8g2_font_9x18_mf_short.png) u8g2_font_9x18_mf [X11](fntgrpx11)
![fntpic/u8g2_font_9x18_mr_short.png](fntpic/u8g2_font_9x18_mr_short.png) u8g2_font_9x18_mr [X11](fntgrpx11)
![fntpic/u8g2_font_9x18B_mf_short.png](fntpic/u8g2_font_9x18B_mf_short.png) u8g2_font_9x18B_mf [X11](fntgrpx11)
![fntpic/u8g2_font_9x18B_mr_short.png](fntpic/u8g2_font_9x18B_mr_short.png) u8g2_font_9x18B_mr [X11](fntgrpx11)
![fntpic/u8g2_font_t0_15_mf_short.png](fntpic/u8g2_font_t0_15_mf_short.png) u8g2_font_t0_15_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_15_mr_short.png](fntpic/u8g2_font_t0_15_mr_short.png) u8g2_font_t0_15_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_15_me_short.png](fntpic/u8g2_font_t0_15_me_short.png) u8g2_font_t0_15_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_15b_mf_short.png](fntpic/u8g2_font_t0_15b_mf_short.png) u8g2_font_t0_15b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_15b_mr_short.png](fntpic/u8g2_font_t0_15b_mr_short.png) u8g2_font_t0_15b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_15b_me_short.png](fntpic/u8g2_font_t0_15b_me_short.png) u8g2_font_t0_15b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16_mf_short.png](fntpic/u8g2_font_t0_16_mf_short.png) u8g2_font_t0_16_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16_mr_short.png](fntpic/u8g2_font_t0_16_mr_short.png) u8g2_font_t0_16_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16_me_short.png](fntpic/u8g2_font_t0_16_me_short.png) u8g2_font_t0_16_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16b_mf_short.png](fntpic/u8g2_font_t0_16b_mf_short.png) u8g2_font_t0_16b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16b_mr_short.png](fntpic/u8g2_font_t0_16b_mr_short.png) u8g2_font_t0_16b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16b_me_short.png](fntpic/u8g2_font_t0_16b_me_short.png) u8g2_font_t0_16b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_spleen8x16_mf_short.png](fntpic/u8g2_font_spleen8x16_mf_short.png) u8g2_font_spleen8x16_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen8x16_mr_short.png](fntpic/u8g2_font_spleen8x16_mr_short.png) u8g2_font_spleen8x16_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen8x16_mu_short.png](fntpic/u8g2_font_spleen8x16_mu_short.png) u8g2_font_spleen8x16_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen8x16_me_short.png](fntpic/u8g2_font_spleen8x16_me_short.png) u8g2_font_spleen8x16_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_crox2cb_mf_short.png](fntpic/u8g2_font_crox2cb_mf_short.png) u8g2_font_crox2cb_mf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2cb_mr_short.png](fntpic/u8g2_font_crox2cb_mr_short.png) u8g2_font_crox2cb_mr [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2c_mf_short.png](fntpic/u8g2_font_crox2c_mf_short.png) u8g2_font_crox2c_mf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2c_mr_short.png](fntpic/u8g2_font_crox2c_mr_short.png) u8g2_font_crox2c_mr [crox](fntgrpcrox)
![fntpic/u8g2_font_pxplusibmvga9_mf_short.png](fntpic/u8g2_font_pxplusibmvga9_mf_short.png) u8g2_font_pxplusibmvga9_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga9_mr_short.png](fntpic/u8g2_font_pxplusibmvga9_mr_short.png) u8g2_font_pxplusibmvga9_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga9_mn_short.png](fntpic/u8g2_font_pxplusibmvga9_mn_short.png) u8g2_font_pxplusibmvga9_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga9_m_all_short.png](fntpic/u8g2_font_pxplusibmvga9_m_all_short.png) u8g2_font_pxplusibmvga9_m_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga8_mf_short.png](fntpic/u8g2_font_pxplusibmvga8_mf_short.png) u8g2_font_pxplusibmvga8_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga8_mr_short.png](fntpic/u8g2_font_pxplusibmvga8_mr_short.png) u8g2_font_pxplusibmvga8_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga8_mn_short.png](fntpic/u8g2_font_pxplusibmvga8_mn_short.png) u8g2_font_pxplusibmvga8_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_pxplusibmvga8_m_all_short.png](fntpic/u8g2_font_pxplusibmvga8_m_all_short.png) u8g2_font_pxplusibmvga8_m_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
## 11 Pixel Height
![fntpic/u8g2_font_6x13_mn_short.png](fntpic/u8g2_font_6x13_mn_short.png) u8g2_font_6x13_mn [X11](fntgrpx11)
![fntpic/u8g2_font_6x13B_mn_short.png](fntpic/u8g2_font_6x13B_mn_short.png) u8g2_font_6x13B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_6x13O_mn_short.png](fntpic/u8g2_font_6x13O_mn_short.png) u8g2_font_6x13O_mn [X11](fntgrpx11)
![fntpic/u8g2_font_7x13_mn_short.png](fntpic/u8g2_font_7x13_mn_short.png) u8g2_font_7x13_mn [X11](fntgrpx11)
![fntpic/u8g2_font_7x13B_mn_short.png](fntpic/u8g2_font_7x13B_mn_short.png) u8g2_font_7x13B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_7x13O_mn_short.png](fntpic/u8g2_font_7x13O_mn_short.png) u8g2_font_7x13O_mn [X11](fntgrpx11)
![fntpic/u8g2_font_8x13_mn_short.png](fntpic/u8g2_font_8x13_mn_short.png) u8g2_font_8x13_mn [X11](fntgrpx11)
![fntpic/u8g2_font_8x13B_mn_short.png](fntpic/u8g2_font_8x13B_mn_short.png) u8g2_font_8x13B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_8x13O_mn_short.png](fntpic/u8g2_font_8x13O_mn_short.png) u8g2_font_8x13O_mn [X11](fntgrpx11)
![fntpic/u8g2_font_t0_13_mn_short.png](fntpic/u8g2_font_t0_13_mn_short.png) u8g2_font_t0_13_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_13b_mn_short.png](fntpic/u8g2_font_t0_13b_mn_short.png) u8g2_font_t0_13b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14_mn_short.png](fntpic/u8g2_font_t0_14_mn_short.png) u8g2_font_t0_14_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_14b_mn_short.png](fntpic/u8g2_font_t0_14b_mn_short.png) u8g2_font_t0_14b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17_mf_short.png](fntpic/u8g2_font_t0_17_mf_short.png) u8g2_font_t0_17_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17_mr_short.png](fntpic/u8g2_font_t0_17_mr_short.png) u8g2_font_t0_17_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17_me_short.png](fntpic/u8g2_font_t0_17_me_short.png) u8g2_font_t0_17_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17b_mf_short.png](fntpic/u8g2_font_t0_17b_mf_short.png) u8g2_font_t0_17b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17b_mr_short.png](fntpic/u8g2_font_t0_17b_mr_short.png) u8g2_font_t0_17b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17b_me_short.png](fntpic/u8g2_font_t0_17b_me_short.png) u8g2_font_t0_17b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18_mf_short.png](fntpic/u8g2_font_t0_18_mf_short.png) u8g2_font_t0_18_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18_mr_short.png](fntpic/u8g2_font_t0_18_mr_short.png) u8g2_font_t0_18_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18_me_short.png](fntpic/u8g2_font_t0_18_me_short.png) u8g2_font_t0_18_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18b_mf_short.png](fntpic/u8g2_font_t0_18b_mf_short.png) u8g2_font_t0_18b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18b_mr_short.png](fntpic/u8g2_font_t0_18b_mr_short.png) u8g2_font_t0_18b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18b_me_short.png](fntpic/u8g2_font_t0_18b_me_short.png) u8g2_font_t0_18b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_profont17_mf_short.png](fntpic/u8g2_font_profont17_mf_short.png) u8g2_font_profont17_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont17_mr_short.png](fntpic/u8g2_font_profont17_mr_short.png) u8g2_font_profont17_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont17_mn_short.png](fntpic/u8g2_font_profont17_mn_short.png) u8g2_font_profont17_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_crox1cb_mn_short.png](fntpic/u8g2_font_crox1cb_mn_short.png) u8g2_font_crox1cb_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox1c_mn_short.png](fntpic/u8g2_font_crox1c_mn_short.png) u8g2_font_crox1c_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_cu12_mf_short.png](fntpic/u8g2_font_cu12_mf_short.png) u8g2_font_cu12_mf [cu12](fntgrpcu12)
![fntpic/u8g2_font_cu12_mr_short.png](fntpic/u8g2_font_cu12_mr_short.png) u8g2_font_cu12_mr [cu12](fntgrpcu12)
![fntpic/u8g2_font_cu12_mn_short.png](fntpic/u8g2_font_cu12_mn_short.png) u8g2_font_cu12_mn [cu12](fntgrpcu12)
![fntpic/u8g2_font_cu12_me_short.png](fntpic/u8g2_font_cu12_me_short.png) u8g2_font_cu12_me [cu12](fntgrpcu12)
![fntpic/u8g2_font_px437wyse700a_mf_short.png](fntpic/u8g2_font_px437wyse700a_mf_short.png) u8g2_font_px437wyse700a_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_px437wyse700a_mr_short.png](fntpic/u8g2_font_px437wyse700a_mr_short.png) u8g2_font_px437wyse700a_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_px437wyse700a_mn_short.png](fntpic/u8g2_font_px437wyse700a_mn_short.png) u8g2_font_px437wyse700a_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_px437wyse700b_mf_short.png](fntpic/u8g2_font_px437wyse700b_mf_short.png) u8g2_font_px437wyse700b_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_px437wyse700b_mr_short.png](fntpic/u8g2_font_px437wyse700b_mr_short.png) u8g2_font_px437wyse700b_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
![fntpic/u8g2_font_px437wyse700b_mn_short.png](fntpic/u8g2_font_px437wyse700b_mn_short.png) u8g2_font_px437wyse700b_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
## 12 Pixel Height
![fntpic/u8g2_font_freedoomr10_mu_short.png](fntpic/u8g2_font_freedoomr10_mu_short.png) u8g2_font_freedoomr10_mu [U8glib](fntgrpu8g)
![fntpic/u8g2_font_7x14_mn_short.png](fntpic/u8g2_font_7x14_mn_short.png) u8g2_font_7x14_mn [X11](fntgrpx11)
![fntpic/u8g2_font_7x14B_mn_short.png](fntpic/u8g2_font_7x14B_mn_short.png) u8g2_font_7x14B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_9x15_mn_short.png](fntpic/u8g2_font_9x15_mn_short.png) u8g2_font_9x15_mn [X11](fntgrpx11)
![fntpic/u8g2_font_9x15B_mn_short.png](fntpic/u8g2_font_9x15B_mn_short.png) u8g2_font_9x15B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_t0_15_mn_short.png](fntpic/u8g2_font_t0_15_mn_short.png) u8g2_font_t0_15_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_15b_mn_short.png](fntpic/u8g2_font_t0_15b_mn_short.png) u8g2_font_t0_15b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16_mn_short.png](fntpic/u8g2_font_t0_16_mn_short.png) u8g2_font_t0_16_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_16b_mn_short.png](fntpic/u8g2_font_t0_16b_mn_short.png) u8g2_font_t0_16b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_tenstamps_mf_short.png](fntpic/u8g2_font_tenstamps_mf_short.png) u8g2_font_tenstamps_mf [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_tenstamps_mr_short.png](fntpic/u8g2_font_tenstamps_mr_short.png) u8g2_font_tenstamps_mr [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_tenstamps_mn_short.png](fntpic/u8g2_font_tenstamps_mn_short.png) u8g2_font_tenstamps_mn [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_tenstamps_mu_short.png](fntpic/u8g2_font_tenstamps_mu_short.png) u8g2_font_tenstamps_mu [Geoff](fntgrpgeoff)
![fntpic/u8g2_font_iconquadpix_m_all_short.png](fntpic/u8g2_font_iconquadpix_m_all_short.png) u8g2_font_iconquadpix_m_all [bitfontmaker2](fntgrpbitfontmaker2)
![fntpic/u8g2_font_12x6LED_mn_short.png](fntpic/u8g2_font_12x6LED_mn_short.png) u8g2_font_12x6LED_mn [HasanKazan](fntgrphasankazan)
![fntpic/u8g2_font_spleen8x16_mn_short.png](fntpic/u8g2_font_spleen8x16_mn_short.png) u8g2_font_spleen8x16_mn [Spleen](fntgrpspleen)
![fntpic/u8g2_font_crox3cb_mf_short.png](fntpic/u8g2_font_crox3cb_mf_short.png) u8g2_font_crox3cb_mf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3cb_mr_short.png](fntpic/u8g2_font_crox3cb_mr_short.png) u8g2_font_crox3cb_mr [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3c_mf_short.png](fntpic/u8g2_font_crox3c_mf_short.png) u8g2_font_crox3c_mf [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3c_mr_short.png](fntpic/u8g2_font_crox3c_mr_short.png) u8g2_font_crox3c_mr [crox](fntgrpcrox)
## 13 Pixel Height
![fntpic/u8g2_font_10x20_mf_short.png](fntpic/u8g2_font_10x20_mf_short.png) u8g2_font_10x20_mf [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_mr_short.png](fntpic/u8g2_font_10x20_mr_short.png) u8g2_font_10x20_mr [X11](fntgrpx11)
![fntpic/u8g2_font_10x20_me_short.png](fntpic/u8g2_font_10x20_me_short.png) u8g2_font_10x20_me [X11](fntgrpx11)
![fntpic/u8g2_font_t0_22_mf_short.png](fntpic/u8g2_font_t0_22_mf_short.png) u8g2_font_t0_22_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_mr_short.png](fntpic/u8g2_font_t0_22_mr_short.png) u8g2_font_t0_22_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22_me_short.png](fntpic/u8g2_font_t0_22_me_short.png) u8g2_font_t0_22_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_mf_short.png](fntpic/u8g2_font_t0_22b_mf_short.png) u8g2_font_t0_22b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_mr_short.png](fntpic/u8g2_font_t0_22b_mr_short.png) u8g2_font_t0_22b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_me_short.png](fntpic/u8g2_font_t0_22b_me_short.png) u8g2_font_t0_22b_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_crox2cb_mn_short.png](fntpic/u8g2_font_crox2cb_mn_short.png) u8g2_font_crox2cb_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox2c_mn_short.png](fntpic/u8g2_font_crox2c_mn_short.png) u8g2_font_crox2c_mn [crox](fntgrpcrox)
## 14 Pixel Height
![fntpic/u8g2_font_9x18_mn_short.png](fntpic/u8g2_font_9x18_mn_short.png) u8g2_font_9x18_mn [X11](fntgrpx11)
![fntpic/u8g2_font_9x18B_mn_short.png](fntpic/u8g2_font_9x18B_mn_short.png) u8g2_font_9x18B_mn [X11](fntgrpx11)
![fntpic/u8g2_font_t0_17_mn_short.png](fntpic/u8g2_font_t0_17_mn_short.png) u8g2_font_t0_17_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_17b_mn_short.png](fntpic/u8g2_font_t0_17b_mn_short.png) u8g2_font_t0_17b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18_mn_short.png](fntpic/u8g2_font_t0_18_mn_short.png) u8g2_font_t0_18_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_18b_mn_short.png](fntpic/u8g2_font_t0_18b_mn_short.png) u8g2_font_t0_18b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_profont22_mf_short.png](fntpic/u8g2_font_profont22_mf_short.png) u8g2_font_profont22_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_mr_short.png](fntpic/u8g2_font_profont22_mr_short.png) u8g2_font_profont22_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont22_mn_short.png](fntpic/u8g2_font_profont22_mn_short.png) u8g2_font_profont22_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_chargen_92_mf_short.png](fntpic/u8g2_font_chargen_92_mf_short.png) u8g2_font_chargen_92_mf [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_mr_short.png](fntpic/u8g2_font_chargen_92_mr_short.png) u8g2_font_chargen_92_mr [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_mn_short.png](fntpic/u8g2_font_chargen_92_mn_short.png) u8g2_font_chargen_92_mn [Fontstruct](fntgrpfontstruct)
![fntpic/u8g2_font_chargen_92_me_short.png](fntpic/u8g2_font_chargen_92_me_short.png) u8g2_font_chargen_92_me [Fontstruct](fntgrpfontstruct)
## 15 Pixel Height
![fntpic/u8g2_font_spleen12x24_mf_short.png](fntpic/u8g2_font_spleen12x24_mf_short.png) u8g2_font_spleen12x24_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen12x24_mr_short.png](fntpic/u8g2_font_spleen12x24_mr_short.png) u8g2_font_spleen12x24_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen12x24_mu_short.png](fntpic/u8g2_font_spleen12x24_mu_short.png) u8g2_font_spleen12x24_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen12x24_me_short.png](fntpic/u8g2_font_spleen12x24_me_short.png) u8g2_font_spleen12x24_me [Spleen](fntgrpspleen)
![fntpic/u8g2_font_VCR_OSD_mf_short.png](fntpic/u8g2_font_VCR_OSD_mf_short.png) u8g2_font_VCR_OSD_mf [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mr_short.png](fntpic/u8g2_font_VCR_OSD_mr_short.png) u8g2_font_VCR_OSD_mr [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mn_short.png](fntpic/u8g2_font_VCR_OSD_mn_short.png) u8g2_font_VCR_OSD_mn [dafont](fntgrpdafont)
![fntpic/u8g2_font_VCR_OSD_mu_short.png](fntpic/u8g2_font_VCR_OSD_mu_short.png) u8g2_font_VCR_OSD_mu [dafont](fntgrpdafont)
## 16 Pixel Height
![fntpic/u8g2_font_10x20_mn_short.png](fntpic/u8g2_font_10x20_mn_short.png) u8g2_font_10x20_mn [X11](fntgrpx11)
![fntpic/u8g2_font_crox3cb_mn_short.png](fntpic/u8g2_font_crox3cb_mn_short.png) u8g2_font_crox3cb_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_crox3c_mn_short.png](fntpic/u8g2_font_crox3c_mn_short.png) u8g2_font_crox3c_mn [crox](fntgrpcrox)
![fntpic/u8g2_font_inr16_mf_short.png](fntpic/u8g2_font_inr16_mf_short.png) u8g2_font_inr16_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr16_mr_short.png](fntpic/u8g2_font_inr16_mr_short.png) u8g2_font_inr16_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr16_mn_short.png](fntpic/u8g2_font_inr16_mn_short.png) u8g2_font_inr16_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb16_mf_short.png](fntpic/u8g2_font_inb16_mf_short.png) u8g2_font_inb16_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb16_mr_short.png](fntpic/u8g2_font_inb16_mr_short.png) u8g2_font_inb16_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb16_mn_short.png](fntpic/u8g2_font_inb16_mn_short.png) u8g2_font_inb16_mn [Inconsolata](fntgrpinconsolata)
## 17 Pixel Height
![fntpic/u8g2_font_t0_22_mn_short.png](fntpic/u8g2_font_t0_22_mn_short.png) u8g2_font_t0_22_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_22b_mn_short.png](fntpic/u8g2_font_t0_22b_mn_short.png) u8g2_font_t0_22b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30_mf_short.png](fntpic/u8g2_font_t0_30_mf_short.png) u8g2_font_t0_30_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30_mr_short.png](fntpic/u8g2_font_t0_30_mr_short.png) u8g2_font_t0_30_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30_me_short.png](fntpic/u8g2_font_t0_30_me_short.png) u8g2_font_t0_30_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30b_mf_short.png](fntpic/u8g2_font_t0_30b_mf_short.png) u8g2_font_t0_30b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30b_mr_short.png](fntpic/u8g2_font_t0_30b_mr_short.png) u8g2_font_t0_30b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30b_me_short.png](fntpic/u8g2_font_t0_30b_me_short.png) u8g2_font_t0_30b_me [UW ttyp0](fntgrpttyp0)
## 19 Pixel Height
![fntpic/u8g2_font_profont29_mf_short.png](fntpic/u8g2_font_profont29_mf_short.png) u8g2_font_profont29_mf [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont29_mr_short.png](fntpic/u8g2_font_profont29_mr_short.png) u8g2_font_profont29_mr [Profont](fntgrpprofont)
![fntpic/u8g2_font_profont29_mn_short.png](fntpic/u8g2_font_profont29_mn_short.png) u8g2_font_profont29_mn [Profont](fntgrpprofont)
![fntpic/u8g2_font_spleen12x24_mn_short.png](fntpic/u8g2_font_spleen12x24_mn_short.png) u8g2_font_spleen12x24_mn [Spleen](fntgrpspleen)
![fntpic/u8g2_font_inr19_mf_short.png](fntpic/u8g2_font_inr19_mf_short.png) u8g2_font_inr19_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr19_mr_short.png](fntpic/u8g2_font_inr19_mr_short.png) u8g2_font_inr19_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr19_mn_short.png](fntpic/u8g2_font_inr19_mn_short.png) u8g2_font_inr19_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb19_mf_short.png](fntpic/u8g2_font_inb19_mf_short.png) u8g2_font_inb19_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb19_mr_short.png](fntpic/u8g2_font_inb19_mr_short.png) u8g2_font_inb19_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb19_mn_short.png](fntpic/u8g2_font_inb19_mn_short.png) u8g2_font_inb19_mn [Inconsolata](fntgrpinconsolata)
## 20 Pixel Height
![fntpic/u8g2_font_spleen16x32_mf_short.png](fntpic/u8g2_font_spleen16x32_mf_short.png) u8g2_font_spleen16x32_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen16x32_mr_short.png](fntpic/u8g2_font_spleen16x32_mr_short.png) u8g2_font_spleen16x32_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen16x32_mu_short.png](fntpic/u8g2_font_spleen16x32_mu_short.png) u8g2_font_spleen16x32_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen16x32_me_short.png](fntpic/u8g2_font_spleen16x32_me_short.png) u8g2_font_spleen16x32_me [Spleen](fntgrpspleen)
## 21 Pixel Height
![fntpic/u8g2_font_inb21_mf_short.png](fntpic/u8g2_font_inb21_mf_short.png) u8g2_font_inb21_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb21_mr_short.png](fntpic/u8g2_font_inb21_mr_short.png) u8g2_font_inb21_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb21_mn_short.png](fntpic/u8g2_font_inb21_mn_short.png) u8g2_font_inb21_mn [Inconsolata](fntgrpinconsolata)
## 22 Pixel Height
![fntpic/u8g2_font_inr21_mf_short.png](fntpic/u8g2_font_inr21_mf_short.png) u8g2_font_inr21_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr21_mr_short.png](fntpic/u8g2_font_inr21_mr_short.png) u8g2_font_inr21_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr21_mn_short.png](fntpic/u8g2_font_inr21_mn_short.png) u8g2_font_inr21_mn [Inconsolata](fntgrpinconsolata)
## 23 Pixel Height
![fntpic/u8g2_font_t0_30_mn_short.png](fntpic/u8g2_font_t0_30_mn_short.png) u8g2_font_t0_30_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_30b_mn_short.png](fntpic/u8g2_font_t0_30b_mn_short.png) u8g2_font_t0_30b_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40_mf_short.png](fntpic/u8g2_font_t0_40_mf_short.png) u8g2_font_t0_40_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40_mr_short.png](fntpic/u8g2_font_t0_40_mr_short.png) u8g2_font_t0_40_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40_me_short.png](fntpic/u8g2_font_t0_40_me_short.png) u8g2_font_t0_40_me [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40b_mf_short.png](fntpic/u8g2_font_t0_40b_mf_short.png) u8g2_font_t0_40b_mf [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40b_mr_short.png](fntpic/u8g2_font_t0_40b_mr_short.png) u8g2_font_t0_40b_mr [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40b_me_short.png](fntpic/u8g2_font_t0_40b_me_short.png) u8g2_font_t0_40b_me [UW ttyp0](fntgrpttyp0)
## 24 Pixel Height
![fntpic/u8g2_font_inb24_mf_short.png](fntpic/u8g2_font_inb24_mf_short.png) u8g2_font_inb24_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb24_mr_short.png](fntpic/u8g2_font_inb24_mr_short.png) u8g2_font_inb24_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb24_mn_short.png](fntpic/u8g2_font_inb24_mn_short.png) u8g2_font_inb24_mn [Inconsolata](fntgrpinconsolata)
## 25 Pixel Height
![fntpic/u8g2_font_inr24_mf_short.png](fntpic/u8g2_font_inr24_mf_short.png) u8g2_font_inr24_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr24_mr_short.png](fntpic/u8g2_font_inr24_mr_short.png) u8g2_font_inr24_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr24_mn_short.png](fntpic/u8g2_font_inr24_mn_short.png) u8g2_font_inr24_mn [Inconsolata](fntgrpinconsolata)
## 26 Pixel Height
![fntpic/u8g2_font_freedoomr25_mn_short.png](fntpic/u8g2_font_freedoomr25_mn_short.png) u8g2_font_freedoomr25_mn [U8glib](fntgrpu8g)
![fntpic/u8g2_font_spleen16x32_mn_short.png](fntpic/u8g2_font_spleen16x32_mn_short.png) u8g2_font_spleen16x32_mn [Spleen](fntgrpspleen)
## 27 Pixel Height
![fntpic/u8g2_font_inr27_mf_short.png](fntpic/u8g2_font_inr27_mf_short.png) u8g2_font_inr27_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr27_mr_short.png](fntpic/u8g2_font_inr27_mr_short.png) u8g2_font_inr27_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr27_mn_short.png](fntpic/u8g2_font_inr27_mn_short.png) u8g2_font_inr27_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb27_mf_short.png](fntpic/u8g2_font_inb27_mf_short.png) u8g2_font_inb27_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb27_mr_short.png](fntpic/u8g2_font_inb27_mr_short.png) u8g2_font_inb27_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb27_mn_short.png](fntpic/u8g2_font_inb27_mn_short.png) u8g2_font_inb27_mn [Inconsolata](fntgrpinconsolata)
## 30 Pixel Height
![fntpic/u8g2_font_inr30_mf_short.png](fntpic/u8g2_font_inr30_mf_short.png) u8g2_font_inr30_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr30_mr_short.png](fntpic/u8g2_font_inr30_mr_short.png) u8g2_font_inr30_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr30_mn_short.png](fntpic/u8g2_font_inr30_mn_short.png) u8g2_font_inr30_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb30_mf_short.png](fntpic/u8g2_font_inb30_mf_short.png) u8g2_font_inb30_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb30_mr_short.png](fntpic/u8g2_font_inb30_mr_short.png) u8g2_font_inb30_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb30_mn_short.png](fntpic/u8g2_font_inb30_mn_short.png) u8g2_font_inb30_mn [Inconsolata](fntgrpinconsolata)
## 31 Pixel Height
![fntpic/u8g2_font_t0_40_mn_short.png](fntpic/u8g2_font_t0_40_mn_short.png) u8g2_font_t0_40_mn [UW ttyp0](fntgrpttyp0)
![fntpic/u8g2_font_t0_40b_mn_short.png](fntpic/u8g2_font_t0_40b_mn_short.png) u8g2_font_t0_40b_mn [UW ttyp0](fntgrpttyp0)
## 33 Pixel Height
![fntpic/u8g2_font_inr33_mf_short.png](fntpic/u8g2_font_inr33_mf_short.png) u8g2_font_inr33_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr33_mr_short.png](fntpic/u8g2_font_inr33_mr_short.png) u8g2_font_inr33_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr33_mn_short.png](fntpic/u8g2_font_inr33_mn_short.png) u8g2_font_inr33_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb33_mf_short.png](fntpic/u8g2_font_inb33_mf_short.png) u8g2_font_inb33_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb33_mr_short.png](fntpic/u8g2_font_inb33_mr_short.png) u8g2_font_inb33_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb33_mn_short.png](fntpic/u8g2_font_inb33_mn_short.png) u8g2_font_inb33_mn [Inconsolata](fntgrpinconsolata)
## 38 Pixel Height
![fntpic/u8g2_font_inb38_mf_short.png](fntpic/u8g2_font_inb38_mf_short.png) u8g2_font_inb38_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb38_mr_short.png](fntpic/u8g2_font_inb38_mr_short.png) u8g2_font_inb38_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb38_mn_short.png](fntpic/u8g2_font_inb38_mn_short.png) u8g2_font_inb38_mn [Inconsolata](fntgrpinconsolata)
## 39 Pixel Height
![fntpic/u8g2_font_inr38_mf_short.png](fntpic/u8g2_font_inr38_mf_short.png) u8g2_font_inr38_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr38_mr_short.png](fntpic/u8g2_font_inr38_mr_short.png) u8g2_font_inr38_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr38_mn_short.png](fntpic/u8g2_font_inr38_mn_short.png) u8g2_font_inr38_mn [Inconsolata](fntgrpinconsolata)
## 40 Pixel Height
![fntpic/u8g2_font_spleen32x64_mf_short.png](fntpic/u8g2_font_spleen32x64_mf_short.png) u8g2_font_spleen32x64_mf [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen32x64_mr_short.png](fntpic/u8g2_font_spleen32x64_mr_short.png) u8g2_font_spleen32x64_mr [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen32x64_mu_short.png](fntpic/u8g2_font_spleen32x64_mu_short.png) u8g2_font_spleen32x64_mu [Spleen](fntgrpspleen)
![fntpic/u8g2_font_spleen32x64_me_short.png](fntpic/u8g2_font_spleen32x64_me_short.png) u8g2_font_spleen32x64_me [Spleen](fntgrpspleen)
## 42 Pixel Height
![fntpic/u8g2_font_7Segments_26x42_mn_short.png](fntpic/u8g2_font_7Segments_26x42_mn_short.png) u8g2_font_7Segments_26x42_mn [U8glib](fntgrpu8g)
![fntpic/u8g2_font_inr42_mf_short.png](fntpic/u8g2_font_inr42_mf_short.png) u8g2_font_inr42_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr42_mr_short.png](fntpic/u8g2_font_inr42_mr_short.png) u8g2_font_inr42_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr42_mn_short.png](fntpic/u8g2_font_inr42_mn_short.png) u8g2_font_inr42_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb42_mf_short.png](fntpic/u8g2_font_inb42_mf_short.png) u8g2_font_inb42_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb42_mr_short.png](fntpic/u8g2_font_inb42_mr_short.png) u8g2_font_inb42_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb42_mn_short.png](fntpic/u8g2_font_inb42_mn_short.png) u8g2_font_inb42_mn [Inconsolata](fntgrpinconsolata)
## 46 Pixel Height
![fntpic/u8g2_font_inr46_mf_short.png](fntpic/u8g2_font_inr46_mf_short.png) u8g2_font_inr46_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr46_mr_short.png](fntpic/u8g2_font_inr46_mr_short.png) u8g2_font_inr46_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr46_mn_short.png](fntpic/u8g2_font_inr46_mn_short.png) u8g2_font_inr46_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb46_mf_short.png](fntpic/u8g2_font_inb46_mf_short.png) u8g2_font_inb46_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb46_mr_short.png](fntpic/u8g2_font_inb46_mr_short.png) u8g2_font_inb46_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb46_mn_short.png](fntpic/u8g2_font_inb46_mn_short.png) u8g2_font_inb46_mn [Inconsolata](fntgrpinconsolata)
## 49 Pixel Height
![fntpic/u8g2_font_inr49_mf_short.png](fntpic/u8g2_font_inr49_mf_short.png) u8g2_font_inr49_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr49_mr_short.png](fntpic/u8g2_font_inr49_mr_short.png) u8g2_font_inr49_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr49_mn_short.png](fntpic/u8g2_font_inr49_mn_short.png) u8g2_font_inr49_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb49_mf_short.png](fntpic/u8g2_font_inb49_mf_short.png) u8g2_font_inb49_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb49_mr_short.png](fntpic/u8g2_font_inb49_mr_short.png) u8g2_font_inb49_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb49_mn_short.png](fntpic/u8g2_font_inb49_mn_short.png) u8g2_font_inb49_mn [Inconsolata](fntgrpinconsolata)
## 52 Pixel Height
![fntpic/u8g2_font_spleen32x64_mn_short.png](fntpic/u8g2_font_spleen32x64_mn_short.png) u8g2_font_spleen32x64_mn [Spleen](fntgrpspleen)
## 53 Pixel Height
![fntpic/u8g2_font_inr53_mf_short.png](fntpic/u8g2_font_inr53_mf_short.png) u8g2_font_inr53_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr53_mr_short.png](fntpic/u8g2_font_inr53_mr_short.png) u8g2_font_inr53_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inr53_mn_short.png](fntpic/u8g2_font_inr53_mn_short.png) u8g2_font_inr53_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb53_mf_short.png](fntpic/u8g2_font_inb53_mf_short.png) u8g2_font_inb53_mf [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb53_mr_short.png](fntpic/u8g2_font_inb53_mr_short.png) u8g2_font_inb53_mr [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb53_mn_short.png](fntpic/u8g2_font_inb53_mn_short.png) u8g2_font_inb53_mn [Inconsolata](fntgrpinconsolata)
## 57 Pixel Height
![fntpic/u8g2_font_inr57_mn_short.png](fntpic/u8g2_font_inr57_mn_short.png) u8g2_font_inr57_mn [Inconsolata](fntgrpinconsolata)
![fntpic/u8g2_font_inb57_mn_short.png](fntpic/u8g2_font_inb57_mn_short.png) u8g2_font_inb57_mn [Inconsolata](fntgrpinconsolata)
## 61 Pixel Height
![fntpic/u8g2_font_inr62_mn_short.png](fntpic/u8g2_font_inr62_mn_short.png) u8g2_font_inr62_mn [Inconsolata](fntgrpinconsolata)
## 63 Pixel Height
![fntpic/u8g2_font_inb63_mn_short.png](fntpic/u8g2_font_inb63_mn_short.png) u8g2_font_inb63_mn [Inconsolata](fntgrpinconsolata)
Binary file not shown.

After

Width:  |  Height:  |  Size: 563 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Some files were not shown because too many files have changed in this diff Show More