Library for ADT7410 I2C temperature sensor. Use this instead of TMP102 when you need to measure temperatures lower than -40 degrees C. The device is guaranteed to work at -55 C but will actually read lower temps. See http://mbed.org/users/tkreyche/notebook/adt7140-i2c-temperature-sensor/ for more info.

Dependents:   BLE_ADT7410_TMP102_Sample BLE_HTM_HRM1017 BLENano_SimpleTemplate_temp_170802 BLENano_SimpleTemplate_temp_170813 ... more

Files at this revision

API Documentation at this revision

Comitter:
tkreyche
Date:
Tue Feb 01 19:33:56 2011 +0000
Parent:
7:84351f613e8a
Commit message:

Changed in this revision

ADT7410.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ADT7410.cpp	Tue Feb 01 19:27:42 2011 +0000
+++ b/ADT7410.cpp	Tue Feb 01 19:33:56 2011 +0000
@@ -1,7 +1,7 @@
 #include "ADT7410.h"
 
 
- // constructor taks paramters and initializes I2C bus
+ // constructor takes paramters and initializes I2C bus
 ADT7410::ADT7410(PinName sda, PinName scl, char addr, int hz)
         : i2c(sda, scl)
         , busAddr(addr)