fenrir/src/fenrir-package/core/commands.py

20 lines
269 B
Python
Raw Normal View History

2016-07-08 19:36:27 -04:00
#!/bin/python
2016-07-10 17:02:17 -04:00
import time
2016-07-08 19:36:27 -04:00
commandInfo = {
'currCommand': '',
2016-07-10 17:02:17 -04:00
'commandCueue':[],
'lastCommandTime': time.time()
2016-07-08 19:36:27 -04:00
}
commands = {
2016-07-10 09:43:15 -04:00
'onnInput':{
},
'onScreenChanged':{
},
'commands':{
# 'curr_line': curr_line.command(),
# 'shut_up': shut_up.command()
}
2016-07-08 19:36:27 -04:00
}