QRotationSensor

The QRotationSensor class is a convenience wrapper around QSensor . More

Inheritance diagram of PySide2.QtSensors.QRotationSensor

Synopsis

Functions

Signals

Detailed Description

The only behavioural difference is that this class sets the type properly.

This class also features a reading() function that returns a QRotationReading instead of a QSensorReading .

For details about how the sensor works, see QRotationReading .

See also

QRotationReading

class PySide2.QtSensors.QRotationSensor([parent=Q_NULLPTR])
param parent:

PySide2.QtCore.QObject

Construct the sensor as a child of parent .

PySide2.QtSensors.QRotationSensor.type
PySide2.QtSensors.QRotationSensor.hasZ()
Return type:

bool

This property holds a value indicating if the z angle is available..

Returns true if z is available. Returns false if z is not available.

PySide2.QtSensors.QRotationSensor.hasZChanged(hasZ)
Parameters:

hasZ – bool

PySide2.QtSensors.QRotationSensor.setHasZ(hasZ)
Parameters:

hasZ – bool

Sets whether the z angle is available to hasZ . This is to be called from the backend. By default the hasZ property is true, so a backend only has to call this if its rotation sensor can not report z angles.

See also

hasZ()