Removed Braille. BrlTTY does a great job already in the console. Also, Fenrir's implementation was only partially done and not working.

This commit is contained in:
Storm Dragon
2024-12-08 06:43:22 -05:00
parent 3757a1ceeb
commit baa4c9a937
22 changed files with 58 additions and 810 deletions

View File

@ -12,14 +12,12 @@ class fenrirEventType(Enum):
StopMainLoop = 1
ScreenUpdate = 2
KeyboardInput = 3
BrailleInput = 4
PlugInputDevice = 5
BrailleFlush = 6
ScreenChanged = 7
HeartBeat = 8 # for time based scheduling
ExecuteCommand = 9
ByteInput = 10
RemoteIncomming = 11
PlugInputDevice = 4
ScreenChanged = 5
HeartBeat = 6
ExecuteCommand = 7
ByteInput = 8
RemoteIncomming = 9
def __int__(self):
return self.value
def __str__(self):