You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shared-bindings/imagecapture/ParallelImageCapture.c
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -39,27 +39,24 @@
39
39
//| def __init__(
40
40
//| self,
41
41
//| *,
42
-
//| data0: microcontroller.Pin,
43
-
//| data_count: int=8,
42
+
//| data_pins: List[microcontroller.Pin],
44
43
//| clock: microcontroller.Pin,
45
44
//| vsync: Optional[microcontroller.Pin],
46
45
//| href: Optional[microcontroller.Pin],
47
46
//| ):
48
47
//| """Create a parallel image capture object
49
48
//| :param microcontroller.Pin data0: The first data pin. Additional data pins are assumed to follow this pin directly in the microcontroller's standard pin ordering.
50
-
//| :param int data_count: The number of data pins.
51
49
//| :param microcontroller.Pin clock: The pixel clock input.
52
50
//| :param microcontroller.Pin vsync: The vertical sync input, which has a negative-going pulse at the beginning of each frame.
53
51
//| :param microcontroller.Pin href: The horizontal reference input, which is high whenever the camera is transmitting valid pixel information.
0 commit comments