SPI based library for the ST7735 LCD controller.

Dependents:   RayCastingEngine RETRO_LCD_PerformanceTest RETRO_loop_test RETRO_RickGame ... more

Files at this revision

API Documentation at this revision

Comitter:
taylorza
Date:
Sun Oct 05 22:26:57 2014 +0000
Parent:
5:21c987ee68d2
Child:
7:f39c980a589c
Commit message:
Increased SPI frequency to 15Mhz

Changed in this revision

LCD_ST7735.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/LCD_ST7735.cpp	Sun Oct 05 22:24:22 2014 +0000
+++ b/LCD_ST7735.cpp	Sun Oct 05 22:26:57 2014 +0000
@@ -16,7 +16,7 @@
         _spi(mosiPin, misoPin, clkPin)        
 {        
     _spi.format(8, 3);
-    _spi.frequency(8000000);
+    _spi.frequency(15000000);
     
     initDisplay();
     clearScreen();