enter = all up

This commit is contained in:
ethan merchant 2024-04-30 17:15:42 -04:00
parent 841cd6e2e6
commit 8624a0d139
2 changed files with 11 additions and 0 deletions

View file

@ -37,6 +37,11 @@ std::unordered_map<char, BrailleChar> braille_map = {
0, 0, 0, 0,
0, 0 0, 0
}}}, }}},
{'\n', {{
1, 1,
1, 1,
1, 1
}}},
{'a', {{ {'a', {{
1, 0, 1, 0,
0, 0, 0, 0,

View file

@ -26,6 +26,11 @@ public class Mono {
0, 0, 0, 0,
0, 0 0, 0
} }, } },
{ '\n', new int[] {
1, 1,
1, 1,
1, 1
} },
{ 'a', new int[] { { 'a', new int[] {
1, 0, 1, 0,
0, 0, 0, 0,
@ -370,6 +375,7 @@ public class Mono {
KebKey[] keb_keys = new KebKey[] { KebKey[] keb_keys = new KebKey[] {
new() { key = Key.Space, char_ = ' ' }, new() { key = Key.Space, char_ = ' ' },
new() { key = Key.Return, char_ = '\n' },
new() { key = Key.A, char_ = 'a' }, new() { key = Key.A, char_ = 'a' },
new() { key = Key.B, char_ = 'b' }, new() { key = Key.B, char_ = 'b' },
new() { key = Key.C, char_ = 'c' }, new() { key = Key.C, char_ = 'c' },