| 1 | /**************************************************************************** |
|---|---|
| 2 | ** |
| 3 | ** Copyright (C) 2016 The Qt Company Ltd. |
| 4 | ** Contact: https://www.qt.io/licensing/ |
| 5 | ** |
| 6 | ** This file is part of the QtSensors module of the Qt Toolkit. |
| 7 | ** |
| 8 | ** $QT_BEGIN_LICENSE:LGPL$ |
| 9 | ** Commercial License Usage |
| 10 | ** Licensees holding valid commercial Qt licenses may use this file in |
| 11 | ** accordance with the commercial license agreement provided with the |
| 12 | ** Software or, alternatively, in accordance with the terms contained in |
| 13 | ** a written agreement between you and The Qt Company. For licensing terms |
| 14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
| 15 | ** information use the contact form at https://www.qt.io/contact-us. |
| 16 | ** |
| 17 | ** GNU Lesser General Public License Usage |
| 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
| 19 | ** General Public License version 3 as published by the Free Software |
| 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
| 21 | ** packaging of this file. Please review the following information to |
| 22 | ** ensure the GNU Lesser General Public License version 3 requirements |
| 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
| 24 | ** |
| 25 | ** GNU General Public License Usage |
| 26 | ** Alternatively, this file may be used under the terms of the GNU |
| 27 | ** General Public License version 2.0 or (at your option) the GNU General |
| 28 | ** Public license version 3 or any later version approved by the KDE Free |
| 29 | ** Qt Foundation. The licenses are as published by the Free Software |
| 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
| 31 | ** included in the packaging of this file. Please review the following |
| 32 | ** information to ensure the GNU General Public License requirements will |
| 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
| 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
| 35 | ** |
| 36 | ** $QT_END_LICENSE$ |
| 37 | ** |
| 38 | ****************************************************************************/ |
| 39 | |
| 40 | #include "genericrotationsensor.h" |
| 41 | #include <QDebug> |
| 42 | #include <qmath.h> |
| 43 | |
| 44 | char const * const genericrotationsensor::id("generic.rotation"); |
| 45 | |
| 46 | genericrotationsensor::genericrotationsensor(QSensor *sensor) |
| 47 | : QSensorBackend(sensor) |
| 48 | { |
| 49 | accelerometer = new QAccelerometer(this); |
| 50 | accelerometer->addFilter(filter: this); |
| 51 | accelerometer->connectToBackend(); |
| 52 | |
| 53 | setReading<QRotationReading>(&m_reading); |
| 54 | setDataRates(accelerometer); |
| 55 | |
| 56 | QRotationSensor * const rotationSensor = qobject_cast<QRotationSensor *>(object: sensor); |
| 57 | if (rotationSensor) |
| 58 | rotationSensor->setHasZ(false); |
| 59 | } |
| 60 | |
| 61 | void genericrotationsensor::start() |
| 62 | { |
| 63 | accelerometer->setDataRate(sensor()->dataRate()); |
| 64 | accelerometer->setAlwaysOn(sensor()->isAlwaysOn()); |
| 65 | accelerometer->start(); |
| 66 | if (!accelerometer->isActive()) |
| 67 | sensorStopped(); |
| 68 | if (accelerometer->isBusy()) |
| 69 | sensorBusy(); |
| 70 | } |
| 71 | |
| 72 | void genericrotationsensor::stop() |
| 73 | { |
| 74 | accelerometer->stop(); |
| 75 | } |
| 76 | |
| 77 | bool genericrotationsensor::filter(QSensorReading *reading) |
| 78 | { |
| 79 | QAccelerometerReading *ar = qobject_cast<QAccelerometerReading*>(object: reading); |
| 80 | qreal pitch = 0; |
| 81 | qreal roll = 0; |
| 82 | |
| 83 | qreal x = ar->x(); |
| 84 | qreal y = ar->y(); |
| 85 | qreal z = ar->z(); |
| 86 | |
| 87 | // Note that the formula used come from this document: |
| 88 | // http://www.freescale.com/files/sensors/doc/app_note/AN3461.pdf |
| 89 | pitch = qRadiansToDegrees(radians: qAtan(v: y / qSqrt(v: x * x + z * z))); |
| 90 | roll = qRadiansToDegrees(radians: qAtan(v: x / qSqrt(v: y * y + z * z))); |
| 91 | // Roll is a left-handed rotation but we need right-handed rotation |
| 92 | roll = -roll; |
| 93 | |
| 94 | // We need to fix up roll to the (-180,180] range required. |
| 95 | // Check for negative theta values and apply an offset as required. |
| 96 | // Note that theta is defined as the angle of the Z axis relative |
| 97 | // to gravity (see referenced document). It's negative when the |
| 98 | // face of the device points downward. |
| 99 | qreal theta = qRadiansToDegrees(radians: qAtan(v: qSqrt(v: x * x + y * y) / z)); |
| 100 | if (theta < 0) { |
| 101 | if (roll > 0) |
| 102 | roll = 180 - roll; |
| 103 | else |
| 104 | roll = -180 - roll; |
| 105 | } |
| 106 | |
| 107 | m_reading.setTimestamp(ar->timestamp()); |
| 108 | m_reading.setFromEuler(x: pitch, y: roll, z: 0); |
| 109 | newReadingAvailable(); |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 |
