summaryrefslogtreecommitdiffstats
path: root/tradeshow
diff options
context:
space:
mode:
Diffstat (limited to 'tradeshow')
-rw-r--r--tradeshow/iot-sensortag/bluetoothdevice.cpp2
-rw-r--r--tradeshow/iot-sensortag/bluetoothdevice.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/tradeshow/iot-sensortag/bluetoothdevice.cpp b/tradeshow/iot-sensortag/bluetoothdevice.cpp
index c37a5ea..7be53d7 100644
--- a/tradeshow/iot-sensortag/bluetoothdevice.cpp
+++ b/tradeshow/iot-sensortag/bluetoothdevice.cpp
@@ -470,7 +470,7 @@ double BluetoothDevice::convertIrTemperatureAPIReadingToCelsius(quint16 rawReadi
return t * SCALE_LSB;
}
-void BluetoothDevice::isDeviceReady() const
+void BluetoothDevice::isDeviceReady()
{
if (m_temperatureMeasurementStarted &&
m_humidityMeasurementStarted &&
diff --git a/tradeshow/iot-sensortag/bluetoothdevice.h b/tradeshow/iot-sensortag/bluetoothdevice.h
index 94a12c3..0c9ac1d 100644
--- a/tradeshow/iot-sensortag/bluetoothdevice.h
+++ b/tradeshow/iot-sensortag/bluetoothdevice.h
@@ -169,7 +169,7 @@ private:
void lightIntensityReceived(const QByteArray &value);
void motionReceived(const QByteArray &value);
double convertIrTemperatureAPIReadingToCelsius(quint16 rawReading);
- void isDeviceReady() const;
+ void isDeviceReady();
QBluetoothDeviceDiscoveryAgent *discoveryAgent;
QString m_previousAddress;