QRotationSensor#
The QRotationSensor class is a convenience wrapper around QSensor . More…
Synopsis#
Properties#
hasZ- Value indicating if the z angle is available
Functions#
Signals#
def
hasZChanged(hasZ)
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
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
- class PySide6.QtSensors.QRotationSensor([parent=None])#
 - Parameters:
 parent –
PySide6.QtCore.QObject
Construct the sensor as a child of parent.
Note
Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.
- property PᅟySide6.QtSensors.QRotationSensor.hasZ: 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.
- Access functions:
 hasZ()Signal
hasZChanged(hasZ)
- PySide6.QtSensors.QRotationSensor.sensorType#
 
Getter of property hasZ .
- PySide6.QtSensors.QRotationSensor.hasZChanged(hasZ)#
 - Parameters:
 hasZ – bool
Notification signal of property hasZ .
- PySide6.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