Skip to content

Instantly share code, notes, and snippets.

@andysolomon
Last active January 22, 2023 02:25
Show Gist options
  • Select an option

  • Save andysolomon/73150fe16b17f939aa6862131459914d to your computer and use it in GitHub Desktop.

Select an option

Save andysolomon/73150fe16b17f939aa6862131459914d to your computer and use it in GitHub Desktop.
---
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