An operating system for CircuitPython devices
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.
 

16 lines
387 B

import circuitos
import shlex
class App(circuitos.App):
def F_main(self):
with open('/etc/init/start') as f:
lines = f.readlines()
for line in lines:
if line.strip():
last_pid = self.os.launch(*shlex.split(line))
self.transfer_console(last_pid)
self.next_function = 'loop'
def F_loop(self):
pass