LM75B Temperature Sensor
The LM75B is an I2C digital temperature sensor that is available in various packages. It has a range of -55^C to +125^C, with a 0.125C resolution.
Featured on the mbed application board
![]() | ![]() |
Hello World!¶
| LM75 | mbed |
| Vcc | Vout |
| SDA | p28 |
| SCL | p27 |
| Gnd | Gnd |
» Import this program
#include "mbed.h" #include "LM75B.h" LM75B tmp(p28,p27); int main () { while (1) { printf("%.2f\n",tmp.read()); wait(1.0); } }
Library¶
» Import this library into a programLM75B
A simply library for the LM75B I2C temperature sensor





Please login to post comments.