Human body temp sensor library

Dependents:   MAX30205_Human_Body_Temperature_Example_Program_Hello_World MAX32630HSP3_IMU_Hello_World MAX30205_Human_Body_Temperature_Sensor MAX30205_Human_Body_Temperature_IoT ... more

Revision:
3:939090042b32
Parent:
1:d4271ef9f37f
Child:
4:68e1b36becb0
--- 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);