Skip to content

Commit

Permalink
removed tabs to fix rendering after heading change
Browse files Browse the repository at this point in the history
  • Loading branch information
niklastreml committed Nov 10, 2022
1 parent 4e28a99 commit c209908
Showing 1 changed file with 59 additions and 59 deletions.
118 changes: 59 additions & 59 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,82 +131,82 @@ Canary Mesh: Multiple Canary Bots connected to each other. Every Canary Bot mana

#### 1. First node in mesh

```mermaid
flowchart LR
subgraph graph [" "]
ob(owl-bot)
ob--joinMesh routine to target-->ob
end
```
```mermaid
flowchart LR
subgraph graph [" "]
ob(owl-bot)
ob--joinMesh routine to target-->ob
end
```

#### 2. Second node joins

```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
ob(owl-bot)
ob --joins mesh--> gb
gb --joins mesh--> ob
end
```
```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
ob(owl-bot)
ob --joins mesh--> gb
gb --joins mesh--> ob
end
```

One bot joins mesh of the other; depends on who is faster
One bot joins mesh of the other; depends on who is faster

#### 3. Mesh created

```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
ob(owl-bot)
ob <--> gb
end
```
```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
ob(owl-bot)
ob <--> gb
end
```

All routines start: mesh functionality, measurement functionalities
All routines start: mesh functionality, measurement functionalities

#### 4. Third node joins

```mermaid
flowchart TB
subgraph graph [" "]
gb(goose-bot)
eb(eagle-bot)
ob(owl-bot)
ob <--> gb
eb --joinMesh--> gb
gb --send I-Am info--> eb
end
```
```mermaid
flowchart TB
subgraph graph [" "]
gb(goose-bot)
eb(eagle-bot)
ob(owl-bot)
ob <--> gb
eb --joinMesh--> gb
gb --send I-Am info--> eb
end
```

#### 5. Sending discovery

```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
eb(eagle-bot)
ob(owl-bot)
gb --send discovery--> ob
gb <--> ob
gb <--> eb
end
```
```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
eb(eagle-bot)
ob(owl-bot)
gb --send discovery--> ob
gb <--> ob
gb <--> eb
end
```

#### 6. Mesh expanded

```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
eb(eagle-bot)
ob(owl-bot)
gb <-->eb
eb <-->ob
ob <-->gb
end
```
```mermaid
flowchart LR
subgraph graph [" "]
gb(goose-bot)
eb(eagle-bot)
ob(owl-bot)
gb <-->eb
eb <-->ob
ob <-->gb
end
```

### CLI options

Expand Down

0 comments on commit c209908

Please sign in to comment.