Last active
January 22, 2023 02:25
-
-
Save andysolomon/73150fe16b17f939aa6862131459914d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: Walking Dog | |
| --- | |
| ```mermaid | |
| stateDiagram | |
| [*] --> waiting : LEAVE_HOME | |
| waiting --> walk : START_WALKING | |
| state walk { | |
| [*] --> walking | |
| walking --> stopForSmells : STOP | |
| walking --> running : SPEED_UP | |
| stopForSmells --> walking : SPEED_UP | |
| stopForSmells --> running : SPEED_UP | |
| running --> walking : SLOW_DOWN | |
| running --> stopForSmells : STOP | |
| } | |
| walk --> walkComplete : GO_HOME | |
| walkComplete [*] | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment