summaryrefslogtreecommitdiff
path: root/digital/io/doc/stdContenerFsm.dot
blob: 2ec2309fb7ce0bcdac1cd1c9642e5ac159563ca4 (plain)
1
2
3
4
5
6
7
8
9
10
/* IO.avr module. Chute Final State Machine */
digraph StdContenerFsm 
{
	node [color=lightblue2, style=filled];
	"Go to std contener" -> "Go to the wall backward" [label = "Near the std contener."];
	"Go to the wall backward" -> "Open std contener" [label = "On the wall"];
	"Open std contener" -> "Wait fixed time" [label = "std contener opened"];
	"Wait fixed time" -> "Close std contener" [label = "Time out"];
	"Close std contener" -> End [label = "std contener closed"];
}