Skip to content

Commit

Permalink
append repeat param to registers
Browse files Browse the repository at this point in the history
  • Loading branch information
XdoctorwhoZ committed Jun 28, 2024
1 parent 92383c3 commit f6872b8
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ To write a register
{
"cmd": "w",
"index": 0,
"values": [42]
"values": [42],
"repeat": 500
}
```

Expand All @@ -39,7 +40,8 @@ To write a multiple continous registers
{
"cmd": "w",
"index": 0,
"values": [42, 1, 2, 3]
"values": [42, 1, 2, 3],
"repeat": 500
}
```

Expand All @@ -58,9 +60,12 @@ To read 3 register from index 0
"cmd": "r",
"index": 0,
"size": 3,
"repeat": 500
}
```

- repeat allow to repeat the command every X milliseconds

## Attributes

| Name | Type |
Expand Down

0 comments on commit f6872b8

Please sign in to comment.