Introduction
CircuitPython driver for the Adafruit VCNL4200 Long Distance IR Proximity and Light Sensor
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-vcnl4200
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-vcnl4200
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install adafruit-circuitpython-vcnl4200
Installing to a Connected CircuitPython Device with Circup
Make sure that you have circup
installed in your Python environment.
Install it with the following command if necessary:
pip3 install circup
With circup
installed and your CircuitPython device connected use the
following command to install:
circup install adafruit_vcnl4200
Or the following command to update an existing version:
circup update
Usage Example
import time
import board
import adafruit_vcnl4200
i2c = board.I2C()
# Initialize VCNL4200
sensor = adafruit_vcnl4020.Adafruit_VCNL4200(i2c)
while True:
print(f"Proximity is: {sensor.proximity}")
print(f"Ambient is: {sensor.lux}")
time.sleep(0.1)
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Table of Contents
adafruit_vcnl4200
Adafruit_VCNL4200
Adafruit_VCNL4200.als_integration_time
Adafruit_VCNL4200.als_interrupt()
Adafruit_VCNL4200.als_persistence
Adafruit_VCNL4200.als_shutdown
Adafruit_VCNL4200.als_threshold_high
Adafruit_VCNL4200.als_threshold_low
Adafruit_VCNL4200.interrupt_flags
Adafruit_VCNL4200.lux
Adafruit_VCNL4200.prox_active_force
Adafruit_VCNL4200.prox_boost_typical_sunlight_capability
Adafruit_VCNL4200.prox_cancellation_level
Adafruit_VCNL4200.prox_duty
Adafruit_VCNL4200.prox_hd
Adafruit_VCNL4200.prox_int_threshold_high
Adafruit_VCNL4200.prox_int_threshold_low
Adafruit_VCNL4200.prox_integration_time
Adafruit_VCNL4200.prox_interrupt
Adafruit_VCNL4200.prox_interrupt_logic_mode
Adafruit_VCNL4200.prox_led_current
Adafruit_VCNL4200.prox_multi_pulse
Adafruit_VCNL4200.prox_persistence
Adafruit_VCNL4200.prox_shutdown
Adafruit_VCNL4200.prox_smart_persistence
Adafruit_VCNL4200.prox_sun_cancellation
Adafruit_VCNL4200.prox_sunlight_double_immunity
Adafruit_VCNL4200.proximity
Adafruit_VCNL4200.sun_protect_polarity
Adafruit_VCNL4200.trigger_prox()
Adafruit_VCNL4200.white_light