adafruit / Adafruit_CircuitPython_OV5640

CircuitPython driver for OV5640 Camera
MIT License
4 stars 4 forks source link

Exposure value being set but cannot be printed #28

Open jmangum opened 9 months ago

jmangum commented 9 months ago

While experimenting with the cam.exposure_value property I found that I can set it, but cannot print it to check its current value:

cam.exposure_value = 1
print(f"Cam Exposure: {cam.exposure_value}")

...which results in the following output...

Cam Exposure: 0

I can see from the images I capture that I have in fact set cam.exposure_value to 1 (in this example), but that fact is not reflected when I query the value.