enter = all up
This commit is contained in:
parent
841cd6e2e6
commit
8624a0d139
2 changed files with 11 additions and 0 deletions
|
@ -37,6 +37,11 @@ std::unordered_map<char, BrailleChar> braille_map = {
|
|||
0, 0,
|
||||
0, 0
|
||||
}}},
|
||||
{'\n', {{
|
||||
1, 1,
|
||||
1, 1,
|
||||
1, 1
|
||||
}}},
|
||||
{'a', {{
|
||||
1, 0,
|
||||
0, 0,
|
||||
|
|
|
@ -26,6 +26,11 @@ public class Mono {
|
|||
0, 0,
|
||||
0, 0
|
||||
} },
|
||||
{ '\n', new int[] {
|
||||
1, 1,
|
||||
1, 1,
|
||||
1, 1
|
||||
} },
|
||||
{ 'a', new int[] {
|
||||
1, 0,
|
||||
0, 0,
|
||||
|
@ -370,6 +375,7 @@ public class Mono {
|
|||
|
||||
KebKey[] keb_keys = new KebKey[] {
|
||||
new() { key = Key.Space, char_ = ' ' },
|
||||
new() { key = Key.Return, char_ = '\n' },
|
||||
new() { key = Key.A, char_ = 'a' },
|
||||
new() { key = Key.B, char_ = 'b' },
|
||||
new() { key = Key.C, char_ = 'c' },
|
||||
|
|
Loading…
Add table
Reference in a new issue