fridge_state.dot 421 B

1234567891011
  1. digraph {
  2. pad=0.5; bgcolor="lightgrey"; nodesep=1;
  3. node [shape="box"; style="filled"; fillcolor="cyan"; ];
  4. edge [labelfontsize=10; minlen=2; labeldistance=3 ];
  5. DOOR_CLOSED -> DOOR_OPEN [taillabel="EVT_OPEN"];
  6. DOOR_OPEN -> BEEPING [taillabel="EVT_TICK \n&& counter==0"];
  7. BEEPING -> DOOR_CLOSED [taillabel="EVT_CLOSE"];
  8. DOOR_OPEN -> DOOR_CLOSED [taillabel="EVT_CLOSE"];
  9. {rank=same; DOOR_OPEN BEEPING}
  10. }