Skip to content

Releases: adafruit/Adafruit_CircuitPython_VC0706

6.0.3 - Added cp.org link to index.rst

09 Jun 18:55
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

6.0.2 - Repo documentation and config updates

07 Jun 17:23
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

6.0.1 - Fix compatibility for Python 3.7

20 May 00:39
2e55b84
Compare
Choose a tag to compare

Fixed a compatibility issue preventing Python 3.7 from using this library. Thanks @FoamyGuy!

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

6.0.0 - Use Property for Motion Detect

21 Apr 12:55
92b9af4
Compare
Choose a tag to compare

This release changes motion detect features to use properties instead of functions. Thank you @tekktrik.

This is a breaking change if you were using get_motion_detect() or set_motion_detect() but if you weren't using these specific functions then this change should not affect your usage. If you were using those functions you'll need to update your code to use the motion_detect property for getting and setting the value.

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

5.0.1 - Added type annotations

16 Apr 00:04
cf51ea2
Compare
Choose a tag to compare

Added type annotations, thanks @FoamyGuy!

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

5.0.0 - set_motion_detect() Argument Name Changed

04 Apr 17:34
c13715b
Compare
Choose a tag to compare

This release changes the argument name for the argument of the set_motion_detect() function to enabled. Technically this is a breaking change in the specific case where user code passed the argument by name. i.e.

vc0706.set_motion_detect(args=True)

would need to change to:

vc0706.set_motion_detect(enabled=True)

However any code not specifically passing the argument by name should be unaffected and still work with this version.

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

4.3.1 - Reformatted library to match latest black version

01 Apr 20:05
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

4.3.0 - Motion Detection Feature

06 Feb 20:59
a417126
Compare
Choose a tag to compare

This release enables the motion detection feature of the device with new functions motion_detected(), set_motion_detect(), and get_motion_detect(). Thank you @brtchip-tuannguyen

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

4.2.5 - Updated documentation link, python version

04 Feb 20:35
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.

4.2.4 - Updated pylint version, linted

15 Nov 18:26
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython Bundle.

To use in CPython, pip3 install adafruit-circuitpython-vc0706.

Read the docs for info on how to use it.