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.
Fork of LM75B by
Revision 17:a0b87cc796ad, committed 2017-03-23
- Comitter:
- gimohd
- Date:
- Thu Mar 23 12:51:11 2017 +0000
- Parent:
- 12:fc27dc535ea9
- Commit message:
- changed some functions to protected
Changed in this revision
| LM75B.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/LM75B.h Mon Sep 16 21:32:18 2013 +0000
+++ b/LM75B.h Thu Mar 23 12:51:11 2017 +0000
@@ -188,6 +188,8 @@
* @returns The current temperature measurement in °C.
*/
float temp(void);
+
+ unsigned short read16(char reg);
#ifdef MBED_OPERATORS
/** A shorthand for temp()
@@ -215,10 +217,10 @@
//Internal functions
char read8(char reg);
void write8(char reg, char data);
- unsigned short read16(char reg);
void write16(char reg, unsigned short data);
float readAlertTempHelper(char reg);
void writeAlertTempHelper(char reg, float temp);
};
+
#endif
