1
0
rtx/glob.py
2016-05-23 16:01:04 +02:00

17 lines
386 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()