Wrapped version of the ILI9341 graphics library with some MBED tweaks

Dependencies:   SDFileSystem SPI_TFT_ILI9341 TFT_fonts

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tft.h Source File

tft.h

00001 #ifndef __TFT_H__
00002 #define __TFT_H__
00003 
00004 #include "SPI_TFT_ILI9341.h"
00005 #include "SDFileSystem.h"
00006 
00007 class TFT
00008     : public SPI_TFT_ILI9341
00009 {
00010 public:
00011     TFT();
00012     void test();
00013     
00014 protected:
00015     void init();
00016 
00017     // the SD-connector is connected to SPI pin 11-13 
00018     SDFileSystem    m_cSD;
00019 };
00020 
00021 #endif // __TFT_H__