X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=app%2Fapi%2FBinding.qml;h=93da6f4621161cf9f4707a58002cf2a1ddc7731f;hb=c472e565e6b7918d0b9554cb1b2c6c86f3ffbef5;hp=834bdf817f2989879d864735869c5a72df489dae;hpb=2fec4fc2386bef72c209fbd7fc51d4f4cbfca92a;p=apps%2Fhvac.git diff --git a/app/api/Binding.qml b/app/api/Binding.qml index 834bdf8..93da6f4 100644 --- a/app/api/Binding.qml +++ b/app/api/Binding.qml @@ -25,6 +25,8 @@ WebSocket { property string statusString: "waiting..." property real fanSpeed: 0.0 + property real leftTemperature: 21.0 + property real rightTemperature: 21.0 property Connections c : Connections { target: root @@ -33,17 +35,28 @@ WebSocket { console.debug(JSON.stringify(json)) sendTextMessage(JSON.stringify(json)) } + onLeftTemperatureChanged: { + var json = [MessageId.call, '9999', 'hvac/set', {'LeftTemperature': leftTemperature}] + console.debug(JSON.stringify(json)) + sendTextMessage(JSON.stringify(json)) + } + onRightTemperatureChanged: { + var json = [MessageId.call, '9999', 'hvac/set', {'RightTemperature': rightTemperature}] + console.debug(JSON.stringify(json)) + sendTextMessage(JSON.stringify(json)) + } } onTextMessageReceived: { var json = JSON.parse(message) var request = json[2].request var response = json[2].response + console.log("HVAC Binding Message: ",message) switch (json[0]) { case MessageId.call: break case MessageId.retok: - root.statusString = request.info + root.statusString = request.status break case MessageId.reterr: root.statusString = "Bad return value, binding probably not installed"