Jan Kamidra / TS
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TS_porting.h Source File

TS_porting.h

00001 /*
00002 * Mbed implementation but teory is it can be used also on another platform, I hope.
00003 */
00004 
00005 #ifndef TS_PORTING_H
00006 #define TS_PORTING_H
00007 
00008 #include "mbed.h"
00009 
00010 class TouchScreenPort{
00011     protected:
00012     int getADCvalue(int pin);
00013     void setDigitalPin(int pin, int dir, int value);
00014 };
00015 #endif