Skip to content

Commit 79696fd

Browse files
authored
Merge pull request #22 from Neradoc/fix-documentation
Fix documentation
2 parents c6ea35c + bfb84e2 commit 79696fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_vc0706.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878

7979
class VC0706:
8080
"""Driver for VC0706 serial TTL camera module.
81+
8182
:param ~busio.UART uart: uart serial or compatible interface
8283
:param int buffer_size: Receive buffer size
8384
"""
@@ -225,7 +226,7 @@ def get_motion_detect(self):
225226
return self._run_command(_COMM_MOTION_STATUS, bytes([0x00]), 6)
226227

227228
def set_motion_detect(self, args):
228-
"""Set gesture detection status
229+
"""Set gesture detection status.
229230
args = 0 to unset, 1 to set
230231
"""
231232
return self._run_command(_COMM_MOTION_CTRL, bytes([0x01, args]), 5)

0 commit comments

Comments
 (0)