QAccelerometerReading

The QAccelerometerReading class reports on linear acceleration along the X, Y and Z axes. More

Inheritance diagram of PySide2.QtSensors.QAccelerometerReading

Synopsis

Functions

Detailed Description

QAccelerometerReading Units

The scale of the values is meters per second squared. The axes are arranged as follows.

../../_images/sensors-coordinates2.jpg

A monoblock device sitting at rest, face up on a desk will experience a force of approximately 9.8 on the Z axis (ie. towards the roof). This is the proper acceleration the device experiences relative to freefall.

class QAccelerometerReading(parent)
Parameters

parentQObject

PySide2.QtSensors.QAccelerometerReading.setX(x)
Parameters

xqreal

Sets the acceleration on the X axis to x .

See also

x()

PySide2.QtSensors.QAccelerometerReading.setY(y)
Parameters

yqreal

Sets the acceleration on the Y axis to y .

See also

y()

PySide2.QtSensors.QAccelerometerReading.setZ(z)
Parameters

zqreal

Sets the acceleration on the Z axis to z .

See also

z()

PySide2.QtSensors.QAccelerometerReading.x()
Return type

qreal

See also

setX()

PySide2.QtSensors.QAccelerometerReading.y()
Return type

qreal

See also

setY()

PySide2.QtSensors.QAccelerometerReading.z()
Return type

qreal

See also

setZ()