From 2180c68999eb8dc0c7bcec015b2703f5b8b20223 Mon Sep 17 00:00:00 2001 From: zhang Date: Wed, 4 May 2022 08:47:54 +0800 Subject: ndarray axis --- fsm/traffic-light.dot | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 fsm/traffic-light.dot (limited to 'fsm/traffic-light.dot') diff --git a/fsm/traffic-light.dot b/fsm/traffic-light.dot new file mode 100644 index 0000000..cd602f5 --- /dev/null +++ b/fsm/traffic-light.dot @@ -0,0 +1,9 @@ +// traffic-light +digraph { + RED -> RED [label=timer_le_20] + RED -> GREEN [label=timer_eq_20] + GREEN -> GREEN [label=timer_le_15] + GREEN -> YELLOW [label=timer_eq_15] + YELLOW -> YELLOW [label=timer_le_5] + YELLOW -> RED [label=timer_eq_5] +} -- cgit v1.2.3