75c1d69850
Improved light command structure.
9 lines
190 B
Python
9 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)
|
|
|