Code Examples Sensors API: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
'''English''' [[Code Examples Sensors API Spanish|Spanish]]<br />[[Category:Developing with Qt::QtMobility]]
'''English''' [[Code Examples Sensors API Spanish|Spanish]]
[[Category:Developing with Qt::QtMobility]]


[toc align_right=&quot;yes&amp;quot; depth=&quot;2&amp;quot;]
[toc align_right="yes" depth="2"]


= Overview =
= Overview =


This page points to and provides quick overviews of existing code examples using the &quot;Sensors API&amp;quot;:http://doc.qt.nokia.com/qtmobility-1.1.0/sensors-api.html, one of the suite of Qt Mobilty APIs.
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 ==
== Fall detector ==


The &quot;Fall Detector example&amp;quot;: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
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


* &quot;Location API&amp;quot;:http://doc.qt.nokia.com/qtmobility-1.1.0/location-overview.html to get the user's location
* "Location API":http://doc.qt.nokia.com/qtmobility-1.1.0/location-overview.html to get the user's location


* the &quot;Contacts API&amp;quot;:http://doc.qt.nokia.com/qtmobility-1.1.0/contacts.html to store and access an email address to be notified in the event of a fall
* the "Contacts API":http://doc.qt.nokia.com/qtmobility-1.1.0/contacts.html to store and access an email address to be notified in the event of a fall


* and the &quot;Messaging API &quot;:http://doc.qt.nokia.com/qtmobility-1.1.0/messaging.html to send an email notification with photo attachment.
* and the "Messaging API ":http://doc.qt.nokia.com/qtmobility-1.1.0/messaging.html to send an email notification with photo attachment.


[[Image:http://www.forum.nokia.com/piazza/wiki/images/1/15/Falldetector--screens.png?20100324100739|Fall Dector Screen Shot]]<br />Here's the code snippet for the fall detector using the Sensors API:
[[Image:http://www.forum.nokia.com/piazza/wiki/images/1/15/Falldetector--screens.png?20100324100739|Fall Dector Screen Shot]]
Here's the code snippet for the fall detector using the Sensors API:


<code>#include &lt;QAccelerometer&amp;gt;
<code>#include <QAccelerometer>


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


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


public:
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 /> }
AccelerationInfo(QObject* parent = 0) : QObject(parent)
{
m_sensor = new QAccelerometer(this);
m_sensor->addFilter(this);
m_sensor->start();
}


private slots:
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();
// Override of QAcclerometerFilter::filter(QAccelerometerReading*)
void filter(QAccelerometerReading* reading)
{
qreal x = reading->x();
qreal y = reading->y();
qreal z = reading->z();


// Process acceleration sensor readings …
// Process acceleration sensor readings …


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


private:
private:


QAccelerometer* m_sensor;<br />};
QAccelerometer* m_sensor;
};


</code>
</code>
Line 45: Line 62:
== Use accelerometer to control an Open GL-ES 3D model ==
== Use accelerometer to control an Open GL-ES 3D model ==


This sensors tutorial from &quot;Mobile Qt-Entwicklung&amp;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 &quot;descriptive text is in German&amp;quot;:http://www.mobileqt.de/wiki/daten_des_accelerometer_sensors_mit_einem_opengl_objekt_verknuepfen, but all &quot;the code is available in a downloadable package&amp;quot;:http://www.mobileqt.de/tutorials/6/glsensordemo-0.1.zip and this &quot;demo video&amp;quot;:http://www.youtube.com/watch?v=uJpw0yeHJl8 shows you how it works.
This sensors tutorial from "Mobile Qt-Entwicklung":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":http://www.mobileqt.de/wiki/daten_des_accelerometer_sensors_mit_einem_opengl_objekt_verknuepfen, but all "the code is available in a downloadable package":http://www.mobileqt.de/tutorials/6/glsensordemo-0.1.zip and this "demo video":http://www.youtube.com/watch?v=uJpw0yeHJl8 shows you how it works.


Here is the relevant accelerometer code:
Here is the relevant accelerometer code:


<code>GLWidget::GLWidget(QWidget *parent) :<br /> QGLWidget(parent)
<code>GLWidget::GLWidget(QWidget *parent) :
QGLWidget(parent)


{<br /> setWindowTitle(tr(&quot;Sensor-GL-Demo&amp;quot;));<br /> makeCurrent();
{
setWindowTitle(tr("Sensor-GL-Demo"));
makeCurrent();


setAttribute(Qt::WA_PaintOnScreen);<br /> setAttribute(Qt::WA_NoSystemBackground);<br /> setAutoBufferSwap(false);
setAttribute(Qt::WA_PaintOnScreen);
setAttribute(Qt::WA_NoSystemBackground);
setAutoBufferSwap(false);


xRot = 0;<br /> yRot = 0;<br /> zRot = 0;
xRot = 0;
yRot = 0;
zRot = 0;


_rotationSensorAvailable = false;<br /> _rotationSensor = new QtMobility::QAccelerometer(this);<br /> _rotationSensor-&gt;connect();<br /> if (!_rotationSensor-&gt;isAvailable()) {<br /> qWarning(&quot;No acceleration sensor available!&quot;);<br /> } else {<br /> _rotationSensorAvailable = true;<br /> _rotationSensor-&gt;setSignalEnabled(false); // we get the values from the sensor itself<br /> _rotationSensor-&gt;setUpdateInterval(100); // as quickly as possible<br /> _rotationSensor-&gt;start();<br /> }
_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);<br /> timer-&gt;setInterval(10);<br /> QObject::connect(timer, SIGNAL (timeout()), this, SLOT (updateGL()));<br /> timer-&gt;start();<br /> showFullScreen();<br />}
QTimer *timer = new QTimer(this);
timer->setInterval(10);
QObject::connect(timer, SIGNAL (timeout()), this, SLOT (updateGL()));
timer->start();
showFullScreen();
}

Revision as of 10:49, 25 February 2015

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
QTM_USE_NAMESPACE

class AccelerationInfo : public QObject, public QAccelerometerFilter
{
 Q_OBJECT

public:

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

private slots:

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

// Process acceleration sensor readings …

qDebug("Current device acceleration: x=%f y=%f z=%f", x, y, z);
 }

private:

QAccelerometer* m_sensor;
};

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

This sensors tutorial from "Mobile Qt-Entwicklung":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":http://www.mobileqt.de/wiki/daten_des_accelerometer_sensors_mit_einem_opengl_objekt_verknuepfen, but all "the code is available in a downloadable package":http://www.mobileqt.de/tutorials/6/glsensordemo-0.1.zip and this "demo video":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"));
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();

}