1
0
This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
ProgramChooser/examples/main.py
2024-03-09 18:56:28 +00:00

17 lines
336 B
Python

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()