Skip to content

Instantly share code, notes, and snippets.

@tboydar
Created April 11, 2021 12:17
Show Gist options
  • Save tboydar/ff66fefcca4dfeff1a88e0dbf540af09 to your computer and use it in GitHub Desktop.
Save tboydar/ff66fefcca4dfeff1a88e0dbf540af09 to your computer and use it in GitHub Desktop.
' https://plantuml.com/zh/
@startuml
header 20210411
title 心如止水
skinparam sequenceArrowThickness 2
skinparam roundcorner 20
skinparam maxmessagesize 60
skinparam sequenceParticipant underline
actor User
participant "心跳感測" as A
participant "arduino" as B
participant "馬達" as C
User -> A: 觸碰
activate A
A -> B: 心跳數
activate B
alt 心跳數高於平均心跳數
B-> C: 啟動
else 心跳數等於小於平均心跳數
B-> C: 停止
end
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment