Clone repo
@@ -0,0 +1,63 @@
|
||||
|
||||
[tocstart]: # (toc start)
|
||||
|
||||
|
||||
[tocend]: # (toc end)
|
||||
|
||||

|
||||
|
||||
|
||||
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)
|
||||
@@ -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)
|
||||
@@ -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)
|
||||
@@ -0,0 +1 @@
|
||||

|
||||
@@ -0,0 +1,38 @@
|
||||
|
||||
|
||||

|
||||
|
||||
**[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)**
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||

|
||||
|
||||
[Angel](fntgrpangel)
|
||||
|
||||

|
||||
|
||||
[bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||

|
||||
|
||||
[ChristinaAntoinetteNeofotistou](fntgrpchristinaneofotistou)
|
||||
|
||||

|
||||
|
||||
[Codeman38](fntgrpcodeman38): 8x8 pixel fonts.
|
||||
|
||||

|
||||
|
||||
[Crox](fntgrpcrox): Cyrillic fonts.
|
||||
|
||||

|
||||
|
||||
[cu12](fntgrpcu12): ClearlyU Unicode Bitmap Font with support for many languages.
|
||||
|
||||

|
||||
|
||||
[dafont](fntgrpdafont): Several fonts from dafont.com.
|
||||
|
||||

|
||||
|
||||
|
||||
[Efont](fntgrpefont): Japanese Font.
|
||||
|
||||

|
||||
|
||||
[Extant](fntgrpextant)
|
||||
|
||||

|
||||
|
||||
[Fontstruct](fntgrpfontstruct): Bitmap fonts from fontstruct.com.
|
||||
|
||||

|
||||
|
||||
[Free Universal](fntgrpfreeuniversal): "Free Universal" font, different sizes.
|
||||
|
||||

|
||||
|
||||
[Geoff](fntgrpgeoff)
|
||||
|
||||

|
||||
|
||||
[GilesBooth](fntgrpgilesBooth)
|
||||
|
||||

|
||||
|
||||
[HasanKazan](fntgrphasankazan)
|
||||
|
||||

|
||||
|
||||
[Inconsolata](fntgrpinconsolata): "Inconsolata" font, different sizes.
|
||||
|
||||

|
||||
|
||||
[Integrated Mapping Ltd](fntgrpim): Fonts from Integrated Mapping Ltd
|
||||
|
||||

|
||||
|
||||
[JapanYoshi](fntgrpjapanyoshi)
|
||||
|
||||

|
||||
|
||||
[JayWright](fntgrpjaywright)
|
||||
|
||||

|
||||
|
||||
[JosephKnightcom](fntgrpjosephknightcom)
|
||||
|
||||

|
||||
|
||||
[Logisoso](fntgrplogisoso): "Logisoso" font, different sizes.
|
||||
|
||||

|
||||
|
||||
[Lucida](fntgrplucida): "Lucida" font (X11 bitmap font).
|
||||
|
||||

|
||||
|
||||
[MistressEllipsis](fntgrpmistressellipsis)
|
||||
|
||||

|
||||
|
||||
[Mystery Quest](fntgrpmysteryquest)
|
||||
|
||||

|
||||
|
||||
[NBP](fntgrpnbp): Bitmap fonts from font author Nate547.
|
||||
|
||||

|
||||
|
||||
[Old School PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||

|
||||
|
||||
[Old Standard](fntgrpoldstandard): "Old Standard" font, different sizes.
|
||||
|
||||

|
||||
|
||||
[Open Game Art](fntgrpopengameart): 8x8 fonts from opengameart.org.
|
||||
|
||||

|
||||
|
||||
[Pentacom](fntgrppentacom)
|
||||
|
||||

|
||||
|
||||
[Persian](fntgrppersian): Serveral fonts for Persian languages
|
||||
|
||||

|
||||
|
||||
[Profont](fntgrpprofont): Monospace font
|
||||
|
||||

|
||||
|
||||
[Spleen](fntgrpspleen): Spleen monospace font
|
||||
|
||||

|
||||
|
||||
[Thai Fonts](fntgrptlwg)
|
||||
|
||||

|
||||
|
||||
[Tom-Thumb](fntgrptomthumb): Very small monospaced font.
|
||||
|
||||

|
||||
|
||||
[tulamide](fntgrptulamide)
|
||||
|
||||

|
||||
|
||||
[U8g](fntgrpu8g): Fonts for the u8g and u8g2 projects.
|
||||
|
||||

|
||||
|
||||
[Unifont](fntgrpunifont): GNU Unifont with support for many languages.
|
||||
|
||||

|
||||
|
||||
[UW-ttyp0](fntgrpttyp0)
|
||||
|
||||

|
||||
|
||||
[WenQuanYi bitmap fonts](fntgrpwqy): Chinese fonts.
|
||||
|
||||

|
||||
|
||||
[BoutiqueBitmap fonts](fntgrpbb): Chinese fonts.
|
||||
|
||||

|
||||
|
||||
[Gulim fonts](fntgrpgulim): Korean fonts.
|
||||
|
||||

|
||||
|
||||
|
||||
[X11](fntgrpx11): Monospace fonts from the X11 project.
|
||||
|
||||

|
||||
|
||||
|
||||
## Other
|
||||
|
||||
[Siji Icon Font](fntgrpsiji) : Siji Icon Font
|
||||
|
||||

|
||||
|
||||
[Open Iconic](fntgrpiconic): Large number of icons with different sizes.
|
||||
|
||||

|
||||
|
||||
[Streamline](fntgrpstreamline): Icon collection from [https://app.streamlinehq.com/icons/pixel](https://app.streamlinehq.com/icons/pixel).
|
||||
|
||||

|
||||
|
||||
[Academia Sinica](fntgrpacademiasinica)
|
||||
|
||||

|
||||
|
||||
@@ -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
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## gb24st
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## courB10
|
||||

|
||||

|
||||

|
||||
|
||||
## courB12
|
||||

|
||||

|
||||

|
||||
|
||||
## courB14
|
||||

|
||||

|
||||

|
||||
|
||||
## courB18
|
||||

|
||||

|
||||

|
||||
|
||||
## courB24
|
||||

|
||||

|
||||

|
||||
|
||||
## courR08
|
||||

|
||||

|
||||

|
||||
|
||||
## courR10
|
||||

|
||||

|
||||

|
||||
|
||||
## courR12
|
||||

|
||||

|
||||

|
||||
|
||||
## courR14
|
||||

|
||||

|
||||

|
||||
|
||||
## courR18
|
||||

|
||||

|
||||

|
||||
|
||||
## courR24
|
||||

|
||||

|
||||

|
||||
|
||||
## courB18_2x3
|
||||

|
||||

|
||||

|
||||
|
||||
## courR18_2x3
|
||||

|
||||

|
||||

|
||||
|
||||
## courB24_3x4
|
||||

|
||||

|
||||

|
||||
|
||||
## courR24_3x4
|
||||

|
||||

|
||||

|
||||
|
||||
## helvB08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvB10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvB12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvB14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvB18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvB24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvR08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvR10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvR12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvR14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvR18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## helvR24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenB08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenB10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenB12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenB14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenB18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenB24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenR08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenR10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenR12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenR14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenR18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## ncenR24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## timB08
|
||||

|
||||

|
||||

|
||||
|
||||
## timB10
|
||||

|
||||

|
||||

|
||||
|
||||
## timB12
|
||||

|
||||

|
||||

|
||||
|
||||
## timB14
|
||||

|
||||

|
||||

|
||||
|
||||
## timB18
|
||||

|
||||

|
||||

|
||||
|
||||
## timB24
|
||||

|
||||

|
||||

|
||||
|
||||
## timR08
|
||||

|
||||

|
||||

|
||||
|
||||
## timR10
|
||||

|
||||

|
||||

|
||||
|
||||
## timR12
|
||||

|
||||

|
||||

|
||||
|
||||
## timR14
|
||||

|
||||

|
||||

|
||||
|
||||
## timR18
|
||||

|
||||

|
||||

|
||||
|
||||
## timR24
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## oldwizard
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## squirrel
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## boutique_bitmap_9x9
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## boutique_bitmap_9x9_bold
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## bracketedbabies
|
||||

|
||||
|
||||
## frikativ
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## fancypixels
|
||||

|
||||

|
||||
|
||||
## heavybottom
|
||||

|
||||
|
||||
## iconquadpix
|
||||

|
||||
|
||||
## tallpix
|
||||

|
||||
|
||||
## botmaker
|
||||

|
||||
|
||||
## efraneextracondensed
|
||||

|
||||
|
||||
## minimal3x3
|
||||

|
||||
|
||||
## 3x3basic
|
||||

|
||||
|
||||
## tiny_gk
|
||||

|
||||
|
||||
## threepix
|
||||

|
||||
|
||||
## eventhrees
|
||||

|
||||
|
||||
## fourmat
|
||||

|
||||

|
||||

|
||||
|
||||
## tiny_simon
|
||||

|
||||
|
||||

|
||||
|
||||
## smolfont
|
||||

|
||||

|
||||

|
||||
|
||||
## tinyunicode
|
||||

|
||||

|
||||

|
||||
|
||||
## micropixel
|
||||

|
||||

|
||||

|
||||
|
||||
## tinypixie2
|
||||

|
||||
|
||||
## standardized3x5
|
||||

|
||||
|
||||
## fivepx
|
||||

|
||||
|
||||
## 3x5im
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## wedge
|
||||

|
||||
|
||||
## kibibyte
|
||||

|
||||

|
||||
|
||||
## tinyface
|
||||

|
||||

|
||||
|
||||
## smallsimple
|
||||

|
||||

|
||||
|
||||
## simple1
|
||||

|
||||

|
||||

|
||||
|
||||
## likeminecraft
|
||||

|
||||
|
||||
## medsans
|
||||

|
||||
|
||||
## heisans
|
||||

|
||||
|
||||
## originalsans
|
||||

|
||||
|
||||
## minicute
|
||||

|
||||

|
||||
|
||||
## scrum
|
||||

|
||||

|
||||

|
||||
|
||||
## stylishcharm
|
||||

|
||||

|
||||
|
||||
## sisterserif
|
||||

|
||||
|
||||
## princess
|
||||

|
||||

|
||||
|
||||
## dystopia
|
||||

|
||||

|
||||
|
||||
## lastapprenticethin
|
||||

|
||||

|
||||
|
||||
## lastapprenticebold
|
||||

|
||||

|
||||
|
||||
## bpixel
|
||||

|
||||

|
||||
|
||||
## bpixeldouble
|
||||

|
||||
|
||||
## mildras
|
||||

|
||||

|
||||
|
||||
## minuteconsole
|
||||

|
||||
|
||||

|
||||
|
||||
## busdisplay11x5
|
||||

|
||||

|
||||
|
||||
## busdisplay8x5
|
||||

|
||||
|
||||
## sticker100complete
|
||||

|
||||

|
||||
|
||||
## doomalpha04
|
||||

|
||||

|
||||
|
||||
## greenbloodserif2
|
||||

|
||||
|
||||
## eckpixel
|
||||

|
||||
|
||||
## elispe
|
||||

|
||||
|
||||
## neuecraft
|
||||

|
||||

|
||||
|
||||
## 8bitclassic
|
||||

|
||||

|
||||

|
||||
|
||||
## littlemissloudonbold
|
||||

|
||||

|
||||
|
||||
## commodore64
|
||||

|
||||
|
||||
## new3x9pixelfont
|
||||

|
||||

|
||||

|
||||
|
||||
## sonicmania
|
||||

|
||||

|
||||
|
||||
## bytesize
|
||||

|
||||

|
||||

|
||||
|
||||
## pixzillav1
|
||||

|
||||

|
||||

|
||||
|
||||
## ciircle13
|
||||

|
||||
|
||||
## pxclassic
|
||||

|
||||

|
||||

|
||||
|
||||
## moosenooks
|
||||

|
||||
|
||||
## tallpixelextended
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## lastpriestess
|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## pcsenior
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## crox1c
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## crox1hb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox1h
|
||||

|
||||

|
||||

|
||||
|
||||
## crox1tb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox1t
|
||||

|
||||

|
||||

|
||||
|
||||
## crox2cb
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## crox2c
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## crox2hb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox2h
|
||||

|
||||

|
||||

|
||||
|
||||
## crox2tb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox2t
|
||||

|
||||

|
||||

|
||||
|
||||
## crox3cb
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## crox3c
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## crox3hb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox3h
|
||||

|
||||

|
||||

|
||||
|
||||
## crox3tb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox3t
|
||||

|
||||

|
||||

|
||||
|
||||
## crox4hb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox4h
|
||||

|
||||

|
||||

|
||||
|
||||
## crox4tb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox4t
|
||||

|
||||

|
||||

|
||||
|
||||
## crox5hb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox5h
|
||||

|
||||

|
||||

|
||||
|
||||
## crox5tb
|
||||

|
||||

|
||||

|
||||
|
||||
## crox5t
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## VCR_OSD
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## Pixellari
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## pixelpoiiz
|
||||

|
||||
|
||||
## DigitalDiscoThin
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## DigitalDisco
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## pearfont
|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||

|
||||
|
||||
## b10_b
|
||||

|
||||
|
||||

|
||||
|
||||
## f10
|
||||

|
||||
|
||||

|
||||
|
||||
## f10_b
|
||||

|
||||
|
||||

|
||||
|
||||
## b12
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## b12_b
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## f12
|
||||

|
||||
|
||||

|
||||
|
||||
## f12_b
|
||||

|
||||
|
||||

|
||||
|
||||
## b16
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## b16_b
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## f16
|
||||

|
||||
|
||||

|
||||
|
||||
## f16_b
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## missingplanet
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## ordinarybasis
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## pixelmordred
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## secretaryhand
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## garbagecan
|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## baby
|
||||

|
||||

|
||||

|
||||
|
||||
## blipfest_07
|
||||

|
||||

|
||||
|
||||
## chikita
|
||||

|
||||

|
||||

|
||||
|
||||
## lucasfont_alternate
|
||||

|
||||

|
||||

|
||||
|
||||
## p01type
|
||||

|
||||

|
||||

|
||||
|
||||
## pixelle_micro
|
||||

|
||||

|
||||
|
||||
## robot_de_niro
|
||||

|
||||

|
||||

|
||||
|
||||
## trixel_square
|
||||

|
||||

|
||||

|
||||
|
||||
## haxrcorp4089
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## bubble
|
||||

|
||||

|
||||
|
||||
## cardimon_pixel
|
||||

|
||||

|
||||

|
||||
|
||||
## maniac
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lucasarts_scumm_subtitle_o
|
||||

|
||||

|
||||

|
||||
|
||||
## lucasarts_scumm_subtitle_r
|
||||

|
||||

|
||||

|
||||
|
||||
## lucasarts_scumm_subtitle_o_2x2
|
||||

|
||||

|
||||

|
||||
|
||||
## lucasarts_scumm_subtitle_r_2x2
|
||||

|
||||

|
||||

|
||||
|
||||
## utopia24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## m_c_kids_nes_credits_font
|
||||

|
||||
|
||||
## chargen_92
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## fub14
|
||||

|
||||

|
||||

|
||||
|
||||
## fub17
|
||||

|
||||

|
||||

|
||||
|
||||
## fub20
|
||||

|
||||

|
||||

|
||||
|
||||
## fub25
|
||||

|
||||

|
||||

|
||||
|
||||
## fub30
|
||||

|
||||

|
||||

|
||||
|
||||
## fub35
|
||||

|
||||

|
||||

|
||||
|
||||
## fub42
|
||||

|
||||

|
||||

|
||||
|
||||
## fub49
|
||||

|
||||
|
||||
## fub11
|
||||

|
||||
|
||||
## fub14
|
||||

|
||||
|
||||
## fub17
|
||||

|
||||
|
||||
## fub20
|
||||

|
||||
|
||||
## fub25
|
||||

|
||||
|
||||
## fub30
|
||||

|
||||
|
||||
## fub35
|
||||

|
||||
|
||||
## fub42
|
||||

|
||||
|
||||
## fub49
|
||||

|
||||
|
||||
## fur11
|
||||

|
||||

|
||||

|
||||
|
||||
## fur14
|
||||

|
||||

|
||||

|
||||
|
||||
## fur17
|
||||

|
||||

|
||||

|
||||
|
||||
## fur20
|
||||

|
||||

|
||||

|
||||
|
||||
## fur25
|
||||

|
||||

|
||||

|
||||
|
||||
## fur30
|
||||

|
||||

|
||||

|
||||
|
||||
## fur35
|
||||

|
||||

|
||||

|
||||
|
||||
## fur42
|
||||

|
||||

|
||||

|
||||
|
||||
## fur49
|
||||

|
||||
|
||||
## fur11
|
||||

|
||||
|
||||
## fur14
|
||||

|
||||
|
||||
## fur17
|
||||

|
||||
|
||||
## fur20
|
||||

|
||||
|
||||
## fur25
|
||||

|
||||
|
||||
## fur30
|
||||

|
||||
|
||||
## fur35
|
||||

|
||||
|
||||
## fur42
|
||||

|
||||
|
||||
## fur49
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## koleeko
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## tenfatguys
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## tenstamps
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## tenthinguys
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## tenthinnerguys
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## twelvedings
|
||||

|
||||
|
||||
## frigidaire
|
||||

|
||||
|
||||
## lord
|
||||

|
||||
|
||||
## abel
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||
|
||||
## finderskeepers
|
||||

|
||||

|
||||

|
||||
|
||||
## sirclivethebold
|
||||

|
||||

|
||||
|
||||
## sirclive
|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||

|
||||
|
||||
## gulim12
|
||||

|
||||
|
||||

|
||||
|
||||
## gulim14
|
||||

|
||||
|
||||

|
||||
|
||||
## gulim16
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## NokiaSmallBold
|
||||

|
||||

|
||||

|
||||
|
||||
## NokiaSmallPlain
|
||||

|
||||

|
||||

|
||||
|
||||
## 12x6LED
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## 9x6LED
|
||||

|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## open_iconic_app_1x
|
||||

|
||||
|
||||
## open_iconic_arrow_1x
|
||||

|
||||
|
||||
## open_iconic_check_1x
|
||||

|
||||
|
||||
## open_iconic_email_1x
|
||||

|
||||
|
||||
## open_iconic_embedded_1x
|
||||

|
||||
|
||||
## open_iconic_gui_1x
|
||||

|
||||
|
||||
## open_iconic_human_1x
|
||||

|
||||
|
||||
## open_iconic_mime_1x
|
||||

|
||||
|
||||
## open_iconic_other_1x
|
||||

|
||||
|
||||
## open_iconic_play_1x
|
||||

|
||||
|
||||
## open_iconic_text_1x
|
||||

|
||||
|
||||
## open_iconic_thing_1x
|
||||

|
||||
|
||||
## open_iconic_weather_1x
|
||||

|
||||
|
||||
## open_iconic_www_1x
|
||||

|
||||
|
||||
## open_iconic_arrow_1x1
|
||||

|
||||
|
||||
## open_iconic_check_1x1
|
||||

|
||||
|
||||
## open_iconic_embedded_1x1
|
||||

|
||||
|
||||
## open_iconic_play_1x1
|
||||

|
||||
|
||||
## open_iconic_thing_1x1
|
||||

|
||||
|
||||
## open_iconic_weather_1x1
|
||||

|
||||
|
||||
## open_iconic_all_2x
|
||||

|
||||
|
||||
## open_iconic_app_2x
|
||||

|
||||
|
||||
## open_iconic_arrow_2x
|
||||

|
||||
|
||||
## open_iconic_check_2x
|
||||

|
||||
|
||||
## open_iconic_email_2x
|
||||

|
||||
|
||||
## open_iconic_embedded_2x
|
||||

|
||||
|
||||
## open_iconic_gui_2x
|
||||

|
||||
|
||||
## open_iconic_human_2x
|
||||

|
||||
|
||||
## open_iconic_mime_2x
|
||||

|
||||
|
||||
## open_iconic_other_2x
|
||||

|
||||
|
||||
## open_iconic_play_2x
|
||||

|
||||
|
||||
## open_iconic_text_2x
|
||||

|
||||
|
||||
## open_iconic_thing_2x
|
||||

|
||||
|
||||
## open_iconic_weather_2x
|
||||

|
||||
|
||||
## open_iconic_www_2x
|
||||

|
||||
|
||||
## open_iconic_arrow_2x2
|
||||

|
||||
|
||||
## open_iconic_check_2x2
|
||||

|
||||
|
||||
## open_iconic_embedded_2x2
|
||||

|
||||
|
||||
## open_iconic_play_2x2
|
||||

|
||||
|
||||
## open_iconic_thing_2x2
|
||||

|
||||
|
||||
## open_iconic_weather_2x2
|
||||

|
||||
|
||||
## open_iconic_all_4x
|
||||

|
||||
|
||||
## open_iconic_app_4x
|
||||

|
||||
|
||||
## open_iconic_arrow_4x
|
||||

|
||||
|
||||
## open_iconic_check_4x
|
||||

|
||||
|
||||
## open_iconic_email_4x
|
||||

|
||||
|
||||
## open_iconic_embedded_4x
|
||||

|
||||
|
||||
## open_iconic_gui_4x
|
||||

|
||||
|
||||
## open_iconic_human_4x
|
||||

|
||||
|
||||
## open_iconic_mime_4x
|
||||

|
||||
|
||||
## open_iconic_other_4x
|
||||

|
||||
|
||||
## open_iconic_play_4x
|
||||

|
||||
|
||||
## open_iconic_text_4x
|
||||

|
||||
|
||||
## open_iconic_thing_4x
|
||||

|
||||
|
||||
## open_iconic_weather_4x
|
||||

|
||||
|
||||
## open_iconic_www_4x
|
||||

|
||||
|
||||
## open_iconic_arrow_4x4
|
||||

|
||||
|
||||
## open_iconic_check_4x4
|
||||

|
||||
|
||||
## open_iconic_embedded_4x4
|
||||

|
||||
|
||||
## open_iconic_play_4x4
|
||||

|
||||
|
||||
## open_iconic_thing_4x4
|
||||

|
||||
|
||||
## open_iconic_weather_4x4
|
||||

|
||||
|
||||
## open_iconic_all_6x
|
||||

|
||||
|
||||
## open_iconic_app_6x
|
||||

|
||||
|
||||
## open_iconic_arrow_6x
|
||||

|
||||
|
||||
## open_iconic_check_6x
|
||||

|
||||
|
||||
## open_iconic_email_6x
|
||||

|
||||
|
||||
## open_iconic_embedded_6x
|
||||

|
||||
|
||||
## open_iconic_gui_6x
|
||||

|
||||
|
||||
## open_iconic_human_6x
|
||||

|
||||
|
||||
## open_iconic_mime_6x
|
||||

|
||||
|
||||
## open_iconic_other_6x
|
||||

|
||||
|
||||
## open_iconic_play_6x
|
||||

|
||||
|
||||
## open_iconic_text_6x
|
||||

|
||||
|
||||
## open_iconic_thing_6x
|
||||

|
||||
|
||||
## open_iconic_weather_6x
|
||||

|
||||
|
||||
## open_iconic_www_6x
|
||||

|
||||
|
||||
## open_iconic_all_8x
|
||||

|
||||
|
||||
## open_iconic_app_8x
|
||||

|
||||
|
||||
## open_iconic_arrow_8x
|
||||

|
||||
|
||||
## open_iconic_check_8x
|
||||

|
||||
|
||||
## open_iconic_email_8x
|
||||

|
||||
|
||||
## open_iconic_embedded_8x
|
||||

|
||||
|
||||
## open_iconic_gui_8x
|
||||

|
||||
|
||||
## open_iconic_human_8x
|
||||

|
||||
|
||||
## open_iconic_mime_8x
|
||||

|
||||
|
||||
## open_iconic_other_8x
|
||||

|
||||
|
||||
## open_iconic_play_8x
|
||||

|
||||
|
||||
## open_iconic_text_8x
|
||||

|
||||
|
||||
## open_iconic_thing_8x
|
||||

|
||||
|
||||
## open_iconic_weather_8x
|
||||

|
||||
|
||||
## open_iconic_www_8x
|
||||

|
||||
|
||||
## open_iconic_arrow_8x8
|
||||

|
||||
|
||||
## open_iconic_check_8x8
|
||||

|
||||
|
||||
## open_iconic_embedded_8x8
|
||||

|
||||
|
||||
## open_iconic_play_8x8
|
||||

|
||||
|
||||
## open_iconic_thing_8x8
|
||||

|
||||
|
||||
## open_iconic_weather_8x8
|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## callite24
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## inr19
|
||||

|
||||

|
||||

|
||||
|
||||
## inr21
|
||||

|
||||

|
||||

|
||||
|
||||
## inr24
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr27
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr30
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr33
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr38
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr42
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr46
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr49
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr53
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## inr57
|
||||

|
||||
|
||||
## inr62
|
||||

|
||||
|
||||
## inr21_2x4
|
||||

|
||||

|
||||

|
||||
|
||||
## inr33_3x6
|
||||

|
||||

|
||||

|
||||
|
||||
## inr46_4x8
|
||||

|
||||

|
||||

|
||||
|
||||
## inb16
|
||||

|
||||

|
||||

|
||||
|
||||
## inb19
|
||||

|
||||

|
||||

|
||||
|
||||
## inb21
|
||||

|
||||

|
||||

|
||||
|
||||
## inb24
|
||||

|
||||

|
||||

|
||||
|
||||
## inb27
|
||||

|
||||

|
||||

|
||||
|
||||
## inb30
|
||||

|
||||

|
||||

|
||||
|
||||
## inb33
|
||||

|
||||

|
||||

|
||||
|
||||
## inb38
|
||||

|
||||

|
||||

|
||||
|
||||
## inb42
|
||||

|
||||

|
||||

|
||||
|
||||
## inb46
|
||||

|
||||

|
||||

|
||||
|
||||
## inb49
|
||||

|
||||

|
||||

|
||||
|
||||
## inb53
|
||||

|
||||

|
||||

|
||||
|
||||
## inb57
|
||||

|
||||
|
||||
## inb63
|
||||

|
||||
|
||||
## inb21_2x4
|
||||

|
||||

|
||||

|
||||
|
||||
## inb33_3x6
|
||||

|
||||

|
||||

|
||||
|
||||
## inb46_4x8
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## Born2bSportySlab
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## Born2bSportyV2
|
||||

|
||||

|
||||

|
||||
|
||||
## CursivePixel
|
||||

|
||||
|
||||
## Engrish
|
||||

|
||||

|
||||
|
||||
## ImpactBits
|
||||

|
||||
|
||||
## IPAandRUSLCD
|
||||

|
||||

|
||||

|
||||
|
||||
## PixelTheatre
|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## disrespectfulteenager
|
||||

|
||||
|
||||
## michaelmouse
|
||||

|
||||
|
||||
## sandyforest
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## questgiver
|
||||

|
||||
|
||||
## seraphimb1
|
||||

|
||||
|
||||
## resoledbold
|
||||

|
||||
|
||||
## resoledmedium
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso18
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso20
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso22
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso24
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso26
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso28
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso30
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso32
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso34
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso38
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso42
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso46
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso50
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso54
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso58
|
||||

|
||||

|
||||

|
||||
|
||||
## logisoso62
|
||||

|
||||
|
||||
## logisoso78
|
||||

|
||||
|
||||
## logisoso92
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubB10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubB12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubB14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubB18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubB19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubB24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubBI24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubI24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBIS24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## lubR24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luBS24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luIS24
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS08
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS10
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS19
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## luRS24
|
||||

|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||
|
||||
## cube_mel
|
||||

|
||||

|
||||
|
||||
## mademoiselle_mel
|
||||

|
||||

|
||||
|
||||
## pieceofcake_mel
|
||||

|
||||

|
||||
|
||||
## press_mel
|
||||

|
||||

|
||||
|
||||
## repress_mel
|
||||

|
||||

|
||||
|
||||
## sticker_mel
|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## mystery_quest_28
|
||||

|
||||

|
||||

|
||||
|
||||
## mystery_quest_32
|
||||

|
||||

|
||||
|
||||
## mystery_quest_36
|
||||

|
||||
|
||||
## mystery_quest_42
|
||||

|
||||
|
||||
## mystery_quest_48
|
||||

|
||||
|
||||
## mystery_quest_56
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## glasstown_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## shylock_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## roentgen_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## calibration_gothic_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## smart_patrol_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## prospero_bold_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## prospero_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## balthasar_regular_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## balthasar_titling_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## synchronizer_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## mercutio_basic_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## mercutio_sc_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## miranda_nbp
|
||||

|
||||

|
||||

|
||||
|
||||
## nine_by_five_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## rosencrantz_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## guildenstern_nbp
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## astragal_nbp
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## pxplusibmcga
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## pxplustandynewtv
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## pxplusibmvga9
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## pxplusibmvga8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## px437wyse700a
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## px437wyse700b
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## px437wyse700a_2x2
|
||||

|
||||

|
||||

|
||||
|
||||
## px437wyse700b_2x2
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## osb21
|
||||

|
||||

|
||||

|
||||
|
||||
## osb26
|
||||

|
||||

|
||||

|
||||
|
||||
## osb29
|
||||

|
||||

|
||||

|
||||
|
||||
## osb35
|
||||

|
||||

|
||||

|
||||
|
||||
## osb41
|
||||

|
||||

|
||||

|
||||
|
||||
## osr18
|
||||

|
||||

|
||||

|
||||
|
||||
## osr21
|
||||

|
||||

|
||||

|
||||
|
||||
## osr26
|
||||

|
||||

|
||||

|
||||
|
||||
## osr29
|
||||

|
||||

|
||||

|
||||
|
||||
## osr35
|
||||

|
||||

|
||||

|
||||
|
||||
## osr41
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## artosserif8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## chroma48medium8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## saikyosansbold8
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||
## torussansbold8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## victoriabold8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## victoriamedium8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## TimesNewPixel
|
||||

|
||||
|
||||
## BitTypeWriter
|
||||

|
||||

|
||||
|
||||
## Georgia7px
|
||||

|
||||

|
||||

|
||||
|
||||
## Wizzard
|
||||

|
||||
|
||||
## HelvetiPixelOutline
|
||||

|
||||

|
||||
|
||||
## Untitled16PixelSansSerifBitmap
|
||||

|
||||
|
||||
## UnnamedDOSFontIV
|
||||

|
||||
|
||||
## Terminal
|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## samim_12
|
||||

|
||||
|
||||
## samim_14
|
||||

|
||||
|
||||
## samim_16
|
||||

|
||||
|
||||
## samim_fd_10
|
||||

|
||||
|
||||
## samim_fd_12
|
||||

|
||||
|
||||
## samim_fd_14
|
||||

|
||||
|
||||
## samim_fd_16
|
||||

|
||||
|
||||
## ganj_nameh_sans10
|
||||

|
||||
|
||||
## ganj_nameh_sans12
|
||||

|
||||
|
||||
## ganj_nameh_sans14
|
||||

|
||||
|
||||
## ganj_nameh_sans16
|
||||

|
||||
|
||||
## iranian_sans_8
|
||||

|
||||
|
||||
## iranian_sans_10
|
||||

|
||||
|
||||
## iranian_sans_12
|
||||

|
||||
|
||||
## iranian_sans_14
|
||||

|
||||
|
||||
## iranian_sans_16
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont11
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont12
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont15
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont17
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont22
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont29
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## profont29_2x3
|
||||

|
||||

|
||||

|
||||
@@ -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 weren’t 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 couldn’t 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
|
||||

|
||||
|
||||
## waffle
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## spleen6x12
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## spleen8x16
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## spleen12x24
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## spleen16x32
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## spleen32x64
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## streamline_building_real_estate
|
||||

|
||||
|
||||
## streamline_business
|
||||

|
||||
|
||||
## streamline_coding_apps_websites
|
||||

|
||||
|
||||
## streamline_computers_devices_electronics
|
||||

|
||||
|
||||
## streamline_content_files
|
||||

|
||||
|
||||
## streamline_design
|
||||

|
||||
|
||||
## streamline_ecology
|
||||

|
||||
|
||||
## streamline_email
|
||||

|
||||
|
||||
## streamline_entertainment_events_hobbies
|
||||

|
||||
|
||||
## streamline_food_drink
|
||||

|
||||
|
||||
## streamline_hand_signs
|
||||

|
||||
|
||||
## streamline_health_beauty
|
||||

|
||||
|
||||
## streamline_interface_essential_action
|
||||

|
||||
|
||||
## streamline_interface_essential_alert
|
||||

|
||||
|
||||
## streamline_interface_essential_audio
|
||||

|
||||
|
||||
## streamline_interface_essential_calendar
|
||||

|
||||
|
||||
## streamline_interface_essential_chart
|
||||

|
||||
|
||||
## streamline_interface_essential_circle_triangle
|
||||

|
||||
|
||||
## streamline_interface_essential_cog
|
||||

|
||||
|
||||
## streamline_interface_essential_cursor
|
||||

|
||||
|
||||
## streamline_interface_essential_dial_pad
|
||||

|
||||
|
||||
## streamline_interface_essential_edit
|
||||

|
||||
|
||||
## streamline_interface_essential_expand_shrink
|
||||

|
||||
|
||||
## streamline_interface_essential_eye
|
||||

|
||||
|
||||
## streamline_interface_essential_file
|
||||

|
||||
|
||||
## streamline_interface_essential_help
|
||||

|
||||
|
||||
## streamline_interface_essential_hierarchy
|
||||

|
||||
|
||||
## streamline_interface_essential_home_menu
|
||||

|
||||
|
||||
## streamline_interface_essential_id
|
||||

|
||||
|
||||
## streamline_interface_essential_key_lock
|
||||

|
||||
|
||||
## streamline_interface_essential_link
|
||||

|
||||
|
||||
## streamline_interface_essential_loading
|
||||

|
||||
|
||||
## streamline_interface_essential_login
|
||||

|
||||
|
||||
## streamline_interface_essential_other
|
||||

|
||||
|
||||
## streamline_interface_essential_paginate
|
||||

|
||||
|
||||
## streamline_interface_essential_search
|
||||

|
||||
|
||||
## streamline_interface_essential_setting
|
||||

|
||||
|
||||
## streamline_interface_essential_share
|
||||

|
||||
|
||||
## streamline_interface_essential_text
|
||||

|
||||
|
||||
## streamline_interface_essential_wifi
|
||||

|
||||
|
||||
## streamline_interface_essential_zoom
|
||||

|
||||
|
||||
## streamline_internet_network
|
||||

|
||||
|
||||
## streamline_logo
|
||||

|
||||
|
||||
## streamline_map_navigation
|
||||

|
||||
|
||||
## streamline_money_payments
|
||||

|
||||
|
||||
## streamline_music_audio
|
||||

|
||||
|
||||
## streamline_pet_animals
|
||||

|
||||
|
||||
## streamline_phone
|
||||

|
||||
|
||||
## streamline_photography
|
||||

|
||||
|
||||
## streamline_romance
|
||||

|
||||
|
||||
## streamline_school_science
|
||||

|
||||
|
||||
## streamline_shopping_shipping
|
||||

|
||||
|
||||
## streamline_social_rewards
|
||||

|
||||
|
||||
## streamline_technology
|
||||

|
||||
|
||||
## streamline_transportation
|
||||

|
||||
|
||||
## streamline_travel_wayfinding
|
||||

|
||||
|
||||
## streamline_users
|
||||

|
||||
|
||||
## streamline_video_movies
|
||||

|
||||
|
||||
## streamline_weather
|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||
## etl16thai
|
||||

|
||||
|
||||
## etl24thai
|
||||

|
||||
@@ -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:
|
||||
|
||||
Brian’s 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
|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## t0_11b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_12b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_13
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_13b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_14
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_14b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_15
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_15b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_16
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_16b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_17
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_17b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_18
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_18b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_22
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_22b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_30
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_30b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## t0_40
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## t0_40b
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||
## halftone
|
||||

|
||||

|
||||

|
||||
|
||||
## nerhoe
|
||||

|
||||

|
||||

|
||||
|
||||
## oskool
|
||||

|
||||

|
||||

|
||||
|
||||
## tinytim
|
||||

|
||||

|
||||

|
||||
|
||||
## tooseornament
|
||||

|
||||

|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||
## m2icon_5
|
||||

|
||||
|
||||
## m2icon_7
|
||||

|
||||
|
||||
## m2icon_9
|
||||

|
||||
|
||||
## emoticons21
|
||||

|
||||
|
||||
## battery19
|
||||

|
||||
|
||||
## battery24
|
||||

|
||||
|
||||
## squeezed_r6
|
||||

|
||||

|
||||
|
||||
## squeezed_b6
|
||||

|
||||

|
||||
|
||||
## squeezed_r7
|
||||

|
||||

|
||||
|
||||
## squeezed_b7
|
||||

|
||||

|
||||
|
||||
## percent_circle_25
|
||||

|
||||
|
||||
## freedoomr10
|
||||

|
||||
|
||||

|
||||
|
||||
## freedoomr25
|
||||

|
||||
|
||||

|
||||
|
||||
## 7Segments_26x42
|
||||

|
||||
|
||||
## 7_Seg_33x19
|
||||

|
||||
|
||||
## 7_Seg_41x21
|
||||

|
||||
|
||||
## tiny5
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## tiny5duo
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## 04b_03b
|
||||

|
||||
|
||||
## 04b_03
|
||||

|
||||
@@ -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
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## wqy13
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## wqy14
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## wqy15
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## wqy16
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
@@ -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
|
||||

|
||||
|
||||

|
||||
|
||||
## micro
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||
## 4x6
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## 5x7
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## 5x8
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## 6x10
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 6x12
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 6x13
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 6x13B
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 6x13O
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 7x13
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 7x13B
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 7x13O
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 7x14
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 7x14B
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 8x13
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 8x13B
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 8x13O
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 9x15
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 9x15B
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 9x18
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 9x18B
|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## 10x20
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 8x13_1x2
|
||||

|
||||

|
||||

|
||||
|
||||
## 8x13B_1x2
|
||||

|
||||

|
||||

|
||||
|
||||
## 7x14_1x2
|
||||

|
||||

|
||||

|
||||
|
||||
## 7x14B_1x2
|
||||

|
||||

|
||||

|
||||
@@ -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).
|
||||
|
||||

|
||||
|
||||
|
||||
### 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)
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
### 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
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
## 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
|
||||
|
||||

|
||||
|
||||
|
||||
### 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
|
||||
|
||||

|
||||
|
||||
### 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
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
### 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.
|
||||
|
||||

|
||||
|
||||
|
||||
### 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).
|
||||
|
||||

|
||||
|
||||
### 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"
|
||||
|
||||

|
||||
@@ -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
|
||||
|
||||
 u8g2_font_10x20_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_te [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_t_greek [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_t_cyrillic [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_t_arabic [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_22_tf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_tr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_te [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_t_symbol [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_tf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_tr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_te [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_crox2cb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2cb_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2c_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2c_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2hb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2h_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2tb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2t_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4tb_tf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4tb_tr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4t_tf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4t_tr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_gb24st_t_1 [Academia Sinica](fntgrpacademiasinica)
|
||||
|
||||
 u8g2_font_gb24st_t_2 [Academia Sinica](fntgrpacademiasinica)
|
||||
|
||||
 u8g2_font_gb24st_t_3 [Academia Sinica](fntgrpacademiasinica)
|
||||
|
||||
 u8g2_font_timB14_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timB14_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timB14_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timR14_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timR14_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timR14_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_lubB12_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubB12_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubB12_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubB12_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI12_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI12_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI12_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI12_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI12_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI12_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI12_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI12_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR12_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR12_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR12_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR12_te [lucida](fntgrplucida)
|
||||
|
||||
|
||||
## 14 Pixel Height
|
||||
|
||||
 u8g2_font_9x18_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18B_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_17_tn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17b_tn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18_tn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18b_tn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_open_iconic_arrow_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_other_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_profont22_tf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_tr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_tn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_calibration_gothic_nbp_tf [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_calibration_gothic_nbp_tr [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_calibration_gothic_nbp_tn [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_calibration_gothic_nbp_t_all [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_balthasar_titling_nbp_tf [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_balthasar_titling_nbp_tr [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_balthasar_titling_nbp_tn [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_etl24thai_t [Tlwg (Thai-Fonts)](fntgrptlwg)
|
||||
|
||||
 u8g2_font_crox4hb_tf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4hb_tr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4h_tf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4h_tr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_unifont_t_72_73 [Unifont](fntgrpunifont)
|
||||
|
||||
 u8g2_font_unifont_t_75 [Unifont](fntgrpunifont)
|
||||
|
||||
 u8g2_font_unifont_t_76 [Unifont](fntgrpunifont)
|
||||
|
||||
 u8g2_font_unifont_t_77 [Unifont](fntgrpunifont)
|
||||
|
||||
 u8g2_font_unifont_t_78_79 [Unifont](fntgrpunifont)
|
||||
|
||||
 u8g2_font_unifont_t_86 [Unifont](fntgrpunifont)
|
||||
|
||||
 u8g2_font_courR18_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courR18_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courR18_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB14_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB14_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB14_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB14_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR14_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR14_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR14_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR14_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB14_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB14_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB14_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB14_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR14_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR14_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR14_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR14_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_luBIS14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBIS14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBIS14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBIS14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_chargen_92_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_te [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_mf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_mr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_mn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_me [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_fub14_tf [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fub14_tr [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fub14_tn [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fub14_t_symbol [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fur14_tf [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fur14_tr [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fur14_tn [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
 u8g2_font_fur14_t_symbol [Free Universal](fntgrpfreeuniversal)
|
||||
|
||||
|
||||
## 15 Pixel Height
|
||||
|
||||
 u8g2_font_spleen12x24_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen12x24_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen12x24_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen12x24_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_VCR_OSD_tf [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_tr [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_tn [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_tu [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mf [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mr [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mn [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mu [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_crox3tb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3t_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_courB18_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courB18_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courB18_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_lubB14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubB14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubB14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubB14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubBI14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubI14_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR14_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR14_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR14_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_lubR14_te [lucida](fntgrplucida)
|
||||
|
||||
|
||||
## 16 Pixel Height
|
||||
|
||||
 u8g2_font_10x20_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_open_iconic_all_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_app_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_check_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_email_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_embedded_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_gui_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_human_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_mime_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_play_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_text_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_thing_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_weather_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_www_2x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_streamline_interface_essential_text_t [streamline](fntgrpstreamline)
|
||||
|
||||
 u8g2_font_callite24_tr [Integrated Mapping Ltd](fntgrpim)
|
||||
|
||||
 u8g2_font_crox3cb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3cb_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3c_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3c_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3hb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3h_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4tb_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox4t_tn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox5tb_tf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox5tb_tr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox5t_tf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox5t_tr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_inr16_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr16_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr16_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb16_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb16_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb16_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_logisoso16_tf [Logisoso](fntgrplogisoso)
|
||||
|
||||
 u8g2_font_logisoso16_tr [Logisoso](fntgrplogisoso)
|
||||
|
||||
 u8g2_font_logisoso16_tn [Logisoso](fntgrplogisoso)
|
||||
|
||||
@@ -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
|
||||
|
||||
 u8g2_font_minimal3x3_tu [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_3x3basic_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_pearfont_tr [dafont](fntgrpdafont)
|
||||
|
||||
|
||||
## 4 Pixel Height
|
||||
|
||||
 u8g2_font_u8glib_4_tf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_u8glib_4_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_u8glib_4_hf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_u8glib_4_hr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny_gk_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_threepix_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_eventhrees_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_fourmat_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_fourmat_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_fourmat_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_p01type_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_p01type_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_p01type_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
|
||||
## 5 Pixel Height
|
||||
|
||||
 u8g2_font_m2icon_5_tf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5_tf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5_te [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5_t_all [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5duo_tf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5duo_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5duo_te [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_tiny5duo_t_all [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_04b_03b_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_04b_03_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_micro_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_micro_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_micro_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_micro_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_t_cyrillic [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_t_all [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_tf [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_tr [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_tn [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_te [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_mf [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_mr [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_mn [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_me [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tinytim_tf [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_tinytim_tr [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_tinytim_tn [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_tiny_simon_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tiny_simon_mr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_smolfont_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_smolfont_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_smolfont_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tinyunicode_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tinyunicode_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tinyunicode_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_micropixel_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_micropixel_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_micropixel_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tinypixie2_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_standardized3x5_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_fivepx_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_3x5im_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_3x5im_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_3x5im_mr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_wedge_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_kibibyte_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_kibibyte_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tinyface_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_tinyface_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_baby_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_baby_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_baby_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_blipfest_07_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_blipfest_07_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chikita_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chikita_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chikita_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_pixelle_micro_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_pixelle_micro_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_trixel_square_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_trixel_square_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_trixel_square_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
|
||||
## 6 Pixel Height
|
||||
|
||||
 u8g2_font_squeezed_r6_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_r6_tn [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_b6_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_b6_tn [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_5x7_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_t_cyrillic [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_t_cyrillic [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_profont10_tf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_tr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_tn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_iranian_sans_8_t_all [Persian](fntgrppersian)
|
||||
|
||||
 u8g2_font_synchronizer_nbp_tf [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_synchronizer_nbp_tr [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_synchronizer_nbp_tn [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_smallsimple_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_smallsimple_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_PixelTheatre_tr [JapanYoshi](fntgrpjapanyoshi)
|
||||
|
||||
 u8g2_font_PixelTheatre_te [JapanYoshi](fntgrpjapanyoshi)
|
||||
|
||||
 u8g2_font_spleen5x8_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen5x8_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen5x8_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen5x8_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_pixelpoiiz_tr [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_tf [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_tr [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_tn [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_te [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_all [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_chinese1 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_chinese2 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_chinese3 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_gb2312 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_gb2312a [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_7x7_t_gb2312b [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_tf [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_tr [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_tn [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_te [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_all [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_chinese1 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_chinese2 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_chinese3 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_gb2312 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_gb2312a [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_t_gb2312b [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_tf [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_tr [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_tn [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_te [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_all [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_chinese1 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_chinese2 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_chinese3 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_gb2312 [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_gb2312a [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_boutique_bitmap_9x9_bold_t_gb2312b [BoutiqueBitmap](fntgrpbb)
|
||||
|
||||
 u8g2_font_b10_t_japanese1 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b10_t_japanese2 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b10_b_t_japanese1 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b10_b_t_japanese2 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_chroma48medium8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_chroma48medium8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_chroma48medium8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_courB08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courB08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courB08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courR08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courR08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_courR08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_pcsenior_8f [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pcsenior_8r [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pcsenior_8n [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pcsenior_8u [Codeman38](fntgrpcodeman38)
|
||||
|
||||
|
||||
## 7 Pixel Height
|
||||
|
||||
 u8g2_font_m2icon_7_tf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_r7_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_r7_tn [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_b7_tr [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_squeezed_b7_tn [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_5x8_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_te [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_t_symbols [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_m_symbols [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_t_cyrillic [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_siji_t_6x10 [Siji Icon Font](fntgrpsiji)
|
||||
|
||||
 u8g2_font_open_iconic_arrow_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_other_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_profont11_tf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_tr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_tn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_iranian_sans_10_t_all [Persian](fntgrppersian)
|
||||
|
||||
 u8g2_font_mozart_nbp_tf [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_mozart_nbp_tr [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_mozart_nbp_tn [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_mozart_nbp_t_all [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_mozart_nbp_h_all [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_roentgen_nbp_tf [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_roentgen_nbp_tr [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_roentgen_nbp_tn [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_roentgen_nbp_t_all [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_roentgen_nbp_h_all [NBP](fntgrpnbp)
|
||||
|
||||
 u8g2_font_sandyforest_tr [JayWright](fntgrpjaywright)
|
||||
|
||||
 u8g2_font_sandyforest_tn [JayWright](fntgrpjaywright)
|
||||
|
||||
 u8g2_font_sandyforest_tu [JayWright](fntgrpjaywright)
|
||||
|
||||
 u8g2_font_resoledbold_tr [JosephKnightcom](fntgrpjosephknightcom)
|
||||
|
||||
 u8g2_font_resoledmedium_tr [JosephKnightcom](fntgrpjosephknightcom)
|
||||
|
||||
 u8g2_font_lord_mr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_oskool_tf [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_oskool_tr [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_oskool_tn [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_finderskeepers_tf [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_finderskeepers_tr [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_finderskeepers_tn [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_sirclivethebold_tr [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_sirclivethebold_tn [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_sirclive_tr [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_sirclive_tn [GilesBooth](fntgrpgilesbooth)
|
||||
|
||||
 u8g2_font_simple1_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_simple1_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_simple1_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_likeminecraft_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_heisans_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_minicute_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_minicute_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_stylishcharm_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_stylishcharm_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_bpixel_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_bpixel_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_minuteconsole_mr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_minuteconsole_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_new3x9pixelfont_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_new3x9pixelfont_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_new3x9pixelfont_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_IPAandRUSLCD_tf [JapanYoshi](fntgrpjapanyoshi)
|
||||
|
||||
 u8g2_font_IPAandRUSLCD_tr [JapanYoshi](fntgrpjapanyoshi)
|
||||
|
||||
 u8g2_font_IPAandRUSLCD_te [JapanYoshi](fntgrpjapanyoshi)
|
||||
|
||||
 u8g2_font_BitTypeWriter_tr [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_BitTypeWriter_te [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_Georgia7px_tf [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_Georgia7px_tr [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_Georgia7px_te [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_NokiaSmallBold_tf [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_NokiaSmallBold_tr [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_NokiaSmallBold_te [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_NokiaSmallPlain_tf [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_NokiaSmallPlain_tr [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_NokiaSmallPlain_te [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_spleen5x8_mn [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_nokiafc22_tf [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_nokiafc22_tr [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_nokiafc22_tn [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_nokiafc22_tu [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_b12_t_japanese1 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b12_t_japanese2 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b12_t_japanese3 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b12_b_t_japanese1 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b12_b_t_japanese2 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_b12_b_t_japanese3 [efont](fntgrpefont)
|
||||
|
||||
 u8g2_font_artossans8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artossans8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artossans8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artosserif8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artosserif8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artosserif8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_saikyosansbold8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_saikyosansbold8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_torussansbold8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_torussansbold8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_torussansbold8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriabold8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriabold8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriabold8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriamedium8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriamedium8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriamedium8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_timB08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timB08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timB08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timR08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timR08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_timR08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_lucasfont_alternate_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_lucasfont_alternate_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_lucasfont_alternate_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_haxrcorp4089_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_haxrcorp4089_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_haxrcorp4089_t_cyrillic [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_t_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
|
||||
## 8 Pixel Height
|
||||
|
||||
 u8g2_font_m2icon_9_tf [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8f [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8r [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8n [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8u [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_cursor_tf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_cursor_tr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_tn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_11_tf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_tr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_te [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_t_all [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_t_symbol [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_tf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_tr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_te [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_tf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_tr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_te [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_t_symbol [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_tf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_tr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_te [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_open_iconic_all_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_app_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_check_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_email_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_embedded_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_gui_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_human_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_mime_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_play_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_text_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_thing_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_weather_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_open_iconic_www_1x_t [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8g2_font_profont12_tf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_tr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_tn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_samim_10_t_all [Persian](fntgrppersian)
|
||||
|
||||
 u8g2_font_samim_fd_10_t_all [Persian](fntgrppersian)
|
||||
|
||||
 u8g2_font_diodesemimono_tr [JosephKnightcom](fntgrpjosephknightcom)
|
||||
|
||||
 u8g2_font_bitcasual_tf [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_bitcasual_tr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_bitcasual_tn [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_bitcasual_tu [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_bitcasual_t_all [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_abel_mr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_nerhoe_tf [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_nerhoe_tr [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_nerhoe_tn [Tulamide](fntgrptulamide)
|
||||
|
||||
 u8g2_font_medsans_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_originalsans_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_scrum_tf [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_scrum_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_scrum_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_busdisplay8x5_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_littlemissloudonbold_tr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_littlemissloudonbold_te [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_HelvetiPixel_tr [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_Wizzard_tr [Pentacom](fntgrppentacom)
|
||||
|
||||
 u8g2_font_spleen6x12_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen6x12_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen6x12_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen6x12_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_wqy12_t_chinese1 [Wqy (Chinese Font)](fntgrpwqy)
|
||||
|
||||
 u8g2_font_wqy12_t_chinese2 [Wqy (Chinese Font)](fntgrpwqy)
|
||||
|
||||
 u8g2_font_wqy12_t_chinese3 [Wqy (Chinese Font)](fntgrpwqy)
|
||||
|
||||
 u8g2_font_wqy12_t_gb2312 [Wqy (Chinese Font)](fntgrpwqy)
|
||||
|
||||
 u8g2_font_wqy12_t_gb2312a [Wqy (Chinese Font)](fntgrpwqy)
|
||||
|
||||
 u8g2_font_wqy12_t_gb2312b [Wqy (Chinese Font)](fntgrpwqy)
|
||||
|
||||
 u8g2_font_helvB08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvB08_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_helvR08_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenB08_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR08_tf [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR08_tr [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR08_tn [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_ncenR08_te [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8g2_font_luBIS08_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBIS08_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBIS08_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBIS08_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS08_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS08_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS08_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luBS08_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS08_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS08_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS08_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luIS08_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS08_tf [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS08_tr [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS08_tn [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_luRS08_te [lucida](fntgrplucida)
|
||||
|
||||
 u8g2_font_robot_de_niro_tf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_robot_de_niro_tr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_robot_de_niro_tn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_gulim11_t_korean1 [Gulim](fntgrpgulim)
|
||||
|
||||
 u8g2_font_gulim11_t_korean2 [Gulim](fntgrpgulim)
|
||||
|
||||
 u8g2_font_pressstart2p_8f [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pressstart2p_8r [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pressstart2p_8n [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pressstart2p_8u [Codeman38](fntgrpcodeman38)
|
||||
|
||||
@@ -0,0 +1,271 @@
|
||||
|
||||
[tocstart]: # (toc start)
|
||||
|
||||
* [Fonts for U8x8](#fonts-for-u8x8)
|
||||
|
||||
[tocend]: # (toc end)
|
||||
|
||||
# Fonts for U8x8
|
||||
|
||||
 u8x8_font_amstrad_cpc_extended_f [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_amstrad_cpc_extended_r [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_amstrad_cpc_extended_n [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_amstrad_cpc_extended_u [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_5x7_f [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_5x7_r [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_5x7_n [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_5x8_f [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_5x8_r [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_5x8_n [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_8x13_1x2_f [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_8x13_1x2_r [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_8x13_1x2_n [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_8x13B_1x2_f [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_8x13B_1x2_r [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_8x13B_1x2_n [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_7x14_1x2_f [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_7x14_1x2_r [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_7x14_1x2_n [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_7x14B_1x2_f [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_7x14B_1x2_r [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_7x14B_1x2_n [X11](fntgrpx11)
|
||||
|
||||
 u8x8_font_open_iconic_arrow_1x1 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_check_1x1 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_embedded_1x1 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_play_1x1 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_thing_1x1 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_weather_1x1 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_arrow_2x2 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_check_2x2 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_embedded_2x2 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_play_2x2 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_thing_2x2 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_weather_2x2 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_arrow_4x4 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_check_4x4 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_embedded_4x4 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_play_4x4 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_thing_4x4 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_weather_4x4 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_arrow_8x8 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_check_8x8 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_embedded_8x8 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_play_8x8 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_thing_8x8 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_open_iconic_weather_8x8 [Open Iconic](fntgrpiconic)
|
||||
|
||||
 u8x8_font_profont29_2x3_f [Profont](fntgrpprofont)
|
||||
|
||||
 u8x8_font_profont29_2x3_r [Profont](fntgrpprofont)
|
||||
|
||||
 u8x8_font_profont29_2x3_n [Profont](fntgrpprofont)
|
||||
|
||||
 u8x8_font_artossans8_r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_artossans8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_artossans8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_artosserif8_r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_artosserif8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_artosserif8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_chroma48medium8_r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_chroma48medium8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_chroma48medium8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_saikyosansbold8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_saikyosansbold8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_torussansbold8_r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_torussansbold8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_torussansbold8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_victoriabold8_r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_victoriabold8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_victoriabold8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_victoriamedium8_r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_victoriamedium8_n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_victoriamedium8_u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8x8_font_courB18_2x3_f [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courB18_2x3_r [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courB18_2x3_n [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courR18_2x3_f [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courR18_2x3_r [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courR18_2x3_n [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courB24_3x4_f [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courB24_3x4_r [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courB24_3x4_n [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courR24_3x4_f [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courR24_3x4_r [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_courR24_3x4_n [Adobe X11](fntgrpadobex11)
|
||||
|
||||
 u8x8_font_lucasarts_scumm_subtitle_o_2x2_f [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_lucasarts_scumm_subtitle_o_2x2_r [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_lucasarts_scumm_subtitle_o_2x2_n [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_lucasarts_scumm_subtitle_r_2x2_f [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_lucasarts_scumm_subtitle_r_2x2_r [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_lucasarts_scumm_subtitle_r_2x2_n [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8x8_font_inr21_2x4_f [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr21_2x4_r [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr21_2x4_n [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr33_3x6_f [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr33_3x6_r [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr33_3x6_n [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr46_4x8_f [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr46_4x8_r [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inr46_4x8_n [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb21_2x4_f [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb21_2x4_r [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb21_2x4_n [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb33_3x6_f [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb33_3x6_r [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb33_3x6_n [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb46_4x8_f [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb46_4x8_r [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_inb46_4x8_n [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8x8_font_pressstart2p_f [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pressstart2p_r [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pressstart2p_n [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pressstart2p_u [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pcsenior_f [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pcsenior_r [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pcsenior_n [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pcsenior_u [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8x8_font_pxplusibmcgathin_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcgathin_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcgathin_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcgathin_u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcga_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcga_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcga_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplusibmcga_u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplustandynewtv_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplustandynewtv_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplustandynewtv_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_pxplustandynewtv_u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_px437wyse700a_2x2_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_px437wyse700a_2x2_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_px437wyse700a_2x2_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_px437wyse700b_2x2_f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_px437wyse700b_2x2_r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8x8_font_px437wyse700b_2x2_n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
 u8g2_font_micro_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_micro_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_4x6_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_mf [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_mr [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_mn [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tom_thumb_4x6_me [Tom-Thumb](fntgrptomthumb)
|
||||
|
||||
 u8g2_font_tiny_simon_mr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_3x5im_mr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
|
||||
## 6 Pixel Height
|
||||
|
||||
 u8g2_font_5x7_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x7_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_5x8_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_profont10_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont10_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_spleen5x8_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen5x8_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen5x8_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen5x8_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_chroma48medium8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_chroma48medium8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_chroma48medium8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_pcsenior_8f [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pcsenior_8r [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pcsenior_8n [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pcsenior_8u [Codeman38](fntgrpcodeman38)
|
||||
|
||||
|
||||
## 7 Pixel Height
|
||||
|
||||
 u8g2_font_5x8_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x10_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x12_m_symbols [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_profont11_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont11_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_lord_mr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_minuteconsole_mr [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_spleen5x8_mn [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_artossans8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artossans8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artossans8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artosserif8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artosserif8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_artosserif8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_saikyosansbold8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_saikyosansbold8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_torussansbold8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_torussansbold8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_torussansbold8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriabold8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriabold8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriabold8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriamedium8_8r [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriamedium8_8n [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_victoriamedium8_8u [Open Game Art](fntgrpopengameart)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcgathin_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmcga_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8f [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8r [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8n [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8u [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplustandynewtv_8_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
|
||||
## 8 Pixel Height
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8f [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8r [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8n [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_amstrad_cpc_extended_8u [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_6x10_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_11_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_profont12_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont12_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_abel_mr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_spleen6x12_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen6x12_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen6x12_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen6x12_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_pressstart2p_8f [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pressstart2p_8r [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pressstart2p_8n [Codeman38](fntgrpcodeman38)
|
||||
|
||||
 u8g2_font_pressstart2p_8u [Codeman38](fntgrpcodeman38)
|
||||
|
||||
|
||||
## 9 Pixel Height
|
||||
|
||||
 u8g2_font_6x13_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13B_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13B_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13O_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13O_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13_m_symbols [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13B_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13B_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13O_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13O_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13_m_symbols [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13O_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13O_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_11_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_11b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_12b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_profont15_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont15_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont15_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_frigidaire_mr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_9x6LED_mn [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_spleen6x12_mn [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_crox1cb_mf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox1cb_mr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox1c_mf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox1c_mr [crox](fntgrpcrox)
|
||||
|
||||
|
||||
## 10 Pixel Height
|
||||
|
||||
 u8g2_font_6x12_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x14_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x14_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x14B_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x14B_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13B_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13B_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15_m_symbols [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15B_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15B_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18B_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18B_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_15_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_15_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_15_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_15b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_15b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_15b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_spleen8x16_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen8x16_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen8x16_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen8x16_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_crox2cb_mf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2cb_mr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2c_mf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2c_mr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_pxplusibmvga9_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga9_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga9_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga9_m_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga8_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga8_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga8_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_pxplusibmvga8_m_all [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
|
||||
## 11 Pixel Height
|
||||
|
||||
 u8g2_font_6x13_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_6x13O_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x13O_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_8x13O_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_13_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_13b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_14b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_profont17_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont17_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont17_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_crox1cb_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox1c_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_cu12_mf [cu12](fntgrpcu12)
|
||||
|
||||
 u8g2_font_cu12_mr [cu12](fntgrpcu12)
|
||||
|
||||
 u8g2_font_cu12_mn [cu12](fntgrpcu12)
|
||||
|
||||
 u8g2_font_cu12_me [cu12](fntgrpcu12)
|
||||
|
||||
 u8g2_font_px437wyse700a_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_px437wyse700a_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_px437wyse700a_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_px437wyse700b_mf [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_px437wyse700b_mr [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
 u8g2_font_px437wyse700b_mn [Oldschool PC Fonts](fntgrpoldschoolpcfonts)
|
||||
|
||||
|
||||
## 12 Pixel Height
|
||||
|
||||
 u8g2_font_freedoomr10_mu [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_7x14_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_7x14B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x15B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_15_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_15b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_16b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_tenstamps_mf [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_tenstamps_mr [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_tenstamps_mn [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_tenstamps_mu [Geoff](fntgrpgeoff)
|
||||
|
||||
 u8g2_font_iconquadpix_m_all [bitfontmaker2](fntgrpbitfontmaker2)
|
||||
|
||||
 u8g2_font_12x6LED_mn [HasanKazan](fntgrphasankazan)
|
||||
|
||||
 u8g2_font_spleen8x16_mn [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_crox3cb_mf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3cb_mr [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3c_mf [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3c_mr [crox](fntgrpcrox)
|
||||
|
||||
|
||||
## 13 Pixel Height
|
||||
|
||||
 u8g2_font_10x20_mf [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_mr [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_10x20_me [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_22_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_crox2cb_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox2c_mn [crox](fntgrpcrox)
|
||||
|
||||
|
||||
## 14 Pixel Height
|
||||
|
||||
 u8g2_font_9x18_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_9x18B_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_t0_17_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_17b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_18b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_profont22_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont22_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_chargen_92_mf [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_mr [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_mn [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
 u8g2_font_chargen_92_me [Fontstruct](fntgrpfontstruct)
|
||||
|
||||
|
||||
## 15 Pixel Height
|
||||
|
||||
 u8g2_font_spleen12x24_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen12x24_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen12x24_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen12x24_me [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_VCR_OSD_mf [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mr [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mn [dafont](fntgrpdafont)
|
||||
|
||||
 u8g2_font_VCR_OSD_mu [dafont](fntgrpdafont)
|
||||
|
||||
|
||||
## 16 Pixel Height
|
||||
|
||||
 u8g2_font_10x20_mn [X11](fntgrpx11)
|
||||
|
||||
 u8g2_font_crox3cb_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_crox3c_mn [crox](fntgrpcrox)
|
||||
|
||||
 u8g2_font_inr16_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr16_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr16_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb16_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb16_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb16_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 17 Pixel Height
|
||||
|
||||
 u8g2_font_t0_22_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_22b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
|
||||
## 19 Pixel Height
|
||||
|
||||
 u8g2_font_profont29_mf [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont29_mr [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_profont29_mn [Profont](fntgrpprofont)
|
||||
|
||||
 u8g2_font_spleen12x24_mn [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_inr19_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr19_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr19_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb19_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb19_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb19_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 20 Pixel Height
|
||||
|
||||
 u8g2_font_spleen16x32_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen16x32_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen16x32_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen16x32_me [Spleen](fntgrpspleen)
|
||||
|
||||
|
||||
## 21 Pixel Height
|
||||
|
||||
 u8g2_font_inb21_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb21_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb21_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 22 Pixel Height
|
||||
|
||||
 u8g2_font_inr21_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr21_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr21_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 23 Pixel Height
|
||||
|
||||
 u8g2_font_t0_30_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_30b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40b_mf [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40b_mr [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40b_me [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
|
||||
## 24 Pixel Height
|
||||
|
||||
 u8g2_font_inb24_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb24_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb24_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 25 Pixel Height
|
||||
|
||||
 u8g2_font_inr24_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr24_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr24_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 26 Pixel Height
|
||||
|
||||
 u8g2_font_freedoomr25_mn [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_spleen16x32_mn [Spleen](fntgrpspleen)
|
||||
|
||||
|
||||
## 27 Pixel Height
|
||||
|
||||
 u8g2_font_inr27_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr27_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr27_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb27_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb27_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb27_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 30 Pixel Height
|
||||
|
||||
 u8g2_font_inr30_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr30_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr30_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb30_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb30_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb30_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 31 Pixel Height
|
||||
|
||||
 u8g2_font_t0_40_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
 u8g2_font_t0_40b_mn [UW ttyp0](fntgrpttyp0)
|
||||
|
||||
|
||||
## 33 Pixel Height
|
||||
|
||||
 u8g2_font_inr33_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr33_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr33_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb33_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb33_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb33_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 38 Pixel Height
|
||||
|
||||
 u8g2_font_inb38_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb38_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb38_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 39 Pixel Height
|
||||
|
||||
 u8g2_font_inr38_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr38_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr38_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 40 Pixel Height
|
||||
|
||||
 u8g2_font_spleen32x64_mf [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen32x64_mr [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen32x64_mu [Spleen](fntgrpspleen)
|
||||
|
||||
 u8g2_font_spleen32x64_me [Spleen](fntgrpspleen)
|
||||
|
||||
|
||||
## 42 Pixel Height
|
||||
|
||||
 u8g2_font_7Segments_26x42_mn [U8glib](fntgrpu8g)
|
||||
|
||||
 u8g2_font_inr42_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr42_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr42_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb42_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb42_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb42_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 46 Pixel Height
|
||||
|
||||
 u8g2_font_inr46_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr46_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr46_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb46_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb46_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb46_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 49 Pixel Height
|
||||
|
||||
 u8g2_font_inr49_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr49_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr49_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb49_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb49_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb49_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 52 Pixel Height
|
||||
|
||||
 u8g2_font_spleen32x64_mn [Spleen](fntgrpspleen)
|
||||
|
||||
|
||||
## 53 Pixel Height
|
||||
|
||||
 u8g2_font_inr53_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr53_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inr53_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb53_mf [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb53_mr [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb53_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 57 Pixel Height
|
||||
|
||||
 u8g2_font_inr57_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
 u8g2_font_inb57_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 61 Pixel Height
|
||||
|
||||
 u8g2_font_inr62_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
||||
## 63 Pixel Height
|
||||
|
||||
 u8g2_font_inb63_mn [Inconsolata](fntgrpinconsolata)
|
||||
|
||||
|
After Width: | Height: | Size: 563 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 334 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 327 B |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 429 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 429 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 383 B |
|
After Width: | Height: | Size: 2.6 KiB |
|
After Width: | Height: | Size: 403 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 403 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 308 B |
|
After Width: | Height: | Size: 1.6 KiB |