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
Diff: MAX30205.h
- Revision:
- 3:939090042b32
- Parent:
- 1:d4271ef9f37f
- Child:
- 4:68e1b36becb0
diff -r a659724f496a -r 939090042b32 MAX30205.h
--- 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);