led_state_simple.dot 337 B

12345678910
  1. digraph {
  2. pad=0.5; bgcolor="lightgrey";
  3. node [shape="box"; style="filled"; fillcolor="cyan"];
  4. edge [labelfontsize=10; minlen=2; labeldistance=4 ];
  5. LED_OFF -> LED_ON [taillabel="EVT_TICK \n&& counter==0";
  6. tailport=sw; headport=nw];
  7. LED_ON -> LED_OFF [taillabel="EVT_TICK \n&& counter==0";
  8. tailport=ne; headport=se];
  9. }