Nibble Extract
Jul 19 2024 at 12:00 AM
Overview
This function extracts the value of a specific nibble from the input value.
Installation
The required NuGet Package for this function is: IoTnxt.Raptor.TransformManager
.AddRaptorTransformManager("TransformSets", (services, configuration, builder) =>
{
builder.AddDefaultTransformationFunctions(services);
})
Example Options File
{
"TransformSets": {
"Nibble1": [
{
"FunctionType": "NibbleExtract",
"NibbleNumber": 1
}
],
}
}
Property Details
| Property Name | Description |
|---|---|
| FunctionType | The value for this function is “NibbleExtract”. |
| Enabled | Sets whether this Transform Function is enabled. Defaults to true. |
| NibbleNumber | A number from 1-16, indicating which nibble should be extracted from the value. |
