Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed_Shield_LCD_Temperature mbed_Shield_Temperature
Fork of TMP102 by
Diff: TMP102.cpp
- Revision:
- 4:5e5d818d98fa
- Parent:
- 3:694792b93731
--- a/TMP102.cpp Thu Mar 07 10:44:42 2013 +0000
+++ b/TMP102.cpp Tue Apr 01 13:54:59 2014 +0000
@@ -1,4 +1,3 @@
-
/*
Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
@@ -43,7 +42,7 @@
m_i2c.write(m_addr, &tempRegAddr, 1); //Pointer to the temperature register
char reg[2] = {0,0};
- m_i2c.read(m_addr, reg, 2); //Rea
+ m_i2c.read(m_addr, reg, 2); //Read
int16_t res = ((int8_t)reg[0] << 4) | ((uint8_t)reg[1] >> 4);
