QAmbientLightReading#

The QAmbientLightReading class represents one reading from the ambient light sensor. More

Inheritance diagram of PySide6.QtSensors.QAmbientLightReading

Synopsis#

Properties#

Functions#

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#

QAmbientLightReading Units#

The ambient light sensor returns the intensity of the ambient light using the pre-defined values found in the LightLevel enum.

class PySide6.QtSensors.QAmbientLightReading(parent)#
Parameters:

parentPySide6.QtCore.QObject

Note

Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.

property PᅟySide6.QtSensors.QAmbientLightReading.lightLevel: LightLevel#

This property holds the ambient light level..

The value represents the ambient light and comes from LightLevel .

See also

QAmbientLightReading Units

Access functions:
PySide6.QtSensors.QAmbientLightReading.LightLevel#

This enum represents the ambient light level.

Constant

Description

QAmbientLightReading.Undefined

The light level is unknown.

QAmbientLightReading.Dark

It is dark.

QAmbientLightReading.Twilight

It is moderately dark.

QAmbientLightReading.Light

It is light (eg. internal lights).

QAmbientLightReading.Bright

It is bright (eg. shade).

QAmbientLightReading.Sunny

It is very bright (eg. direct sunlight).

PySide6.QtSensors.QAmbientLightReading.lightLevel()#
Return type:

LightLevel

See also

setLightLevel()

Getter of property lightLevel .

PySide6.QtSensors.QAmbientLightReading.setLightLevel(lightLevel)#
Parameters:

lightLevelLightLevel

Sets the ambient light level to lightLevel.

See also

lightLevel()