Numeric Converter |
(N-CONV) |

The converter allows you to link different datapoint types and convert them.
Inputs
I |
Input |
F |
Factor |
O |
Offset |
Outputs
Functionality
The following data types can be converted:
Data type |
KNX Data Type |
1 byte unsigned |
5.xxx |
1 byte signed |
6.xxx |
2 byte unsigned |
7.xxx |
2 byte signed |
8.xxx |
2 byte float |
9.xxx |
4 byte unsigned |
12.xxx |
4 byte signed |
13.xxx |
4 byte float |
14.xxx |
Calculation
- The output is calculated as input * Factor + Offset.
- If the output result is greater than the data type concerned:
The maximum for the data type is applied to the output.
- If the output result is less than the data type concerned:
The minimum for the data type is applied to the output.
Use cases
- Conversion between different units of measurement, e.g. °C and °F or m/s and km/h
- Conversion between different data types and widths
- Conversion between a 2-byte float and a 4-byte float (e.g. temperature values)