diff options
author | Jonas Smedegaard <dr@jones.dk> | 2025-03-04 18:44:24 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2025-03-04 18:44:24 +0100 |
commit | b067b06a442f0247640a53804ac90327cc271864 (patch) | |
tree | c12b9e6ec5747b9f5f3406af5aaaed7a3d7fef3b /mussel2 | |
parent | 51f5f7112d73e505b9a3ecf37c88884f68182373 (diff) |
refine diagram
Diffstat (limited to 'mussel2')
-rw-r--r-- | mussel2/mussel2.puml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mussel2/mussel2.puml b/mussel2/mussel2.puml index 49b1457..1e659a5 100644 --- a/mussel2/mussel2.puml +++ b/mussel2/mussel2.puml @@ -4,15 +4,16 @@ partition init { :setup serial connection; :print "ready"; } -while (endlessly every few millisecond) +while (repeat every few millisecond) partition loop { +;resolve currentSecond; if (currentSecond mod 12 < 9 ?) equals (yes) then :print "good"; else (no) :print "bad"; endif +:wait 1s; } -endwhile -:(this point never reached); +endwhile (unused path) stop @enduml |