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