1
0

Added first example file

This commit is contained in:
BlueFox 2024-03-09 18:56:28 +00:00
parent 5e862c6336
commit b9996c02cd

16
examples/main.py Normal file
View File

@ -0,0 +1,16 @@
from ProgramChooser import ProgramChooser
def micronec():
from micronEC import micronec
micronec.run()
def lcd_big_hello():
from excercise import lcd_big_hello
lcd_big_hello.run()
programs = {
"micronEC": micronec,
"lcd_big_hello": lcd_big_hello
}
pc = ProgramChooser(programs, 7, 8, debug=True)
pc.run()