A feature complete driver for the LM75B temperature sensor from NXP.

Fork of LM75B by Neil Thiessen

Committer:
neilt6
Date:
Thu Nov 07 17:42:41 2013 +0000
Revision:
13:27c19044ace6
Parent:
12:fc27dc535ea9
Child:
14:3a44310726fe
Minor improvements

Who changed what in which revision?

UserRevisionLine numberNew contents of line
neilt6 2:9ecc39b2ca70 1 /* LM75B Driver Library
neilt6 4:06676376766a 2 * Copyright (c) 2013 Neil Thiessen
neilt6 0:557a92280097 3 *
neilt6 3:9d68eed28bfb 4 * Licensed under the Apache License, Version 2.0 (the "License");
neilt6 3:9d68eed28bfb 5 * you may not use this file except in compliance with the License.
neilt6 3:9d68eed28bfb 6 * You may obtain a copy of the License at
neilt6 4:06676376766a 7 *
neilt6 4:06676376766a 8 * http://www.apache.org/licenses/LICENSE-2.0
neilt6 0:557a92280097 9 *
neilt6 3:9d68eed28bfb 10 * Unless required by applicable law or agreed to in writing, software
neilt6 3:9d68eed28bfb 11 * distributed under the License is distributed on an "AS IS" BASIS,
neilt6 3:9d68eed28bfb 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
neilt6 3:9d68eed28bfb 13 * See the License for the specific language governing permissions and
neilt6 3:9d68eed28bfb 14 * limitations under the License.
neilt6 0:557a92280097 15 */
neilt6 0:557a92280097 16
neilt6 0:557a92280097 17 #ifndef LM75B_H
neilt6 0:557a92280097 18 #define LM75B_H
neilt6 0:557a92280097 19
neilt6 0:557a92280097 20 #include "mbed.h"
neilt6 0:557a92280097 21
neilt6 0:557a92280097 22 /** LM75B class.
neilt6 0:557a92280097 23 * Used for controlling an LM75B temperature sensor connected via I2C.
neilt6 0:557a92280097 24 *
neilt6 0:557a92280097 25 * Example:
neilt6 0:557a92280097 26 * @code
neilt6 0:557a92280097 27 * #include "mbed.h"
neilt6 0:557a92280097 28 * #include "LM75B.h"
neilt6 0:557a92280097 29 *
neilt6 12:fc27dc535ea9 30 * //Create an LM75B object at the default address (ADDRESS_0)
neilt6 12:fc27dc535ea9 31 * LM75B sensor(p28, p27);
neilt6 0:557a92280097 32 *
neilt6 9:74b44a27fa40 33 * int main()
neilt6 9:74b44a27fa40 34 * {
neilt6 9:74b44a27fa40 35 * //Try to open the LM75B
neilt6 9:74b44a27fa40 36 * if (sensor.open()) {
neilt6 9:74b44a27fa40 37 * printf("Device detected!\n");
neilt6 9:74b44a27fa40 38 *
neilt6 9:74b44a27fa40 39 * while (1) {
neilt6 12:fc27dc535ea9 40 * //Print the current temperature
neilt6 12:fc27dc535ea9 41 * printf("Temp = %.3f\n", (float)sensor);
neilt6 0:557a92280097 42 *
neilt6 9:74b44a27fa40 43 * //Sleep for 0.5 seconds
neilt6 9:74b44a27fa40 44 * wait(0.5);
neilt6 9:74b44a27fa40 45 * }
neilt6 9:74b44a27fa40 46 * } else {
neilt6 12:fc27dc535ea9 47 * error("Device not detected!\n");
neilt6 0:557a92280097 48 * }
neilt6 0:557a92280097 49 * }
neilt6 0:557a92280097 50 * @endcode
neilt6 0:557a92280097 51 */
neilt6 0:557a92280097 52 class LM75B
neilt6 0:557a92280097 53 {
neilt6 0:557a92280097 54 public:
neilt6 2:9ecc39b2ca70 55 /** Represents the different I2C address possibilities for the LM75B
neilt6 2:9ecc39b2ca70 56 */
neilt6 2:9ecc39b2ca70 57 enum Address {
neilt6 2:9ecc39b2ca70 58 ADDRESS_0 = (0x48 << 1), /**< A[2:0] pins = 000 */
neilt6 2:9ecc39b2ca70 59 ADDRESS_1 = (0x49 << 1), /**< A[2:0] pins = 001 */
neilt6 2:9ecc39b2ca70 60 ADDRESS_2 = (0x4A << 1), /**< A[2:0] pins = 010 */
neilt6 2:9ecc39b2ca70 61 ADDRESS_3 = (0x4B << 1), /**< A[2:0] pins = 011 */
neilt6 2:9ecc39b2ca70 62 ADDRESS_4 = (0x4C << 1), /**< A[2:0] pins = 100 */
neilt6 2:9ecc39b2ca70 63 ADDRESS_5 = (0x4D << 1), /**< A[2:0] pins = 101 */
neilt6 2:9ecc39b2ca70 64 ADDRESS_6 = (0x4E << 1), /**< A[2:0] pins = 110 */
neilt6 2:9ecc39b2ca70 65 ADDRESS_7 = (0x4F << 1) /**< A[2:0] pins = 111 */
neilt6 2:9ecc39b2ca70 66 };
neilt6 2:9ecc39b2ca70 67
neilt6 2:9ecc39b2ca70 68 /** Represents the power mode of the LM75B
neilt6 2:9ecc39b2ca70 69 */
neilt6 2:9ecc39b2ca70 70 enum PowerMode {
neilt6 2:9ecc39b2ca70 71 POWER_NORMAL, /**< Chip is enabled and samples every 100ms */
neilt6 2:9ecc39b2ca70 72 POWER_SHUTDOWN /**< Chip is in low-power shutdown mode */
neilt6 2:9ecc39b2ca70 73 };
neilt6 2:9ecc39b2ca70 74
neilt6 2:9ecc39b2ca70 75 /** Represents OS pin mode of the LM75B
neilt6 2:9ecc39b2ca70 76 */
neilt6 2:9ecc39b2ca70 77 enum OSMode {
neilt6 2:9ecc39b2ca70 78 OS_COMPARATOR, /**< OS is asserted when the temperature reaches the alert threshold, and de-asserted when the temperature drops below the alert hysteresis threshold */
neilt6 2:9ecc39b2ca70 79 OS_INTERRUPT /**< OS is asserted when the temperature reaches the alert threshold, or drops below the alert hysteresis threshold, and only de-asserted when a register has been read */
neilt6 2:9ecc39b2ca70 80 };
neilt6 2:9ecc39b2ca70 81
neilt6 2:9ecc39b2ca70 82 /** Represents OS pin polarity of the LM75B
neilt6 2:9ecc39b2ca70 83 */
neilt6 2:9ecc39b2ca70 84 enum OSPolarity {
neilt6 2:9ecc39b2ca70 85 OS_ACTIVE_LOW, /**< OS is a logic low when asserted, and a logic high when de-asserted */
neilt6 2:9ecc39b2ca70 86 OS_ACTIVE_HIGH /**< OS is a logic high when asserted, and a logic low when de-asserted */
neilt6 2:9ecc39b2ca70 87 };
neilt6 2:9ecc39b2ca70 88
neilt6 2:9ecc39b2ca70 89 /** Represents OS pin fault queue length of the LM75B
neilt6 2:9ecc39b2ca70 90 */
neilt6 2:9ecc39b2ca70 91 enum OSFaultQueue {
neilt6 2:9ecc39b2ca70 92 OS_FAULT_QUEUE_1, /**< OS is asserted after 1 fault */
neilt6 2:9ecc39b2ca70 93 OS_FAULT_QUEUE_2, /**< OS is asserted after 2 consecutive faults */
neilt6 2:9ecc39b2ca70 94 OS_FAULT_QUEUE_4, /**< OS is asserted after 4 consecutive faults */
neilt6 2:9ecc39b2ca70 95 OS_FAULT_QUEUE_6 /**< OS is asserted after 6 consecutive faults */
neilt6 2:9ecc39b2ca70 96 };
neilt6 2:9ecc39b2ca70 97
neilt6 0:557a92280097 98 /** Create an LM75B object connected to the specified I2C pins with the specified I2C slave address
neilt6 0:557a92280097 99 *
neilt6 7:bebde8098fca 100 * @param sda The I2C data pin.
neilt6 7:bebde8098fca 101 * @param scl The I2C clock pin.
neilt6 12:fc27dc535ea9 102 * @param addr The I2C slave address (defaults to ADDRESS_0).
neilt6 0:557a92280097 103 */
neilt6 12:fc27dc535ea9 104 LM75B(PinName sda, PinName scl, Address addr = ADDRESS_0);
neilt6 2:9ecc39b2ca70 105
neilt6 10:51d149fa47bd 106 /** Probe for the LM75B and reset it to default configuration if present
neilt6 9:74b44a27fa40 107 *
neilt6 9:74b44a27fa40 108 * @returns
neilt6 9:74b44a27fa40 109 * 'true' if the device exists on the bus,
neilt6 9:74b44a27fa40 110 * 'false' if the device doesn't exist on the bus.
neilt6 9:74b44a27fa40 111 */
neilt6 13:27c19044ace6 112 bool open();
neilt6 9:74b44a27fa40 113
neilt6 0:557a92280097 114 /** Get the current power mode of the LM75B
neilt6 0:557a92280097 115 *
neilt6 6:6b8a9d1ad49a 116 * @returns The current power mode as a PowerMode enum.
neilt6 0:557a92280097 117 */
neilt6 13:27c19044ace6 118 LM75B::PowerMode powerMode();
neilt6 2:9ecc39b2ca70 119
neilt6 0:557a92280097 120 /** Set the power mode of the LM75B
neilt6 0:557a92280097 121 *
neilt6 6:6b8a9d1ad49a 122 * @param mode The new power mode as a PowerMode enum.
neilt6 0:557a92280097 123 */
neilt6 8:2b797c309258 124 void powerMode(PowerMode mode);
neilt6 2:9ecc39b2ca70 125
neilt6 0:557a92280097 126 /** Get the current OS pin mode of the LM75B
neilt6 0:557a92280097 127 *
neilt6 6:6b8a9d1ad49a 128 * @returns The current OS pin mode as an OSMode enum.
neilt6 0:557a92280097 129 */
neilt6 13:27c19044ace6 130 LM75B::OSMode osMode();
neilt6 2:9ecc39b2ca70 131
neilt6 0:557a92280097 132 /** Set the OS pin mode of the LM75B
neilt6 0:557a92280097 133 *
neilt6 6:6b8a9d1ad49a 134 * @param mode The new OS pin mode as an OSMode enum.
neilt6 0:557a92280097 135 */
neilt6 8:2b797c309258 136 void osMode(OSMode mode);
neilt6 2:9ecc39b2ca70 137
neilt6 0:557a92280097 138 /** Get the current OS pin polarity of the LM75B
neilt6 0:557a92280097 139 *
neilt6 6:6b8a9d1ad49a 140 * @returns The current OS pin polarity as an OSPolarity enum.
neilt6 0:557a92280097 141 */
neilt6 13:27c19044ace6 142 LM75B::OSPolarity osPolarity();
neilt6 2:9ecc39b2ca70 143
neilt6 0:557a92280097 144 /** Set the OS pin polarity of the LM75B
neilt6 0:557a92280097 145 *
neilt6 6:6b8a9d1ad49a 146 * @param polarity The new OS pin polarity as an OSPolarity enum.
neilt6 0:557a92280097 147 */
neilt6 8:2b797c309258 148 void osPolarity(OSPolarity polarity);
neilt6 2:9ecc39b2ca70 149
neilt6 0:557a92280097 150 /** Get the current OS pin fault queue length of the LM75B
neilt6 0:557a92280097 151 *
neilt6 6:6b8a9d1ad49a 152 * @returns The current OS pin fault queue length as an OSFaultQueue enum.
neilt6 0:557a92280097 153 */
neilt6 13:27c19044ace6 154 LM75B::OSFaultQueue osFaultQueue();
neilt6 2:9ecc39b2ca70 155
neilt6 0:557a92280097 156 /** Set the OS pin fault queue length of the LM75B
neilt6 0:557a92280097 157 *
neilt6 6:6b8a9d1ad49a 158 * @param queue The new OS pin fault queue length as an OSFaultQueue enum.
neilt6 0:557a92280097 159 */
neilt6 8:2b797c309258 160 void osFaultQueue(OSFaultQueue queue);
neilt6 2:9ecc39b2ca70 161
neilt6 0:557a92280097 162 /** Get the current alert temperature threshold of the LM75B
neilt6 0:557a92280097 163 *
neilt6 6:6b8a9d1ad49a 164 * @returns The current alert temperature threshold in °C.
neilt6 0:557a92280097 165 */
neilt6 13:27c19044ace6 166 float alertTemp();
neilt6 2:9ecc39b2ca70 167
neilt6 0:557a92280097 168 /** Set the alert temperature threshold of the LM75B
neilt6 0:557a92280097 169 *
neilt6 6:6b8a9d1ad49a 170 * @param temp The new alert temperature threshold in °C.
neilt6 0:557a92280097 171 */
neilt6 8:2b797c309258 172 void alertTemp(float temp);
neilt6 2:9ecc39b2ca70 173
neilt6 0:557a92280097 174 /** Get the current alert temperature hysteresis threshold of the LM75B
neilt6 0:557a92280097 175 *
neilt6 6:6b8a9d1ad49a 176 * @returns The current alert temperature hysteresis threshold in °C.
neilt6 0:557a92280097 177 */
neilt6 13:27c19044ace6 178 float alertHyst();
neilt6 2:9ecc39b2ca70 179
neilt6 0:557a92280097 180 /** Set the alert temperature hysteresis threshold of the LM75B
neilt6 0:557a92280097 181 *
neilt6 6:6b8a9d1ad49a 182 * @param temp The new alert temperature hysteresis threshold in °C.
neilt6 0:557a92280097 183 */
neilt6 8:2b797c309258 184 void alertHyst(float temp);
neilt6 2:9ecc39b2ca70 185
neilt6 0:557a92280097 186 /** Get the current temperature measurement of the LM75B
neilt6 0:557a92280097 187 *
neilt6 6:6b8a9d1ad49a 188 * @returns The current temperature measurement in °C.
neilt6 0:557a92280097 189 */
neilt6 13:27c19044ace6 190 float temp();
neilt6 0:557a92280097 191
neilt6 12:fc27dc535ea9 192 #ifdef MBED_OPERATORS
neilt6 12:fc27dc535ea9 193 /** A shorthand for temp()
neilt6 12:fc27dc535ea9 194 *
neilt6 12:fc27dc535ea9 195 * @returns The current temperature measurement in °C.
neilt6 12:fc27dc535ea9 196 */
neilt6 13:27c19044ace6 197 operator float();
neilt6 12:fc27dc535ea9 198 #endif
neilt6 12:fc27dc535ea9 199
neilt6 0:557a92280097 200 private:
neilt6 8:2b797c309258 201 //I2C register addresses
neilt6 8:2b797c309258 202 enum Register {
neilt6 8:2b797c309258 203 REG_TEMP = 0x00,
neilt6 8:2b797c309258 204 REG_CONF = 0x01,
neilt6 8:2b797c309258 205 REG_THYST = 0x02,
neilt6 8:2b797c309258 206 REG_TOS = 0x03
neilt6 8:2b797c309258 207 };
neilt6 8:2b797c309258 208
neilt6 8:2b797c309258 209 //Member variables
neilt6 8:2b797c309258 210 I2C m_I2C;
neilt6 13:27c19044ace6 211 const int m_ADDR;
neilt6 8:2b797c309258 212
neilt6 8:2b797c309258 213 //Internal functions
neilt6 8:2b797c309258 214 char read8(char reg);
neilt6 8:2b797c309258 215 void write8(char reg, char data);
neilt6 8:2b797c309258 216 unsigned short read16(char reg);
neilt6 8:2b797c309258 217 void write16(char reg, unsigned short data);
neilt6 8:2b797c309258 218 float readAlertTempHelper(char reg);
neilt6 8:2b797c309258 219 void writeAlertTempHelper(char reg, float temp);
neilt6 0:557a92280097 220 };
neilt6 0:557a92280097 221
neilt6 5:f8b36d66b768 222 #endif