Fix math for temp 95/7695/1
authorTasuku Suzuki <tasuku.suzuki@qt.io>
Tue, 20 Dec 2016 07:59:07 +0000 (16:59 +0900)
committerTasuku Suzuki <tasuku.suzuki@qt.io>
Tue, 20 Dec 2016 07:59:07 +0000 (16:59 +0900)
QML sets temp to 15~30 and this binding convert it to 0x10~0xF0

Change-Id: I027853e2279ff8b9a5e4a169bf7a7f549cf73a1e
Signed-off-by: Tasuku Suzuki <tasuku.suzuki@qt.io>
binding/hvac-demo-binding.c

index 4913380..3eb1876 100644 (file)
@@ -148,7 +148,7 @@ static int open_can_dev()
 // Get original get temperature function from cpp hvacplugin code
 static uint8_t to_can_temp(uint8_t value)
 {
-       int result = ((0xF0 - 0x10) / 15) * value - 16;
+       int result = ((0xF0 - 0x10) / 15) * (value - 15) + 0x10;
        if (result < 0x10)
                result = 0x10;
        if (result > 0xF0)