#light #ambient #sensor #embedded-hal-driver #als

no-std opt300x

Platform-agnostic Rust driver for the OPT300x ambient light sensors. Compatible with OPT3001, OPT3002, OPT3004, OPT3006 and OPT3007

2 releases

0.1.1 Sep 10, 2021
0.1.0 Nov 9, 2019

#1978 in Embedded development

Download history 44/week @ 2023-11-20 54/week @ 2023-11-27 86/week @ 2023-12-04 85/week @ 2023-12-11 93/week @ 2023-12-18 13/week @ 2023-12-25 86/week @ 2024-01-15 41/week @ 2024-01-22 1/week @ 2024-01-29 17/week @ 2024-02-19 41/week @ 2024-02-26 8/week @ 2024-03-04

66 downloads per month

MIT/Apache

36KB
488 lines

Rust OPT300x Ambient Light Sensor (ALS) Driver

crates.io Docs Build Status Coverage Status

This is a platform agnostic Rust driver for the OPT300x ambient light sensor family using the embedded-hal traits.

This driver allows you to:

  • Read the measurement in lux or raw. See: read_lux().
  • Change into continuous measurement mode. See: into_continuous().
  • Read the conversion status. See: read_status().
  • Set the fault count. See: set_fault_count().
  • Set the interrupt pin polarity. See: set_interrupt_pin_polarity().
  • Set the comparison mode. See: set_comparison_mode().
  • Set the low and high limits. See: set_low_limit_raw().
  • Enable and disable end-of-conversion mode. See: enable_end_of_conversion_mode().
  • Get the manufacturer ID. See: get_manufacturer_id().
  • Get the device ID. See: get_device_id().

Introductory blog post

The devices

This driver is compatible with the devices OPT3001, OPT3002, OPT3004, OPT3006 and OPT3007.

The OPT3001 is a sensor that measures the intensity of visible light. The spectral response of the sensor tightly matches the photopic response of the human eye and includes significant infrared rejection.

The OPT3001 is a single-chip lux meter, measuring the intensity of light as visible by the human eye. The precision spectral response and strong IR rejection of the device enables the OPT3001 to accurately meter the intensity of light as seen by the human eye regardless of light source. The strong IR rejection also aids in maintaining high accuracy when industrial design calls for mounting the sensor under dark glass for aesthetics. The OPT3001 is designed for systems that create light-based experiences for humans, and an ideal preferred replacement for photodiodes, photoresistors, or other ambient light sensors with less human eye matching and IR rejection.

Measurements can be made from 0.01 lux up to 83k lux without manually selecting full-scale ranges by using the built-in, full-scale setting feature. This capability allows light measurement over a 23-bit effective dynamic range.

The digital operation is flexible for system integration. Measurements can be either continuous or single-shot. The control and interrupt system features autonomous operation, allowing the processor to sleep while the sensor searches for appropriate wake-up events to report via the interrupt pin. The digital output is reported over an I2C- and SMBus-compatible, two-wire serial interface.

The low power consumption and low power-supply voltage capability of the OPT3001 enhance the battery life of battery-powered systems.

Datasheets:

Application Guide:

Usage

To use this driver, import this crate and an embedded_hal implementation, then instantiate the appropriate device.

In the following example an instance of the device OPT3001 will be created. Other devices can be created with similar methods like: Opt300x::new_opt3002(...).

Please find additional examples using hardware in this repository: driver-examples

use linux_embedded_hal::I2cdev;
use opt300x::{Opt300x, SlaveAddr};

fn main() {
    let dev = I2cdev::new("/dev/i2c-1").unwrap();
    let address = SlaveAddr::default();
    let sensor = Opt300x::new_opt3001(dev, address);
    let mut sensor = sensor.into_continuous().ok().unwrap();
    loop {
        let lux = sensor.read_lux().unwrap();
        println!("lux: {:2}", lux);
    }
}

Support

For questions, issues, feature requests, and other changes, please file an issue in the github project.

License

Licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~71KB