lel
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 |
diff -r fc27dc535ea9 -r a0b87cc796ad LM75B.h --- 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