We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd4c00 commit 83c8bd7Copy full SHA for 83c8bd7
1 file changed
tests/stop_slow_framerate.py
@@ -5,6 +5,11 @@
5
from picamera2 import Picamera2
6
7
picam2 = Picamera2()
8
+
9
+if picam2.camera_properties['Model'] == "imx219":
10
+ print("SKIPPED (imx219 test bypass)")
11
+ quit()
12
13
config = picam2.create_preview_configuration(
14
controls={'FrameRate': 0.2, 'ExposureTime': 5000, 'AnalogueGain': 1.0, 'ColourGains': (1, 1)})
15
picam2.configure(config)
0 commit comments