remove uint parse/random

This commit is contained in:
Joel Wetzell
2026-03-03 21:43:43 -06:00
parent 9d2d54ccbb
commit ba14cf8f24
3 changed files with 0 additions and 44 deletions
-5
View File
@@ -101,11 +101,6 @@ export default defineConfig({
collapsed: true,
autogenerate: { directory: 'processors/time' }
},
{
label: "Uint",
collapsed: true,
autogenerate: { directory: 'processors/uint' }
}
]
},
{
-19
View File
@@ -1,19 +0,0 @@
---
title: Uint Parse
sidebar:
order: 1
---
The `uint.parse` processor takes a string and parses it as an unsigned integer with the specified `base` and `bitSize`. This processor will return an error if the message being processed is not a string or if the string cannot be parsed into an unsigned integer.
- **type**: `uint.parse`
- **params**:
- **base**: (optional) the base to use for parsing the unsigned integer, defaults to 10
- **bitSize**: (optional) the bit size of the unsigned integer to parse, defaults to 64
### Example
This would parse the string payload as a 32 bit, base 10 unsigned integer and set the payload to that value.
```
- type: uint.parse
params:
bitSize: 32
```
@@ -1,20 +0,0 @@
---
title: Uint Random
sidebar:
order: 2
---
The `uint.random` processor will set the payload to a random unsigned integer between the specified `min` and `max` value. The minimum and maximum values are inclusive.
- **type**: `uint.random`
- **params**:
- **min**: the minimum value for the random unsigned integer.
- **max**: the maximum value for the random unsigned integer.
### Example
This would generate a random unsigned integer between 0 and 127 and set the payload to that value.
```
- type: uint.random
params:
min: 0
max: 127
```