Updated package meta zeug

This commit is contained in:
Thomas 2023-03-24 20:31:20 +01:00
parent a9354b94ba
commit b36944281f
1 changed files with 2 additions and 3 deletions

View File

@ -24,10 +24,9 @@ def get_exposure_stack(factor: int = 2):
start = picam2.capture_metadata() start = picam2.capture_metadata()
exposure_start = start["ExposureTime"] exposure_start = start["ExposureTime"]
gain_start = start["AnalogueGain"] gain_start = start["AnalogueGain"]
if exposure_start > 117000: if exposure_start > 117000 or exposure_start < factor:
print("Low Light levels out of range, can't make HDR") print("Low Light levels out of range, can't make HDR")
if exposure_start < factor: exit()
print("HIgh Light levels out of range, cant make HDR")
picam2.set_controls({"AeEnable": 0}) picam2.set_controls({"AeEnable": 0})
confirmed = picam2.capture_metadata()["AeLocked"] confirmed = picam2.capture_metadata()["AeLocked"]