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.cpp
- Committer:
- RobinMechele
- Date:
- 2018-03-23
- Revision:
- 8:556a5738c2fa
- Parent:
- 0:29eeb74e55c6
File content as of revision 8:556a5738c2fa:
#include "temperature.h"
LM75B tempsensor(p28,p27);
Temperature::Temperature()
{
//Constructor
}
float Temperature::getTemperature()
{
return tempsensor.read();
}