Rust LM73 Temperature Sensor and Thermal Watchdog Driver
This is based on LM75 work of Diego Barrios Romero
This is a platform agnostic Rust driver for the LM73 temperature sensor
and thermal watchdog, based on the
embedded-hal traits.
This driver allows you to:
- Enable/disable the device.
- Read the temperature.
The device
The LM73 temperature sensor includes a delta-sigma analog-to-digital converter, and a digital overtemperature detector. The host can query the LM73 through its I2C interface to read temperature at any time.
Datasheet:
Usage
extern crate linux_embedded_hal as hal;
extern crate lm73;
use I2cdev;
use ;
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) 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.