Reading accelerometer sensor data using QML
This code example shows how to read accelerometer data (x, y and z value) in QML.
Article Metadata
Code Example
Source file: Qmlaccelerometer.zip
Installation file: included in zip code.
Tested with
SDK: Qt SDK 1,2
Devices(s): Nokia E7
Compatibility
Platform(s): Symbian
Device(s): Device with accelerometer sensor
Dependencies: None
Platform Security
Signing Required: Self
Capabilities: None
Article
Keywords: Accelerometer QML
Created: kkrish (06 Mar 2012)
Last edited: kkrish
(15 Jun 2012)
Introduction
The code is very simple and written in QML. QtMobility API must be available on your device to execute this this code.
Screen Shot:
import QtMobility.sensors 1.1
Accelerometer{
id: xMeter
active: true
onReadingChanged: {
console.log("=====onReadingChanged=========");
xVal = reading.x
yVal = reading.y
zVal = reading.z
}
}


