QSensorBackend

The QSensorBackend class is a sensor implementation. More

Inheritance diagram of PySide2.QtSensors.QSensorBackend

Synopsis

Functions

Virtual functions

Detailed Description

Sensors on a device will be represented by sub-classes of QSensorBackend .

class PySide2.QtSensors.QSensorBackend(sensor[, parent=Q_NULLPTR])
Parameters:
PySide2.QtSensors.QSensorBackend.addDataRate(min, max)
Parameters:
  • min – float

  • max – float

Add a data rate (consisting of min and max values) for the sensor.

Note that this function should be called from the constructor so that the information is available immediately.

PySide2.QtSensors.QSensorBackend.addOutputRange(min, max, accuracy)
Parameters:
  • min – float

  • max – float

  • accuracy – float

Add an output range (consisting of min , max values and accuracy ) for the sensor.

Note that this function should be called from the constructor so that the information is available immediately.

PySide2.QtSensors.QSensorBackend.isFeatureSupported(feature)
Parameters:

featureFeature

Return type:

bool

Checks whether a feature is supported by this sensor backend.

This is the backend side of isFeatureSupported() . Reimplement this function if the backend supports one of the additional sensor features of Feature .

Returns whether the feature feature is supported by this backend. The default implementation returns false.

PySide2.QtSensors.QSensorBackend.newReadingAvailable()

Notify the QSensor class that a new reading is available.

PySide2.QtSensors.QSensorBackend.reading()
Return type:

PySide2.QtSensors.QSensorReading

If the backend has lost its reference to the reading it can call this method to get the address.

Note that you will need to down-cast to the appropriate type.

See also

setReading()

PySide2.QtSensors.QSensorBackend.sensor()
Return type:

PySide2.QtSensors.QSensor

Returns the sensor front end associated with this backend.

PySide2.QtSensors.QSensorBackend.sensorBusy()

Inform the front end that the sensor is busy. This implicitly calls sensorStopped() and is typically called from start() .

Note that the front end must call isBusy() to see if the sensor is busy. If the sensor has stopped due to an error the sensorError() function should be called to notify the class of the error condition.

PySide2.QtSensors.QSensorBackend.sensorError(error)
Parameters:

error – int

Inform the front end that a sensor error occurred. Note that this only reports an error code. It does not stop the sensor.

See also

sensorStopped()

PySide2.QtSensors.QSensorBackend.sensorStopped()

Inform the front end that the sensor has stopped. This can be due to start() failing or for some unexpected reason (eg. hardware failure).

Note that the front end must call isActive() to see if the sensor has stopped. If the sensor has stopped due to an error the sensorError() function should be called to notify the class of the error condition.

PySide2.QtSensors.QSensorBackend.setDataRates(otherSensor)
Parameters:

otherSensorPySide2.QtSensors.QSensor

Set the data rates for the sensor based on otherSensor .

This is designed for sensors that are based on other sensors.

setDataRates(otherSensor);

Note that this function must be called from the constructor.

PySide2.QtSensors.QSensorBackend.setDescription(description)
Parameters:

description – str

Set the description for the sensor.

Note that this function should be called from the constructor so that the information is available immediately.

PySide2.QtSensors.QSensorBackend.start()

Start reporting values.

PySide2.QtSensors.QSensorBackend.stop()

Stop reporting values.