-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathleogps.py
35 lines (29 loc) · 1.66 KB
/
leogps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python3
###############################################################################
###############################################################################
## ##
## _ ___ ___ ___ ___ ___ ##
## | | | __ / \ / __| _ | __| ##
## | |__| __| ( ) | (_ | _|__ \ ##
## |____|___ \___/ \___|_| \___/ ##
## v 1.3 (Stable) ##
## ##
## Written by Samuel Y. W. Low. ##
## Last modified 18-Jul-2022 (By Andrew G. T. Ng). ##
## Website: https://github.com/sammmlow/LEOGPS ##
## Documentation: https://leogps.readthedocs.io/en/latest/ ##
## ##
###############################################################################
###############################################################################
# Import global libraries
import tkinter
# Import local libraries.
from source import leogui
# Initialise the GUI.
root = tkinter.Tk()
root_gui = leogui.RunGUI( root )
root.mainloop()
# To run LEOGPS manually without GUI, comment out lines 27-29. Then, edit
# your config.txt file manually. Finally, uncomment lines 34-35 and run.
# from source import leorun
# leorun.run()