From 7b864d8e52606ce71436e697f2f592472ddc5465 Mon Sep 17 00:00:00 2001 From: Yordan Dimitrov Date: Mon, 4 Jun 2018 17:29:50 +0300 Subject: Changing LED colour gradient according to temperature sliders v1 - the colour of the LED reflects the temperature of both sliders at the same time - colour gradient starts from blue and ends with red: for low and high temperatures, respectively. v2 - removed all A/C code - paths are read from a predefined variables Change-Id: I989d6779c0a72b9def74bc9bcf41ae01d368ba8a Signed-off-by: Yordan Dimitrov --- app/api/Binding.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'app/api/Binding.qml') diff --git a/app/api/Binding.qml b/app/api/Binding.qml index 25388df..7d996ee 100644 --- a/app/api/Binding.qml +++ b/app/api/Binding.qml @@ -29,6 +29,7 @@ WebSocket { property real rightTemperature: 21.0 property string language: "en_US" + property Connections c : Connections { target: root onFanSpeedChanged: { @@ -40,11 +41,20 @@ WebSocket { var json = [MessageId.call, '9999', 'hvac/set', {'LeftTemperature': leftTemperature}] console.debug(JSON.stringify(json)) sendTextMessage(JSON.stringify(json)) + + var json1 = [MessageId.call, '9999', 'hvac/temp_left_zone_led', {'LeftLed': leftTemperature}] + console.debug(JSON.stringify(json1)) + sendTextMessage(JSON.stringify(json1)) + } onRightTemperatureChanged: { var json = [MessageId.call, '9999', 'hvac/set', {'RightTemperature': rightTemperature}] console.debug(JSON.stringify(json)) sendTextMessage(JSON.stringify(json)) + + var json1 = [MessageId.call, '9999', 'hvac/temp_right_zone_led', {'RightLed': rightTemperature}] + console.debug(JSON.stringify(json1)) + sendTextMessage(JSON.stringify(json1)) } onLanguageChanged: { var json = [MessageId.call, '9999', 'hvac/set', {'Language': language}] -- cgit 1.2.3-korg