blob: 49b14571dc38d17e6fbc12ed104b4001cfbd08bd (
plain)
- @startuml
- start
- partition init {
- :setup serial connection;
- :print "ready";
- }
- while (endlessly every few millisecond)
- partition loop {
- if (currentSecond mod 12 < 9 ?) equals (yes) then
- :print "good";
- else (no)
- :print "bad";
- endif
- }
- endwhile
- :(this point never reached);
- stop
- @enduml
|