rtb_state_4.dot 529 B

1234567891011121314
  1. /* start a looped timer*/
  2. digraph {
  3. pad=0.5; bgcolor="lightgrey"; nodesep=1;
  4. node [shape="box"; style="filled"; fillcolor="cyan"];
  5. edge [labelfontsize=10; minlen=2; labeldistance=3 ];
  6. RTB_IDLE -> RTB_ON [taillabel="EVT_BUTTON"];
  7. RTB_ON -> RTB_OFF [taillabel="EVT_TICK \n&& counter==0"];
  8. RTB_ON -> RTB_IDLE [taillabel="EVT_BUTTON"];
  9. RTB_OFF -> RTB_ON [taillabel="EVT_TICK \n&&counter==0 ";]
  10. RTB_OFF -> RTB_IDLE [taillabel="EVT_BUTTON"; labeldistance=5];
  11. {rank=same; RTB_ON RTB_OFF}
  12. }