mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-04-03 08:42:40 +00:00
17 lines
366 B
Python
17 lines
366 B
Python
from fsm_base import FSMBase
|
|
|
|
|
|
class Buttons(FSMBase):
|
|
states = ['A', 'B', 'C']
|
|
transitions = [
|
|
{'trigger': 'anchor_a', 'source': 'A', 'dest': 'B'},
|
|
{'trigger': 'anchor_b', 'source': 'B', 'dest': 'C'},
|
|
{'trigger': 'anchor_c', 'source': 'C', 'dest': 'A'},
|
|
]
|
|
|
|
def __init__(self):
|
|
super().__init__('A')
|
|
|
|
|
|
fsm = Buttons()
|