Maxim Integrated MAX30205 C, C++ source code driver software: MAX30205 is accurate to +-0.1°C over the range of 37.0°C to 39.0°C. One-shot, shutdown modes are available for reduced power usage. Thermostat thresholds allow for temperature hysteresis or for alarm settings. The MAX30205 is available in a compact 3x3 mm, 8-pin TDFN package. Operating supply voltage range is 2.7V to 3.3V. Typical applications are for clinical digital thermometers, thermostats with hysteresis, and temperature alarms.
Dependents: MAX30205_Human_Body_Temperature_Sensor
Revision 3:939090042b32, committed 2017-04-07
- Comitter:
- j3
- Date:
- Fri Apr 07 21:14:44 2017 +0000
- Parent:
- 2:a659724f496a
- Child:
- 4:68e1b36becb0
- Commit message:
- All Read/Write fxs tested
Changed in this revision
| MAX30205.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/MAX30205.h Fri Apr 07 15:42:49 2017 +0000
+++ b/MAX30205.h Fri Apr 07 21:14:44 2017 +0000
@@ -86,6 +86,7 @@
* @param sda - Pinname for sda
* @param scl - Pinname for scl
* @param slaveAddress - 7-bit I2C address
+ * @param os - GPIO pin for Over Temperature Shutdown int if used
*/
MAX30205(PinName sda, PinName scl, uint8_t slaveAddress, PinName os = NC);
@@ -93,6 +94,7 @@
* @brief Constructor using reference to I2C object
* @param i2c - Reference to I2C object
* @param slaveAddress - 7-bit I2C address
+ * @param os - GPIO pin for Over Temperature Shutdown int if used
*/
MAX30205(I2C &i2c, uint8_t slaveAddress, PinName os = NC);