项目作者: eldruin

项目描述 :
Platform agnostic Rust driver for the TMP006/TMP006B non-contact infrared (IR) thermopile temperature sensor, based on the embedded-hal traits.
高级语言: Rust
项目地址: git://github.com/eldruin/tmp006-rs.git
创建时间: 2018-12-02T11:40:30Z
项目社区:https://github.com/eldruin/tmp006-rs

开源协议:Other

下载


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

  1. use linux_embedded_hal::I2cdev;
  2. use nb::block;
  3. use tmp006::{SlaveAddr, Tmp006};
  4. fn main() {
  5. let dev = I2cdev::new("/dev/i2c-1").unwrap();
  6. let address = SlaveAddr::default();
  7. let mut sensor = Tmp006::new(dev, address);
  8. let calibration_factor = 6e-14;
  9. let temperature = block!(sensor
  10. .read_object_temperature(calibration_factor))
  11. .unwrap();
  12. println!("Temperature: {}K", temperature);
  13. }

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.