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 /mussel1/mussel1.puml | |
parent | 51f5f7112d73e505b9a3ecf37c88884f68182373 (diff) |
refine diagram
Diffstat (limited to 'mussel1/mussel1.puml')
-rw-r--r-- | mussel1/mussel1.puml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mussel1/mussel1.puml b/mussel1/mussel1.puml index 76dc29c..12dbb43 100644 --- a/mussel1/mussel1.puml +++ b/mussel1/mussel1.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 < 50 ?) equals (yes) then :print "good"; else (no) :print "bad"; endif +:wait 1s; } -endwhile -:(this point never reached); +endwhile (unused path) stop @enduml |