Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add converted Adafruit and PixelIt fonts #34

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
141 changes: 141 additions & 0 deletions FontClassic.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
/*
** This is the 'classic' fixed-space bitmap font for Adafruit_GFX since 1.0.
**
** Converted from Adafruit GFX to LEDText using
** https://github.com/masto/LEDText/blob/font_convert/convert_classic_font.py
**
** Software License Agreement (BSD License)
**
** Copyright (c) 2012 Adafruit Industries. 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.
*/

#ifndef FontClassic_h
#define FontClassic_h

#include <stdint.h>

constexpr uint8_t ClassicFontData[] = {
5, // Font Width
8, // Font Height
32, // Font First Character
127, // Font Last Character
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // Space
0x20, 0x20, 0x20, 0x20, 0x20, 0x00, 0x20, 0x00, // !
0x50, 0x50, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, // "
0x50, 0x50, 0xf8, 0x50, 0xf8, 0x50, 0x50, 0x00, // #
0x20, 0x78, 0xa0, 0x70, 0x28, 0xf0, 0x20, 0x00, // $
0xc0, 0xc8, 0x10, 0x20, 0x40, 0x98, 0x18, 0x00, // %
0x40, 0xa0, 0xa0, 0x40, 0xa8, 0x90, 0x68, 0x00, // &
0x30, 0x30, 0x20, 0x40, 0x00, 0x00, 0x00, 0x00, // '
0x10, 0x20, 0x40, 0x40, 0x40, 0x20, 0x10, 0x00, // (
0x40, 0x20, 0x10, 0x10, 0x10, 0x20, 0x40, 0x00, // )
0x20, 0xa8, 0x70, 0xf8, 0x70, 0xa8, 0x20, 0x00, // *
0x00, 0x20, 0x20, 0xf8, 0x20, 0x20, 0x00, 0x00, // +
0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x20, 0x40, // ,
0x00, 0x00, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x00, // -
0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, // .
0x00, 0x08, 0x10, 0x20, 0x40, 0x80, 0x00, 0x00, // /
0x70, 0x88, 0x98, 0xa8, 0xc8, 0x88, 0x70, 0x00, // 0
0x20, 0x60, 0x20, 0x20, 0x20, 0x20, 0x70, 0x00, // 1
0x70, 0x88, 0x08, 0x70, 0x80, 0x80, 0xf8, 0x00, // 2
0xf8, 0x08, 0x10, 0x30, 0x08, 0x88, 0x70, 0x00, // 3
0x10, 0x30, 0x50, 0x90, 0xf8, 0x10, 0x10, 0x00, // 4
0xf8, 0x80, 0xf0, 0x08, 0x08, 0x88, 0x70, 0x00, // 5
0x38, 0x40, 0x80, 0xf0, 0x88, 0x88, 0x70, 0x00, // 6
0xf8, 0x08, 0x08, 0x10, 0x20, 0x40, 0x80, 0x00, // 7
0x70, 0x88, 0x88, 0x70, 0x88, 0x88, 0x70, 0x00, // 8
0x70, 0x88, 0x88, 0x78, 0x08, 0x10, 0xe0, 0x00, // 9
0x00, 0x00, 0x20, 0x00, 0x20, 0x00, 0x00, 0x00, // :
0x00, 0x00, 0x20, 0x00, 0x20, 0x20, 0x40, 0x00, // ;
0x08, 0x10, 0x20, 0x40, 0x20, 0x10, 0x08, 0x00, // <
0x00, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00, // =
0x40, 0x20, 0x10, 0x08, 0x10, 0x20, 0x40, 0x00, // >
0x70, 0x88, 0x08, 0x30, 0x20, 0x00, 0x20, 0x00, // ?
0x70, 0x88, 0xa8, 0xb8, 0xb0, 0x80, 0x78, 0x00, // @
0x20, 0x50, 0x88, 0x88, 0xf8, 0x88, 0x88, 0x00, // A
0xf0, 0x88, 0x88, 0xf0, 0x88, 0x88, 0xf0, 0x00, // B
0x70, 0x88, 0x80, 0x80, 0x80, 0x88, 0x70, 0x00, // C
0xf0, 0x88, 0x88, 0x88, 0x88, 0x88, 0xf0, 0x00, // D
0xf8, 0x80, 0x80, 0xf0, 0x80, 0x80, 0xf8, 0x00, // E
0xf8, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0x00, // F
0x78, 0x88, 0x80, 0x80, 0x98, 0x88, 0x78, 0x00, // G
0x88, 0x88, 0x88, 0xf8, 0x88, 0x88, 0x88, 0x00, // H
0x70, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x00, // I
0x38, 0x10, 0x10, 0x10, 0x10, 0x90, 0x60, 0x00, // J
0x88, 0x90, 0xa0, 0xc0, 0xa0, 0x90, 0x88, 0x00, // K
0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xf8, 0x00, // L
0x88, 0xd8, 0xa8, 0xa8, 0xa8, 0x88, 0x88, 0x00, // M
0x88, 0x88, 0xc8, 0xa8, 0x98, 0x88, 0x88, 0x00, // N
0x70, 0x88, 0x88, 0x88, 0x88, 0x88, 0x70, 0x00, // O
0xf0, 0x88, 0x88, 0xf0, 0x80, 0x80, 0x80, 0x00, // P
0x70, 0x88, 0x88, 0x88, 0xa8, 0x90, 0x68, 0x00, // Q
0xf0, 0x88, 0x88, 0xf0, 0xa0, 0x90, 0x88, 0x00, // R
0x70, 0x88, 0x80, 0x70, 0x08, 0x88, 0x70, 0x00, // S
0xf8, 0xa8, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00, // T
0x88, 0x88, 0x88, 0x88, 0x88, 0x88, 0x70, 0x00, // U
0x88, 0x88, 0x88, 0x88, 0x88, 0x50, 0x20, 0x00, // V
0x88, 0x88, 0x88, 0xa8, 0xa8, 0xa8, 0x50, 0x00, // W
0x88, 0x88, 0x50, 0x20, 0x50, 0x88, 0x88, 0x00, // X
0x88, 0x88, 0x50, 0x20, 0x20, 0x20, 0x20, 0x00, // Y
0xf8, 0x08, 0x10, 0x70, 0x40, 0x80, 0xf8, 0x00, // Z
0x78, 0x40, 0x40, 0x40, 0x40, 0x40, 0x78, 0x00, // [
0x00, 0x80, 0x40, 0x20, 0x10, 0x08, 0x00, 0x00, // Backslash
0x78, 0x08, 0x08, 0x08, 0x08, 0x08, 0x78, 0x00, // ]
0x20, 0x50, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, // ^
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x00, // _
0x60, 0x60, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, // `
0x00, 0x00, 0x60, 0x10, 0x70, 0x90, 0x78, 0x00, // a
0x80, 0x80, 0xb0, 0xc8, 0x88, 0xc8, 0xb0, 0x00, // b
0x00, 0x00, 0x70, 0x88, 0x80, 0x88, 0x70, 0x00, // c
0x08, 0x08, 0x68, 0x98, 0x88, 0x98, 0x68, 0x00, // d
0x00, 0x00, 0x70, 0x88, 0xf8, 0x80, 0x70, 0x00, // e
0x10, 0x28, 0x20, 0x70, 0x20, 0x20, 0x20, 0x00, // f
0x00, 0x00, 0x70, 0x98, 0x98, 0x68, 0x08, 0x70, // g
0x80, 0x80, 0xb0, 0xc8, 0x88, 0x88, 0x88, 0x00, // h
0x20, 0x00, 0x60, 0x20, 0x20, 0x20, 0x70, 0x00, // i
0x10, 0x00, 0x10, 0x10, 0x10, 0x90, 0x60, 0x00, // j
0x80, 0x80, 0x90, 0xa0, 0xc0, 0xa0, 0x90, 0x00, // k
0x60, 0x20, 0x20, 0x20, 0x20, 0x20, 0x70, 0x00, // l
0x00, 0x00, 0xd0, 0xa8, 0xa8, 0xa8, 0xa8, 0x00, // m
0x00, 0x00, 0xb0, 0xc8, 0x88, 0x88, 0x88, 0x00, // n
0x00, 0x00, 0x70, 0x88, 0x88, 0x88, 0x70, 0x00, // o
0x00, 0x00, 0xb0, 0xc8, 0xc8, 0xb0, 0x80, 0x80, // p
0x00, 0x00, 0x68, 0x98, 0x98, 0x68, 0x08, 0x08, // q
0x00, 0x00, 0xb0, 0xc8, 0x80, 0x80, 0x80, 0x00, // r
0x00, 0x00, 0x78, 0x80, 0x70, 0x08, 0xf0, 0x00, // s
0x20, 0x20, 0xf8, 0x20, 0x20, 0x28, 0x10, 0x00, // t
0x00, 0x00, 0x88, 0x88, 0x88, 0x98, 0x68, 0x00, // u
0x00, 0x00, 0x88, 0x88, 0x88, 0x50, 0x20, 0x00, // v
0x00, 0x00, 0x88, 0x88, 0xa8, 0xa8, 0x50, 0x00, // w
0x00, 0x00, 0x88, 0x50, 0x20, 0x50, 0x88, 0x00, // x
0x00, 0x00, 0x88, 0x88, 0x78, 0x08, 0x88, 0x70, // y
0x00, 0x00, 0xf8, 0x10, 0x20, 0x40, 0xf8, 0x00, // z
0x10, 0x20, 0x20, 0x40, 0x20, 0x20, 0x10, 0x00, // {
0x20, 0x20, 0x20, 0x00, 0x20, 0x20, 0x20, 0x00, // |
0x40, 0x20, 0x20, 0x10, 0x20, 0x20, 0x40, 0x00, // }
0x40, 0xa8, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, // ~
0x20, 0x70, 0xd8, 0x88, 0x88, 0xf8, 0x00, 0x00 // DEL
};

