# encoding: utf-8
# module PyQt5.QtSensors
# from C:\Programs\Python\Python313\Lib\site-packages\PyQt5\QtSensors.pyd
# by generator 1.147
# no doc

# imports
import PyQt5.QtCore as __PyQt5_QtCore
import sip as __sip


from .QSensorReading import QSensorReading

class QAmbientLightReading(QSensorReading):
    # no doc
    def lightLevel(self): # real signature unknown; restored from __doc__
        """ lightLevel(self) -> QAmbientLightReading.LightLevel """
        pass

    def setLightLevel(self, lightLevel): # real signature unknown; restored from __doc__
        """ setLightLevel(self, lightLevel: QAmbientLightReading.LightLevel) """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    Bright = 4
    Dark = 1
    Light = 3
    Sunny = 5
    Twilight = 2
    Undefined = 0


