#temperature-sensor #temperature #sensor #driver #embedded-hal-driver #thermopile

no-std tmp006

Platform-agnostic Rust driver for the TMP006/TMP006B non-contact infrared (IR) thermopile temperature sensor

3 releases (1 stable)

1.0.0 Feb 12, 2024
0.2.0 Sep 23, 2021
0.1.0 Dec 7, 2018

#1709 in Embedded development

Download history 18/week @ 2024-02-10 26/week @ 2024-02-17 29/week @ 2024-02-24 4/week @ 2024-03-02 1/week @ 2024-03-09 48/week @ 2024-03-30 19/week @ 2024-04-06 40/week @ 2024-04-13

107 downloads per month

MIT/Apache

25KB
275 lines

Rust TMP006/B Non-Contact Infrared (IR) Thermopile Temperature Sensor Driver

crates.io Docs Minimum Supported Rust Version Build Status Coverage Status

This is a platform agnostic Rust driver for the TMP006/TMP006B non-contact infrared (IR) thermopile temperature sensor, based on the embedded-hal traits.

This driver allows you to:

  • Enable/disable the device. See: enable().
  • Read the object temperature. See: read_object_temperature().
  • Read the object voltage and ambient temperature raw data. See: read_sensor_data().
  • Calculate the object temperature from the sensor raw data. See: calculate_object_temperature().
  • Set the ADC conversion rate. See: set_conversion_rate().
  • Enable/disable the DRDY pin. See: enable_drdy_pin().
  • Read whether data is ready to be read. See: is_data_ready().
  • Perform a software reset. See: reset().
  • Read the manufacturer ID. See: read_manufacturer_id().
  • Read the device ID. See: read_device_id().

Introductory blog post

The device

The TMP006 and TMP006B are the first in a series of temperature sensors that measure the temperature of an object without the need to make contact with the object. This sensor uses a thermopile to absorb the infrared energy emitted from the object being measured and uses the corresponding change in thermopile voltage to determine the object temperature.

Infrared sensor voltage range is specified from -40°C to +125°C to enable use in a wide range of applications. Low power consumption along with low operating voltage makes the device suitable for battery-powered applications. The low package height of the chip-scale format enables standard high- volume assembly methods, and can be useful where limited spacing to the object being measured is available.

Datasheet:

Usage example

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

Please find additional examples in this repository: driver-examples

use linux_embedded_hal::I2cdev;
use nb::block;
use tmp006::{SlaveAddr, Tmp006};

fn main() {
    let dev = I2cdev::new("/dev/i2c-1").unwrap();
    let address = SlaveAddr::default();
    let mut sensor = Tmp006::new(dev, address);
    let calibration_factor = 6e-14;
    let temperature = block!(sensor
        .read_object_temperature(calibration_factor))
        .unwrap();
    println!("Temperature: {}K", temperature);
}

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

~480KB