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.
Dependencies: EthernetInterface LM75B mbed-rtos mbed
temperature.h
- Committer:
- RobinMechele
- Date:
- 2018-03-13
- Revision:
- 0:29eeb74e55c6
- Child:
- 6:4f13276fd1e2
File content as of revision 0:29eeb74e55c6:
#ifndef temperature_h #define temperature_h #include "mbed.h" #include "LM75B.h" class Temperature { public: explicit Temperature(); float getTemperature(); }; #endif