The function retrieves a float value from a hex string located in the RXD buffer.
This function operates using the RXD buffer.
Function Menu | Block Diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
index |
int32 |
Position in the RXD buffer from which the search begins. The first element of the buffer has an index of 0. |
Name | Type | Description |
---|---|---|
value |
float |
Read value. If no value is read, value = 0. |
Name | Description |
---|---|
Byte Order | The byte order used when copying data from the RXD buffer and converting it to obtain the value output. For example, if the RXD buffer contains [43,21,45,40,01,0D...] and Size = 4:Little Endian: value = Big Endian:0x40452143 = 3.08 value = Big Endian (2 bytes):0x43214540 = 161.27 value = 0x45404321 = 3076.19 |