10 lines
190 B
Python
10 lines
190 B
Python
|
import sys
|
||
|
import logging
|
||
|
|
||
|
logging.basicConfig(level=logging.DEBUG, stream=sys.stdout)
|
||
|
|
||
|
from pizzactrl.statemachine import Statemachine
|
||
|
|
||
|
sm = Statemachine(move=True, loop=False, test=True)
|
||
|
|