This commit is contained in:
François Beaufort 2016-05-24 15:47:00 +02:00
Родитель 98465ca8c7
Коммит b25e248cc6
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,6 @@ function onDisconnectButtonClick() {
log('Disconnecting from Bluetooth Device...');
if (bluetoothDevice.gatt.connected) {
bluetoothDevice.gatt.disconnect();
log('> Bluetooth Device connected: ' + bluetoothDevice.gatt.connected);
} else {
log('> Bluetooth Device is already disconnected');
}
@ -69,6 +68,6 @@ function connect() {
log('Connecting to Bluetooth Device...');
return bluetoothDevice.gatt.connect()
.then(gattServer => {
log('> Bluetooth Device connected: ' + bluetoothDevice.gatt.connected);
log('> Bluetooth Device connected');
});
}