Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
OBSW_TmtcGUI.py 807 B
#!/usr/bin/python3.7
# -*- coding: utf-8 -*-
"""
@file
    OBSW_TmtcGUI.py
@date
    01.11.2019
@brief
    This is part of the TMTC client developed by the SOURCE project by KSat
@description
    GUI Testing for TMTC client
@manual
@author:
    R. Mueller
"""
from tkinter import *

# A first simple version has drop down menus to chose all necessary options
# which are normally handled by the args parser.
# when pressing save, all chosen values get passed to the globals file (OBSW_Config)
# To start the program, another button with start needs to be set up.
# A third button to perform a keyboard interrupt should be implemented
# include a really nice source badge and make it large !
# plan this on paper first...
window = Tk()
window.title("Hallo Welt")
window.mainloop()