rtb_state_2.dot 439 B

1234567891011
  1. /* restart LED on each key press */
  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=2 ];
  6. RTB_IDLE -> RTB_ON [taillabel="EVT_BUTTON "];
  7. RTB_ON -> RTB_IDLE [taillabel=" EVT_TICK \n && counter==0"];
  8. RTB_ON -> RTB_ON [taillabel=" EVT_BUTTON"];
  9. }