-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.py
More file actions
23 lines (20 loc) · 658 Bytes
/
main.py
File metadata and controls
23 lines (20 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# CircuitPython CLUE main.py
# Last upated: Aug. 11, 2020, v1.0
# Author(s): James Tobin
######################################################
# Version Notes
######################################################
'''
v1.0
- Run a specific file by importing it.
- You can add more imports and run a list of programs.
Just remember each file needs to end to run the next one.
'''
######################################################
# Import
######################################################
#Uncomment the version you are using and comment out the rest.
import menu
#import menu_lite
#import menu_cutebot
print("END - main.py")