Releases: adafruit/Adafruit_CircuitPython_VC0706
6.0.3 - Added cp.org link to index.rst
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
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
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
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
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
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
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
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
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
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.