Robert Tomczak / Mbed 2 deprecated app-shield-LM75B_copy

Dependencies:   C12832 LM75B mbed

Fork of app-shield-LM75B by Chris Styles

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "LM75B.h"
00003 #include "C12832.h"
00004 
00005 // Using Arduino pin notation
00006 C12832 lcd(D11, D13, D12, D7, D10);
00007 LM75B sensor(D14,D15);
00008 
00009 int main ()
00010 {
00011     while (1) {
00012     // La méthode temp de LM75B renvoie la température
00013         wait(1.0);
00014     }
00015 }