Add pi and directions

This commit is contained in:
dylan
2023-05-10 20:10:32 -07:00
parent ae3fa89a8b
commit 04f206814c
4 changed files with 18 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ export const CHAR = {
LEFT: "Á",
DOWN: "Â",
RIGHT: "Ã",
PI: "π"
}
export type Font = {
@@ -841,5 +842,13 @@ export const font: Font = {
0, 1, 1, 1, 1, 1, 0,
0, 0, 0, 0, 0, 0, 0,
],
[CHAR.PI]: [
0, 0, 0, 0, 0,
0, 0, 0, 0, 0,
1, 1, 1, 1, 1,
0, 1, 0, 1, 0,
0, 1, 0, 1, 0,
0, 0, 0, 0, 0,
],
}
};