Having played around with controlling the raspberry pi camera in python, I discovered that there is an aperture module and that this code takes a picture without throwing up an error which I thought was strange.
import picamera, time
with picamera.PiCamera() as camera:
camera.apeture = 8
camera.start_preview()
time.sleep(2)
camera.capture("test a.jpg")
print("Done")
My question is, is changing the value for camera.apeture actually changing the aperture of the camera? And what are the possible maximum and minimum values for the aperture?