/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtSensors module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #include "sensorfwcompass.h" char const * const SensorfwCompass::id("sensorfw.compass"); SensorfwCompass::SensorfwCompass(QSensor *sensor) : SensorfwSensorBase(sensor) , m_initDone(false) { init(); setReading(&m_reading); sensor->setDataRate(50);//set a default rate } void SensorfwCompass::slotDataAvailable(const Compass& data) { // The scale for level is [0,3], where 3 is the best // Qt: Measured as a value from 0 to 1 with higher values being better. m_reading.setCalibrationLevel(((float) data.level()) / 3.0); // The scale for degrees from sensord is [0,359] // Value can be directly used as azimuth m_reading.setAzimuth(data.degrees()); m_reading.setTimestamp(data.data().timestamp_); newReadingAvailable(); } bool SensorfwCompass::doConnect() { Q_ASSERT(m_sensorInterface); return QObject::connect(m_sensorInterface, SIGNAL(dataAvailable(Compass)), this, SLOT(slotDataAvailable(Compass))); } QString SensorfwCompass::sensorName() const { return "compasssensor"; } void SensorfwCompass::init() { m_initDone = false; initSensor(m_initDone); } void SensorfwCompass::start() { if (reinitIsNeeded) init(); SensorfwSensorBase::start(); }