for Arduino TFT LCD Screen 160x128

Dependents:   TFTLCDSCREEN Pong_ILI9163C

Fork of TFT_ILI9163C by _ peu605

Revision:
7:3dcb98ecf29f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TFT_ILI9163C_GENERIC.cpp	Sun Feb 01 15:36:04 2015 +0000
@@ -0,0 +1,27 @@
+#include "TFT_ILI9163C.h"
+#if defined(__MBED_GENERIC__)
+
+/**
+ * TFT_ILI9163C library for mbed generic
+ * 
+ * @author Copyright (c) 2014, .S.U.M.O.T.O.Y., coded by Max MC Costa
+ * https://github.com/sumotoy/TFT_ILI9163C
+ *
+ * @author modified by masuda, Masuda Naika
+ */
+
+//Serial pc(SERIAL_TX, SERIAL_RX);
+
+//constructors
+TFT_ILI9163C::TFT_ILI9163C(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName dc, PinName reset) 
+    : TFT_ILI9163C_BASE(mosi, miso, sclk, cs, dc, reset) {
+        
+        _resetPinName = reset;
+}
+
+TFT_ILI9163C::TFT_ILI9163C(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName dc) 
+    : TFT_ILI9163C_BASE(mosi, miso, sclk, cs, dc) {
+        
+        _resetPinName = NC;
+}
+#endif