#endif
167 changes: 167 additions & 0 deletions FontPixelIt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
/**
** The original 3x5 font is licensed under the 3-clause BSD license:
**
** Copyright 1999 Brian J. Swetland
** Copyright 1999 Vassilii Khachaturov
** Portions (of vt100.c/vt100.h) copyright Dan Marks
**
** 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. The name of the authors may not be used to endorse or promote products
** derived from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
**
** Modifications to Tom Thumb for improved readability are from Robey Pointer,
** see:
** http://robey.lag.net/2010/01/23/tiny-monospace-font.html
**
** Modifications for Awtrix 2.0 for improved readability and LaMetric Style are from
** Blueforcer, Yann and hollyghost
** see:
** https://forum.blueforcer.de/d/11-edit-font
**
** The original author does not have any objection to relicensing of Robey
** Pointer's modifications (in this file) in a more permissive license. See
** the discussion at the above blog, and also here:
** http://opengameart.org/forumtopic/how-to-submit-art-using-the-3-clause-bsd-license
**
** Feb 21, 2016: Conversion from Linux BDF --> Adafruit GFX font,
** with the help of this Python script:
** https://gist.github.com/skelliam/322d421f028545f16f6d
** William Skellenger (williamj@skellenger.net)
** Twitter: @skelliam
**
** Adafruit GFX Pixel font customiser
** https://tchapi.github.io/Adafruit-GFX-Font-Customiser/
**
** Converted from Adafruit GFX to LEDText using
** https://github.com/masto/LEDText/blob/font_convert/convert_gfx_font.py
*/

