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