Update 8x8 font used by visualizers

Added 'G' through 'Z'.  Rounded 'D' a bit.
This commit is contained in:
Andy McFadden 2021-07-27 14:22:34 -07:00
parent 594c22a6fd
commit eeac6db441
1 changed files with 185 additions and 5 deletions

View File

@ -53,7 +53,7 @@ namespace CommonUtil {
return 1;
} else if (ch >= '0' && ch <= '9') {
return ch - '0' + 2;
} else if (ch >= 'A' && ch <= 'F') {
} else if (ch >= 'A' && ch <= 'Z') {
return ch - 'A' + 12;
} else {
return 0;
@ -231,13 +231,13 @@ namespace CommonUtil {
".#####.." +
"........",
// 'D'
"######.." +
"#####..." +
"#....#.." +
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
"######.." +
"#....#.." +
"#####..." +
"........",
// 'E'
"#######." +
@ -257,6 +257,186 @@ namespace CommonUtil {
"#......." +
"#......." +
"........",
// 'G'
".#####.." +
"#.....#." +
"#......." +
"#......." +
"#...###." +
"#.....#." +
".######." +
"........",
// 'H'
"#.....#." +
"#.....#." +
"#.....#." +
"#######." +
"#.....#." +
"#.....#." +
"#.....#." +
"........",
// 'I'
"..###..." +
"...#...." +
"...#...." +
"...#...." +
"...#...." +
"...#...." +
"..###..." +
"........",
// 'J'
"......#." +
"......#." +
"......#." +
"......#." +
"#.....#." +
"#.....#." +
".#####.." +
"........",
// 'K'
"#.....#." +
"#...##.." +
"#.##...." +
"##......" +
"#.##...." +
"#...##.." +
"#.....#." +
"........",
// 'L'
"#......." +
"#......." +
"#......." +
"#......." +
"#......." +
"#......." +
"#######." +
"........",
// 'M'
"#.....#." +
"##...##." +
"#.#.#.#." +
"#..#..#." +
"#.....#." +
"#.....#." +
"#.....#." +
"........",
// 'N'
"#.....#." +
"##....#." +
"#.#...#." +
"#..#..#." +
"#...#.#." +
"#....##." +
"#.....#." +
"........",
// 'O'
".#####.." +
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
".#####.." +
"........",
// 'P'
"######.." +
"#.....#." +
"#.....#." +
"######.." +
"#......." +
"#......." +
"#......." +
"........",
// 'Q'
".#####.." +
"#.....#." +
"#.....#." +
"#.....#." +
"#...#.#." +
"#....#.." +
".####.#." +
"........",
// 'R'
"######.." +
"#.....#." +
"#.....#." +
"######.." +
"#...#..." +
"#....#.." +
"#.....#." +
"........",
// 'S'
".#####.." +
"#.....#." +
"#......." +
".#####.." +
"......#." +
"#.....#." +
".#####.." +
"........",
// 'T'
"#######." +
"...#...." +
"...#...." +
"...#...." +
"...#...." +
"...#...." +
"...#...." +
"........",
// 'U'
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
".#####.." +
"........",
// 'V'
"#.....#." +
"#.....#." +
"#.....#." +
"#.....#." +
".#...#.." +
"..#.#..." +
"...#...." +
"........",
// 'W'
"#.....#." +
"#.....#." +
"#.....#." +
"#..#..#." +
"#.#.#.#." +
"##...##." +
"#.....#." +
"........",
// 'X'
"#.....#." +
".#...#.." +
"..#.#..." +
"...#...." +
"..#.#..." +
".#...#.." +
"#.....#." +
"........",
// 'Y'
"#.....#." +
".#...#.." +
"..#.#..." +
"...#...." +
"...#...." +
"...#...." +
"...#...." +
"........",
// 'Z'
"#######." +
".....#.." +
"....#..." +
"...#...." +
"..#....." +
".#......" +
"#######." +
"........",
};
}
}