notebook.community
Edit and run
back to Index
2014-07-19
thoughts on multitasking
def ticker(): while True: tick() sleep(.01) def controller(): while True: control() sleep(.001) sched.add(ticker) sched.add(controller) sched.startAll()