Hello,
I have a Kioto FWS (device 0x1150) that I've connected to an ESP32 (ESPhome) via optocouplers.
So far, I've been able to read all the data.

However, I have questions about the following data. All PID values seem somewhat meaningless and appear to be identical to me. How should I interpret them?
The same applies to the Curve value.
Perhaps someone can help me out.
I think these are always the measurement points at the corresponding PID controller.
I've set this up in ESPHome (see below), and this is what it looks like in my visualization

float fwsConvert(float input, float maxValueIn) {
const float maxValue = maxValueIn;
const float minValue = maxValueIn * -1;
float value = input;
float valueNew = 0;
if (value > maxValue) {
valueNew = value - maxValue;
} else if (value < minValue) {
valueNew = value - minValue;
}
if (valueNew != 0) {
return valueNew;
}
return 0;
}