aboutsummaryrefslogtreecommitdiff
path: root/mussel2/mussel2.puml
blob: 49b14571dc38d17e6fbc12ed104b4001cfbd08bd (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 mod 12 < 9 ?) 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