Changing LED colour gradient according to temperature sliders
[apps/hvac.git] / app / api / Binding.qml
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 import QtQuick 2.6
18 import QtWebSockets 1.0
19 import 'MessageId.js' as MessageId
20
21 WebSocket {
22     id: root
23     active: true
24
25     property string statusString: "waiting..."
26
27     property real fanSpeed: 0.0
28     property real leftTemperature: 21.0
29     property real rightTemperature: 21.0
30     property string language: "en_US"
31
32
33     property Connections c : Connections {
34         target: root
35         onFanSpeedChanged: {
36             var json = [MessageId.call, '9999', 'hvac/set', {'FanSpeed': fanSpeed}]
37             console.debug(JSON.stringify(json))
38             sendTextMessage(JSON.stringify(json))
39         }
40         onLeftTemperatureChanged: {
41             var json = [MessageId.call, '9999', 'hvac/set', {'LeftTemperature': leftTemperature}]
42             console.debug(JSON.stringify(json))
43             sendTextMessage(JSON.stringify(json))
44
45             var json1 = [MessageId.call, '9999', 'hvac/temp_left_zone_led', {'LeftLed': leftTemperature}]
46             console.debug(JSON.stringify(json1))
47             sendTextMessage(JSON.stringify(json1))
48                
49         }
50         onRightTemperatureChanged: {
51             var json = [MessageId.call, '9999', 'hvac/set', {'RightTemperature': rightTemperature}]
52             console.debug(JSON.stringify(json))
53             sendTextMessage(JSON.stringify(json))
54
55             var json1 = [MessageId.call, '9999', 'hvac/temp_right_zone_led', {'RightLed': rightTemperature}]
56             console.debug(JSON.stringify(json1))
57             sendTextMessage(JSON.stringify(json1))
58         }
59         onLanguageChanged: {
60             var json = [MessageId.call, '9999', 'hvac/set', {'Language': language}]
61             console.debug(JSON.stringify(json))
62             sendTextMessage(JSON.stringify(json))
63         }
64     }
65
66     onTextMessageReceived: {
67         var json = JSON.parse(message)
68         var request = json[2].request
69         var response = json[2].response
70         console.log("HVAC Binding Message: ",message)
71         switch (json[0]) {
72         case MessageId.call:
73             break
74         case MessageId.retok:
75             root.statusString = request.status
76             break
77         case MessageId.reterr:
78             root.statusString = "Bad return value, binding probably not installed"
79             break
80         case MessageId.event:
81             if (json[1] == "hvac/language")
82                 console.log("HVAC event received: ",json[2])
83                 root.language = json[2].data
84                 root.statusString = "Language changed to "+language
85             break
86         }
87     }
88     onStatusChanged: {
89         switch (status) {
90         case WebSocket.Error:
91             root.statusString = "WebSocket error: " + root.errorString
92             break
93         }
94     }
95 }