acn/rtx
acn
/
rtx
1
0
Fork 0

Tag ergänzt

This commit is contained in:
Anna Christina Naß 2018-06-01 15:30:50 +02:00
parent 536bdf96a8
commit 002774a493
1 changed files with 7 additions and 0 deletions

View File

@ -52,6 +52,10 @@ liste = [
## DRCs ablegen:
(b"DRCinG0", b"\x1b\x28\x20\x40"), (b"DRCinG1", b"\x1b\x29\x20\x40"), (b"DRCinG2", b"\x1b\x2a\x20\x40"), (b"DRCinG3", b"\x1b\x2b\x20\x40"),
## Umlaute + Eszett:
(b"uml", b"\x19\x48"), # folgendes Zeichen erhält Umlautpunkte <uml>a => ä
(b"sz", b"\x19\xfb"), # ß
# Steuerzeichen:
(b"CurL", b"\x08"), (b"CurR", b"\x09"), (b"CurU", b"\x0a"), (b"CurD", b"\x0b"), # Cursor bewegen (left/right/up/down)
(b"cls", b"\x0c"), # Clear Screen
@ -115,6 +119,9 @@ liste = [
# setzt dort G0 links + G2 rechts, seriell, Farbtafel 0
(b"Service", b"\x1f\x2f\x40"), # Sprung in Zeile 24: <Service><24>
(b"/Service", b"\x1f\x2f\x4f"), # Zurück vom Servicesprung
# Seite abschließen: gehe zu 24,01, Cursor an
(b"/CEPT", b"\x1f\x58\x41\x11\x1a"),
]