mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-08 07:03:39 +00:00
508 B
508 B
title, sidebar
| title | sidebar | ||
|---|---|---|---|
| Int Random |
|
The int.random processor will set the payload to a random integer between the specified min and max value.
- type:
int.random - params:
- min: the minimum value for the random integer (inclusive).
- max: the maximum value for the random integer (inclusive).
Example
This would generate a random integer between -127 and 127 and set the payload to that value.
- type: int.random
params:
min: -127
max: 127