Code Examples Sensors API

From Qt Wiki
Revision as of 10:29, 24 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search

English Spanish

[toc align_right="yes" depth="2"]

Overview

This page points to and provides quick overviews of existing code examples using the "Sensors API":http://doc.qt.nokia.com/qtmobility-1.1.0/sensors-api.html, one of the suite of Qt Mobilty APIs.

Fall detector

The "Fall Detector example":http://wiki.forum.nokia.com/index.php/Qt_Mobility_example_application:_Fall_Detector from Forum Nokia uses the accelerometer in a mobile device to detect if the user has fallen, then uses the

Fall Dector Screen Shot
Here's the code snippet for the fall detector using the Sensors API:

#include <QAccelerometer>

// Neccessary for Qt Mobility API usage<br />QTM_USE_NAMESPACE

class AccelerationInfo : public QObject, public QAccelerometerFilter<br />{<br /> Q_OBJECT

public:

AccelerationInfo(QObject* parent = 0) : QObject(parent)<br /> {<br /> m_sensor = new QAccelerometer(this);<br /> m_sensor-&gt;addFilter(this);<br /> m_sensor-&gt;start();<br /> }

private slots:

// Override of QAcclerometerFilter::filter(QAccelerometerReading*)<br /> void filter(QAccelerometerReading* reading)<br /> {<br /> qreal x = reading-&gt;x();<br /> qreal y = reading-&gt;y();<br /> qreal z = reading-&gt;z();

// Process acceleration sensor readings …

qDebug(&quot;Current device acceleration: x=%f y=%f z=%f&amp;quot;, x, y, z);<br /> }

private:

QAccelerometer* m_sensor;<br />};

Use accelerometer to control an Open GL-ES 3D model

This sensors tutorial from "Mobile Qt-Entwicklung&quot;:http://www.mobileqt.de/wiki/daten_des_accelerometer_sensors_mit_einem_opengl_objekt_verknuepfen (Mobile Qt Development) shows the accelerometer in an N900 manipulating a 3D model created using Open GL. The "descriptive text is in German&quot;:http://www.mobileqt.de/wiki/daten_des_accelerometer_sensors_mit_einem_opengl_objekt_verknuepfen, but all "the code is available in a downloadable package&quot;:http://www.mobileqt.de/tutorials/6/glsensordemo-0.1.zip and this "demo video&quot;:http://www.youtube.com/watch?v=uJpw0yeHJl8 shows you how it works.

Here is the relevant accelerometer code:

GLWidget::GLWidget(QWidget *parent) :
QGLWidget(parent)

{
setWindowTitle(tr("Sensor-GL-Demo&quot;));
makeCurrent();

setAttribute(Qt::WA_PaintOnScreen);
setAttribute(Qt::WA_NoSystemBackground);
setAutoBufferSwap(false);

xRot = 0;
yRot = 0;
zRot = 0;

_rotationSensorAvailable = false;
_rotationSensor = new QtMobility::QAccelerometer(this);
_rotationSensor->connect();
if (!_rotationSensor->isAvailable()) {
qWarning("No acceleration sensor available!");
} else {
_rotationSensorAvailable = true;
_rotationSensor->setSignalEnabled(false); // we get the values from the sensor itself
_rotationSensor->setUpdateInterval(100); // as quickly as possible
_rotationSensor->start();
}

QTimer *timer = new QTimer(this);
timer->setInterval(10);
QObject::connect(timer, SIGNAL (timeout()), this, SLOT (updateGL()));
timer->start();
showFullScreen();
}