some exemple for plantuml

This commit is contained in:
Rémi Heredero 2023-10-19 11:44:15 +02:00
parent 2ee12ca042
commit 92c2faa858

View File

@ -7,29 +7,14 @@
- Demonstrate the right functioning of the XF by comparing and documenting the output created by the tests running on the *Embedded System*
# Time Algorithm
``` mermaid
flowchart TD
insert[it.subRelTick\ninsert]
A(Start)--> B[relTime = 0]
B --> C{relTime < desireTime}
C --> |Yes| D[it++]
D --> E{ End ? }
E --> |No| F[it.getRelTick]
F --> C
E --> |Yes| insert
```
```plantuml
@startuml component
actor client
node app
database db
db -> app
app -> client
@startuml
(*) --> "relTime = 0" as rt0
rt0 --> if goForward then
-left--> [false] "insert"
else
-right--> [true] "do Stuff"
@enduml
```