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

Committer:
j3
Date:
Fri Apr 07 21:14:44 2017 +0000
Revision:
3:939090042b32
Parent:
1:d4271ef9f37f
Child:
4:68e1b36becb0
All Read/Write fxs tested

Who changed what in which revision?

UserRevisionLine numberNew contents of line
j3 0:cdad7a9ef486 1 /*******************************************************************************
j3 1:d4271ef9f37f 2 * Copyright (C) 2017 Maxim Integrated Products, Inc., All Rights Reserved.
j3 0:cdad7a9ef486 3 *
j3 0:cdad7a9ef486 4 * Permission is hereby granted, free of charge, to any person obtaining a
j3 0:cdad7a9ef486 5 * copy of this software and associated documentation files (the "Software"),
j3 0:cdad7a9ef486 6 * to deal in the Software without restriction, including without limitation
j3 0:cdad7a9ef486 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
j3 0:cdad7a9ef486 8 * and/or sell copies of the Software, and to permit persons to whom the
j3 0:cdad7a9ef486 9 * Software is furnished to do so, subject to the following conditions:
j3 0:cdad7a9ef486 10 *
j3 0:cdad7a9ef486 11 * The above copyright notice and this permission notice shall be included
j3 0:cdad7a9ef486 12 * in all copies or substantial portions of the Software.
j3 0:cdad7a9ef486 13 *
j3 0:cdad7a9ef486 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
j3 0:cdad7a9ef486 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
j3 0:cdad7a9ef486 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
j3 0:cdad7a9ef486 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
j3 0:cdad7a9ef486 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
j3 0:cdad7a9ef486 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
j3 0:cdad7a9ef486 20 * OTHER DEALINGS IN THE SOFTWARE.
j3 0:cdad7a9ef486 21 *
j3 0:cdad7a9ef486 22 * Except as contained in this notice, the name of Maxim Integrated
j3 0:cdad7a9ef486 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
j3 0:cdad7a9ef486 24 * Products, Inc. Branding Policy.
j3 0:cdad7a9ef486 25 *
j3 0:cdad7a9ef486 26 * The mere transfer of this software does not imply any licenses
j3 0:cdad7a9ef486 27 * of trade secrets, proprietary technology, copyrights, patents,
j3 0:cdad7a9ef486 28 * trademarks, maskwork rights, or any other form of intellectual
j3 0:cdad7a9ef486 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
j3 0:cdad7a9ef486 30 * ownership rights.
j3 0:cdad7a9ef486 31 *******************************************************************************
j3 0:cdad7a9ef486 32 */
j3 0:cdad7a9ef486 33 #ifndef __MAX30205_H_
j3 0:cdad7a9ef486 34 #define __MAX30205_H_
j3 0:cdad7a9ef486 35
j3 0:cdad7a9ef486 36 #include "mbed.h"
j3 0:cdad7a9ef486 37
j3 0:cdad7a9ef486 38 /**
j3 0:cdad7a9ef486 39 * Driver for the MAX30205
j3 0:cdad7a9ef486 40 *
j3 0:cdad7a9ef486 41 * @code
j3 0:cdad7a9ef486 42 * #include "mbed.h"
j3 0:cdad7a9ef486 43 * #include "MAX30205.h"
j3 0:cdad7a9ef486 44 *
j3 0:cdad7a9ef486 45 * int main(void)
j3 0:cdad7a9ef486 46 * {
j3 0:cdad7a9ef486 47 * I2C i2c(I2C_SDA, I2C_SCL);
j3 0:cdad7a9ef486 48 * MAX30205 sensor(i2c);
j3 0:cdad7a9ef486 49 *
j3 0:cdad7a9ef486 50 * //use sensor
j3 0:cdad7a9ef486 51 * }
j3 0:cdad7a9ef486 52 * @endcode
j3 0:cdad7a9ef486 53 */
j3 0:cdad7a9ef486 54
j3 0:cdad7a9ef486 55 class MAX30205
j3 0:cdad7a9ef486 56 {
j3 0:cdad7a9ef486 57
j3 0:cdad7a9ef486 58 public:
j3 0:cdad7a9ef486 59 /// MAX30205 Register Addresses
j3 0:cdad7a9ef486 60 enum Registers
j3 0:cdad7a9ef486 61 {
j3 0:cdad7a9ef486 62 Temperature = 0x00,
j3 0:cdad7a9ef486 63 Configuration = 0x01,
j3 0:cdad7a9ef486 64 THYST = 0x02,
j3 0:cdad7a9ef486 65 TOS = 0x03
j3 0:cdad7a9ef486 66 };
j3 1:d4271ef9f37f 67
j3 1:d4271ef9f37f 68 ///MAX30205 Configuration register bitfields
j3 1:d4271ef9f37f 69 union Config
j3 1:d4271ef9f37f 70 {
j3 1:d4271ef9f37f 71 uint8_t all;
j3 1:d4271ef9f37f 72 struct BitField
j3 1:d4271ef9f37f 73 {
j3 1:d4271ef9f37f 74 uint8_t shutdown : 1;
j3 1:d4271ef9f37f 75 uint8_t comp_int : 1;
j3 1:d4271ef9f37f 76 uint8_t os_polarity : 1;
j3 1:d4271ef9f37f 77 uint8_t fault_queue : 2;
j3 1:d4271ef9f37f 78 uint8_t data_format : 1;
j3 1:d4271ef9f37f 79 uint8_t timeout : 1;
j3 1:d4271ef9f37f 80 uint8_t one_shot : 1;
j3 1:d4271ef9f37f 81 }bits;
j3 1:d4271ef9f37f 82 };
j3 0:cdad7a9ef486 83
j3 0:cdad7a9ef486 84 /**
j3 0:cdad7a9ef486 85 * @brief Constructor using I2C PinNames
j3 0:cdad7a9ef486 86 * @param sda - Pinname for sda
j3 0:cdad7a9ef486 87 * @param scl - Pinname for scl
j3 0:cdad7a9ef486 88 * @param slaveAddress - 7-bit I2C address
j3 3:939090042b32 89 * @param os - GPIO pin for Over Temperature Shutdown int if used
j3 0:cdad7a9ef486 90 */
j3 1:d4271ef9f37f 91 MAX30205(PinName sda, PinName scl, uint8_t slaveAddress, PinName os = NC);
j3 0:cdad7a9ef486 92
j3 0:cdad7a9ef486 93 /**
j3 0:cdad7a9ef486 94 * @brief Constructor using reference to I2C object
j3 0:cdad7a9ef486 95 * @param i2c - Reference to I2C object
j3 0:cdad7a9ef486 96 * @param slaveAddress - 7-bit I2C address
j3 3:939090042b32 97 * @param os - GPIO pin for Over Temperature Shutdown int if used
j3 0:cdad7a9ef486 98 */
j3 1:d4271ef9f37f 99 MAX30205(I2C &i2c, uint8_t slaveAddress, PinName os = NC);
j3 0:cdad7a9ef486 100
j3 0:cdad7a9ef486 101 /** @brief Destructor */
j3 0:cdad7a9ef486 102 ~MAX30205(void);
j3 0:cdad7a9ef486 103
j3 0:cdad7a9ef486 104 /**
j3 0:cdad7a9ef486 105 * @brief Read the temperature from the device into a 16 bit value
j3 0:cdad7a9ef486 106 * @param[out] value - Raw temperature data on success
j3 0:cdad7a9ef486 107 * @return 0 on success, non-zero on failure
j3 0:cdad7a9ef486 108 */
j3 1:d4271ef9f37f 109 int32_t readTemperature(uint16_t &value);
j3 1:d4271ef9f37f 110
j3 1:d4271ef9f37f 111 /**
j3 1:d4271ef9f37f 112 * @brief Read the configuration register
j3 1:d4271ef9f37f 113 * @param config - Reference to Configuration type
j3 1:d4271ef9f37f 114 * @return 0 on success, non-zero on failure
j3 1:d4271ef9f37f 115 */
j3 1:d4271ef9f37f 116 int32_t readConfiguration(Config &config);
j3 1:d4271ef9f37f 117
j3 1:d4271ef9f37f 118 /**
j3 1:d4271ef9f37f 119 * @brief Write the configuration register with given configuration
j3 1:d4271ef9f37f 120 * @param config - Configuration to write
j3 1:d4271ef9f37f 121 * @return 0 on success, non-zero on failure
j3 1:d4271ef9f37f 122 */
j3 1:d4271ef9f37f 123 int32_t writeConfiguration(const Config config);
j3 0:cdad7a9ef486 124
j3 0:cdad7a9ef486 125 /**
j3 0:cdad7a9ef486 126 * @brief Read the THYST value from a specified device instance
j3 0:cdad7a9ef486 127 * @param[out] value - THYST register value on success
j3 0:cdad7a9ef486 128 * @return 0 on success, non-zero on failure
j3 0:cdad7a9ef486 129 */
j3 1:d4271ef9f37f 130 int32_t readTHYST(uint16_t &value);
j3 0:cdad7a9ef486 131
j3 0:cdad7a9ef486 132 /**
j3 0:cdad7a9ef486 133 * @brief Write the THYST to a device instance
j3 0:cdad7a9ef486 134 * @param value - 16-bit value to write
j3 0:cdad7a9ef486 135 * @return 0 on success, non-zero on failure
j3 0:cdad7a9ef486 136 */
j3 1:d4271ef9f37f 137 int32_t writeTHYST(const uint16_t value);
j3 1:d4271ef9f37f 138
j3 1:d4271ef9f37f 139 /**
j3 1:d4271ef9f37f 140 * @brief Read the TOS value from device
j3 1:d4271ef9f37f 141 * @param[out] value - TOS register value on success
j3 1:d4271ef9f37f 142 * @return 0 on success, non-zero on failure
j3 1:d4271ef9f37f 143 */
j3 1:d4271ef9f37f 144 int32_t readTOS(uint16_t &value);
j3 1:d4271ef9f37f 145
j3 1:d4271ef9f37f 146 /**
j3 1:d4271ef9f37f 147 * @brief Write the TOS register
j3 1:d4271ef9f37f 148 * @param value - 16-bit value to write
j3 1:d4271ef9f37f 149 * @return 0 on success, non-zero on failure
j3 1:d4271ef9f37f 150 */
j3 1:d4271ef9f37f 151 int32_t writeTOS(const uint16_t value);
j3 0:cdad7a9ef486 152
j3 0:cdad7a9ef486 153 /**
j3 0:cdad7a9ef486 154 * @brief Convert a raw temperature value into a float
j3 0:cdad7a9ef486 155 * @param rawTemp - raw temperature value to convert
j3 0:cdad7a9ef486 156 * @return the convereted value in degrees C
j3 0:cdad7a9ef486 157 */
j3 0:cdad7a9ef486 158 float toCelsius(uint32_t rawTemp);
j3 0:cdad7a9ef486 159
j3 0:cdad7a9ef486 160 /**
j3 0:cdad7a9ef486 161 * @brief Convert the passed in temperature in C to Fahrenheit
j3 0:cdad7a9ef486 162 * @param temperatureC Temperature in C to convert
j3 0:cdad7a9ef486 163 * @returns Returns the converted Fahrenheit value
j3 0:cdad7a9ef486 164 */
j3 0:cdad7a9ef486 165 float toFahrenheit(float temperatureC);
j3 1:d4271ef9f37f 166
j3 1:d4271ef9f37f 167 protected:
j3 1:d4271ef9f37f 168
j3 1:d4271ef9f37f 169 /**
j3 1:d4271ef9f37f 170 * @brief Write register of device at slave address
j3 1:d4271ef9f37f 171 * @param reg - Register address
j3 1:d4271ef9f37f 172 * @param value - Value to write
j3 1:d4271ef9f37f 173 * @return 0 on success, non-zero on failure
j3 1:d4271ef9f37f 174 */
j3 1:d4271ef9f37f 175 int32_t writeRegister(Registers reg, uint16_t value);
j3 1:d4271ef9f37f 176
j3 1:d4271ef9f37f 177 /**
j3 1:d4271ef9f37f 178 * @brief Read register of device at slave address
j3 1:d4271ef9f37f 179 * @param reg - Register address
j3 1:d4271ef9f37f 180 * @param[out] value - Read data on success
j3 1:d4271ef9f37f 181 * @return 0 on success, non-zero on failure
j3 1:d4271ef9f37f 182 */
j3 1:d4271ef9f37f 183 int32_t readRegister(Registers reg, uint16_t &value);
j3 0:cdad7a9ef486 184
j3 0:cdad7a9ef486 185 private:
j3 0:cdad7a9ef486 186 /// I2C object
j3 0:cdad7a9ef486 187 I2C m_i2c;
j3 0:cdad7a9ef486 188 /// Device slave address
j3 0:cdad7a9ef486 189 uint8_t m_writeAddress, m_readAddress;
j3 1:d4271ef9f37f 190 /// Over temperature shutdown interrupt pin
j3 1:d4271ef9f37f 191 DigitalIn m_os;
j3 0:cdad7a9ef486 192 };
j3 0:cdad7a9ef486 193
j3 0:cdad7a9ef486 194 #endif /* __MAX30205_H_ */