Stephen Ralph / Mbed 2 deprecated CryptoPenCreateKey

Dependencies:   mbed 4DGL-uLCD-SE SDFileSystem PinDetect

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TMP36.h Source File

TMP36.h

00001 #ifndef ADD_H
00002 #define ADD_H
00003 class TMP36{
00004     public:
00005     TMP36(PinName pin);
00006     TMP36();
00007     float read();
00008     private:
00009     //class sets up the AnalogIn pin
00010     AnalogIn _pin;
00011 };
00012 #endif