summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/bluetoothdataprovider.cpp
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@qt.io>2017-03-02 09:10:49 +0200
committerMaurice Kalinowski <maurice.kalinowski@qt.io>2017-03-02 07:46:50 +0000
commit8f7bb40c889ac1f74cc0e11660011cf1ee2d7b15 (patch)
tree9d5ef2e6fd3145ef18a0e60e24cd879d786a34e5 /tradeshow/iot-sensortag/bluetoothdataprovider.cpp
parent6c4c77ae60284c2ca76fcd6a3af6adc66e1f17ad (diff)
iot-sensortag: Reduce waiting time for service scan
Unnecessary 1s delay to start service scan removed. If all service details have been discovered there's no need to start the 5s service details timer. Change-Id: I6c8c89455fb3cfdbc1a28198234e95a4ed0b7e8b Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'tradeshow/iot-sensortag/bluetoothdataprovider.cpp')
-rw-r--r--tradeshow/iot-sensortag/bluetoothdataprovider.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/tradeshow/iot-sensortag/bluetoothdataprovider.cpp b/tradeshow/iot-sensortag/bluetoothdataprovider.cpp
index 0987d0d..06e9fd5 100644
--- a/tradeshow/iot-sensortag/bluetoothdataprovider.cpp
+++ b/tradeshow/iot-sensortag/bluetoothdataprovider.cpp
@@ -93,10 +93,7 @@ bool BluetoothDataProvider::startDataFetching()
this, &BluetoothDataProvider::lightIntensityReceived);
connect(m_btDevice, &BluetoothDevice::motionChanged,
this, &BluetoothDataProvider::motionReceived);
- timer.setInterval(1000);
- timer.setSingleShot(true);
- connect(&timer, &QTimer::timeout, this, &BluetoothDataProvider::startServiceScan);
- timer.start();
+ startServiceScan();
}
return true;
}