Module to send commands to an Arduino based on a time table.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
''' Controlling an Arduino with commands in a time table ''' |
|
|
|
from .gui import run_application |
|
from .timetable import ( |
|
parse_time_table, |
|
parse_excel_file, |
|
find_arduino_port, |
|
send_command, |
|
run, |
|
TimedCommands |
|
) |
|
|
|
__version__ = '0.0.1'
|
|
|