From bfb84e2f53af4a49173610ad801271e145e9cb7a Mon Sep 17 00:00:00 2001 From: Neradoc Date: Mon, 28 Mar 2022 16:52:27 +0200 Subject: [PATCH] Fix documentation --- adafruit_vc0706.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/adafruit_vc0706.py b/adafruit_vc0706.py index 29b226e..8cc75d5 100644 --- a/adafruit_vc0706.py +++ b/adafruit_vc0706.py @@ -78,6 +78,7 @@ class VC0706: """Driver for VC0706 serial TTL camera module. + :param ~busio.UART uart: uart serial or compatible interface :param int buffer_size: Receive buffer size """ @@ -225,7 +226,7 @@ def get_motion_detect(self): return self._run_command(_COMM_MOTION_STATUS, bytes([0x00]), 6) def set_motion_detect(self, args): - """Set gesture detection status + """Set gesture detection status. args = 0 to unset, 1 to set """ return self._run_command(_COMM_MOTION_CTRL, bytes([0x01, args]), 5)