diff options
author | Scott Murray <scott.murray@konsulko.com> | 2018-11-22 15:03:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-11-22 15:03:32 +0000 |
commit | 42fe4411428f81427ce8993886e28504012219d2 (patch) | |
tree | a27221b6509efd22301a5cec85db792947920639 | |
parent | 39f79014e874492dc47d76b64badb715b198db79 (diff) | |
parent | 0d1f9cfc3afc44f28c5e2d1f3ea06b02feb5f819 (diff) |
Merge "homescreen: bluetooth: switch bluetooth power status"guppy_6.99.2guppy_6.99.1guppy/6.99.2guppy/6.99.16.99.26.99.1
-rw-r--r-- | homescreen/qml/StatusArea.qml | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/homescreen/qml/StatusArea.qml b/homescreen/qml/StatusArea.qml index 3f2b280..d2e0930 100644 --- a/homescreen/qml/StatusArea.qml +++ b/homescreen/qml/StatusArea.qml @@ -129,30 +129,8 @@ Item { Connections { target: bluetooth - //{"event":"Bluetooth-Manager\/connection","data":{"Status":"connected","Address":"88:BD:45:EC:3A:E6"},"jtype":"afb-event"} - //{"event":"Bluetooth-Manager\/connection","data":{"Status":"disconnected","Address":"88:BD:45:EC:3A:E6"},"jtype":"afb-event"} - onConnectionEvent: { - // console.log("bluetooth connection is:", data.Status) - // console.log("onConnectionEvent bt_icon.deviceName:",bt_icon.deviceName, "bt_icon.connStatus:", bt_icon.connStatus) - if (data.Status == "connected"){ - bt_icon.connStatus = true - } else if (data.Status == "disconnected"){ - bt_icon.connStatus = false - } - } - //{"event":"Bluetooth-Manager\/device_updated","data":{"Address":"88:BD:45:EC:3A:E6","Name":"SG02","Paired":"True","Connected":"True","AVPConnected":"True","Metadata":{"Title":"","Artist":"","Status":"stop} - onDeviceUpdatedEvent: { - // console.log("bluetooth onDeviceUpdatedEvent date is:", data.Name, "Paired: ", data.Paired, "Connected: ", data.Connected) - // console.log("onDeviceUpdatedEvent bt_icon.deviceName:",bt_icon.deviceName, "bt_icon.connStatus:", bt_icon.connStatus) - if ( data.Paired == "True" && data.Connected == "True" ){ - bt_icon.deviceName = data.Name - bt_icon.connStatus = true - } else { - if(bt_icon.deviceName == data.Name) - { - bt_icon.connStatus = false - } - } + onPowerChanged: { + bt_icon.connStatus = state } } } |