aboutsummaryrefslogtreecommitdiff
path: root/mussel1/mussel1.puml
blob: 76dc29c29f1c3689eecb7d99fe91f30a308b0005 (plain)
  1. @startuml
  2. start
  3. partition init {
  4. :setup serial connection;
  5. :print "ready";
  6. }
  7. while (endlessly every few millisecond)
  8. partition loop {
  9. if (currentSecond < 50 ?) equals (yes) then
  10. :print "good";
  11. else (no)
  12. :print "bad";
  13. endif
  14. }
  15. endwhile
  16. :(this point never reached);
  17. stop
  18. @enduml