acn/rtx
acn
/
rtx
1
0
Fork 0
rtx/glob.py

19 lines
399 B
Python

# -*- coding: UTF-8 -*-
'''
rtx - RetroText
rtxGlobal: Modul für globale Variablen
by Anna Christina Naß <acn@acn.wtf>
released under GPL
'''
import serial
from rtxPage import rtxPage
# global variables which should be available throughout the whole program:
cmdline = ""
curpage = rtxPage()
prevpage = rtxPage() # to be able to use ** to go back to last page
ser = serial.Serial()
mode = None