#ifndef FontPixelIt_h
#define FontPixelIt_h

#include <stdint.h>

constexpr uint8_t PixelItFontData[] = {
FONT_PROPORTIONAL | 8, // Font Maximum Width
6, // Font Height
32, // Font First Character
127, // Font Last Character
1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // Space
1, 0x80, 0x80, 0x80, 0x0, 0x80, 0x0, // !
3, 0xa0, 0xa0, 0x0, 0x0, 0x0, 0x0, // "
3, 0xa0, 0xe0, 0xa0, 0xe0, 0xa0, 0x0, // #
3, 0x60, 0xc0, 0x60, 0xc0, 0x40, 0x0, // $
3, 0xa0, 0x20, 0x40, 0x80, 0xa0, 0x0, // %
3, 0xc0, 0xc0, 0xe0, 0xa0, 0x60, 0x0, // &
1, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0, // '
2, 0x40, 0x80, 0x80, 0x80, 0x40, 0x0, // (
2, 0x80, 0x40, 0x40, 0x40, 0x80, 0x0, // )
3, 0xa0, 0x40, 0xa0, 0x0, 0x0, 0x0, // *
3, 0x0, 0x40, 0xe0, 0x40, 0x0, 0x0, // +
2, 0x0, 0x0, 0x0, 0x40, 0x80, 0x0, // ,
3, 0x0, 0x0, 0xe0, 0x0, 0x0, 0x0, // -
1, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, // .
3, 0x20, 0x20, 0x40, 0x80, 0x80, 0x0, // /
3, 0xe0, 0xa0, 0xa0, 0xa0, 0xe0, 0x0, // 0
3, 0x40, 0xc0, 0x40, 0x40, 0xe0, 0x0, // 1
3, 0xe0, 0x20, 0xe0, 0x80, 0xe0, 0x0, // 2
3, 0xe0, 0x20, 0xe0, 0x20, 0xe0, 0x0, // 3
3, 0xa0, 0xa0, 0xe0, 0x20, 0x20, 0x0, // 4
3, 0xe0, 0x80, 0xe0, 0x20, 0xe0, 0x0, // 5
3, 0xe0, 0x80, 0xe0, 0xa0, 0xe0, 0x0, // 6
3, 0xe0, 0x20, 0x20, 0x20, 0x20, 0x0, // 7
3, 0xe0, 0xa0, 0xe0, 0xa0, 0xe0, 0x0, // 8
3, 0xe0, 0xa0, 0xe0, 0x20, 0xe0, 0x0, // 9
1, 0x0, 0x80, 0x0, 0x80, 0x0, 0x0, // :
2, 0x0, 0x40, 0x0, 0x40, 0x80, 0x0, // ;
3, 0x20, 0x40, 0x80, 0x40, 0x20, 0x0, // <
3, 0x0, 0xe0, 0x0, 0xe0, 0x0, 0x0, // =
3, 0x80, 0x40, 0x20, 0x40, 0x80, 0x0, // >
3, 0xe0, 0x20, 0x40, 0x0, 0x40, 0x0, // ?
3, 0x40, 0xa0, 0xe0, 0x80, 0x60, 0x0, // @
3, 0xc0, 0xa0, 0xe0, 0xa0, 0xa0, 0x0, // A
3, 0xc0, 0xa0, 0xc0, 0xa0, 0xc0, 0x0, // B
3, 0x40, 0xa0, 0x80, 0xa0, 0x40, 0x0, // C
3, 0xc0, 0xa0, 0xa0, 0xa0, 0xc0, 0x0, // D
3, 0xe0, 0x80, 0xe0, 0x80, 0xe0, 0x0, // E
3, 0xe0, 0x80, 0xe0, 0x80, 0x80, 0x0, // F
3, 0x60, 0x80, 0xa0, 0xa0, 0x60, 0x0, // G
3, 0xa0, 0xa0, 0xe0, 0xa0, 0xa0, 0x0, // H
1, 0x80, 0x80, 0x80, 0x80, 0x80, 0x0, // I
3, 0x20, 0x20, 0x20, 0xa0, 0x40, 0x0, // J
3, 0xa0, 0xa0, 0xc0, 0xa0, 0xa0, 0x0, // K
3, 0x80, 0x80, 0x80, 0x80, 0xe0, 0x0, // L
5, 0x88, 0xd8, 0xa8, 0x88, 0x88, 0x0, // M
4, 0x90, 0xd0, 0xb0, 0x90, 0x90, 0x0, // N
3, 0x40, 0xa0, 0xa0, 0xa0, 0x40, 0x0, // O
3, 0xe0, 0xa0, 0xc0, 0x80, 0x80, 0x0, // P
4, 0x40, 0xa0, 0xa0, 0xa0, 0x70, 0x0, // Q
3, 0xe0, 0xa0, 0xc0, 0xa0, 0xa0, 0x0, // R
3, 0xe0, 0x80, 0xe0, 0x20, 0xe0, 0x0, // S
3, 0xe0, 0x40, 0x40, 0x40, 0x40, 0x0, // T
3, 0xa0, 0xa0, 0xa0, 0xa0, 0xe0, 0x0, // U
3, 0xa0, 0xa0, 0xa0, 0xa0, 0x40, 0x0, // V
5, 0x88, 0x88, 0x88, 0xa8, 0x50, 0x0, // W
3, 0xa0, 0xa0, 0x40, 0xa0, 0xa0, 0x0, // X
3, 0xa0, 0xa0, 0xe0, 0x20, 0xc0, 0x0, // Y
3, 0xe0, 0x20, 0x40, 0x80, 0xe0, 0x0, // Z
3, 0xe0, 0x80, 0x80, 0x80, 0xe0, 0x0, // [
3, 0x0, 0x80, 0x40, 0x20, 0x0, 0x0, // Backslash
3, 0xe0, 0x20, 0x20, 0x20, 0xe0, 0x0, // ]
3, 0x40, 0xa0, 0x0, 0x0, 0x0, 0x0, // ^
3, 0x0, 0x0, 0x0, 0x0, 0xe0, 0x0, // _
2, 0x80, 0x40, 0x0, 0x0, 0x0, 0x0, // `
3, 0x0, 0xc0, 0x60, 0xa0, 0xe0, 0x0, // a
3, 0x80, 0xc0, 0xa0, 0xa0, 0xc0, 0x0, // b
3, 0x0, 0x60, 0x80, 0x80, 0x60, 0x0, // c
3, 0x20, 0x60, 0xa0, 0xa0, 0x60, 0x0, // d
3, 0x0, 0x60, 0xa0, 0xc0, 0x60, 0x0, // e
3, 0x20, 0x40, 0xe0, 0x40, 0x40, 0x0, // f
3, 0x0, 0x60, 0xa0, 0xe0, 0x20, 0x40, // g
3, 0x80, 0xc0, 0xa0, 0xa0, 0xa0, 0x0, // h
1, 0x80, 0x0, 0x80, 0x80, 0x80, 0x0, // i
3, 0x20, 0x0, 0x20, 0x20, 0xa0, 0x40, // j
3, 0x80, 0xa0, 0xc0, 0xc0, 0xa0, 0x0, // k
3, 0xc0, 0x40, 0x40, 0x40, 0xe0, 0x0, // l
3, 0x0, 0xe0, 0xe0, 0xe0, 0xa0, 0x0, // m
3, 0x0, 0xc0, 0xa0, 0xa0, 0xa0, 0x0, // n
3, 0x0, 0x40, 0xa0, 0xa0, 0x40, 0x0, // o
3, 0x0, 0xc0, 0xa0, 0xa0, 0xc0, 0x80, // p
3, 0x0, 0x60, 0xa0, 0xa0, 0x60, 0x20, // q
3, 0x0, 0x60, 0x80, 0x80, 0x80, 0x0, // r
3, 0x0, 0x60, 0xc0, 0x60, 0xc0, 0x0, // s
3, 0x40, 0xe0, 0x40, 0x40, 0x60, 0x0, // t
3, 0x0, 0xa0, 0xa0, 0xa0, 0x60, 0x0, // u
3, 0x0, 0xa0, 0xa0, 0xe0, 0x40, 0x0, // v
3, 0x0, 0xa0, 0xe0, 0xe0, 0xe0, 0x0, // w
3, 0x0, 0xa0, 0x40, 0x40, 0xa0, 0x0, // x
3, 0x0, 0xa0, 0xa0, 0x60, 0x20, 0x40, // y
3, 0x0, 0xe0, 0x60, 0xc0, 0xe0, 0x0, // z
3, 0x60, 0x40, 0x80, 0x40, 0x60, 0x0, // {
1, 0x80, 0x80, 0x0, 0x80, 0x80, 0x0, // |
3, 0xc0, 0x40, 0x20, 0x40, 0xc0, 0x0, // }
3, 0x60, 0xc0, 0x0, 0x0, 0x0, 0x0, // ~
1, 0x80, 0x0, 0x80, 0x80, 0x80, 0x0 // DEL
};

#endif
Loading