python - Multiple concurrent fsm Fysom -
i writing code in python operations , these operations has concurrent reason why draw fsm 2 concurrent fsms. while using fysom in python thought of having definition of 2 fsms. @ point thinking how transition happen; confused little bit here , that's why asking support. if 1 can please , grateful .. way defined fsms please tell me if makes no sense in fysom or no fsm1 = fysom({ 'initial':'idle', 'events':[ {'name':'sc','src':'idle','dst':'percent30'}, {'name':'sc','src':'percent30','dst':'percent60'}, {'name':'sc','src':'percent60','dst':'percent90'}, {'name':'sc','src':'percent90','dst':'idle'} ], 'callbacks':{ 'onidle':onidle, 'onread':onpercent30, 'onturnon':onpercent60, 'ondisplay':onp...