Code to run the cheap 2.4" TFT made by mcufriend.com on the STM nucleo. No modifications required, this plugs into the arduino header.

Dependents:   ST7735_V2_STM32F407

Fork of TFTLCD_8bit by Thiha Electronics

Revision:
10:69571adcfad5
Parent:
4:3ac4239f6c9c
Child:
12:d0978272a340
--- a/ssd1289.cpp	Fri Dec 07 16:14:13 2012 +0000
+++ b/ssd1289.cpp	Tue Dec 11 03:18:43 2012 +0000
@@ -141,3 +141,8 @@
     WriteCmdData( 0x4f, y1 );
     WriteCmd( 0x22 );
 }
+
+void SSD1289_LCD::SetPixelColor( unsigned short color )
+{
+    WriteData( color );
+}