ST7735 (Red Tab) working on the BBC Microbit

Dependents:   SPI18TFT

Fork of ST7735_TFT by Jonne Valola

Files at this revision

API Documentation at this revision

Comitter:
smultron1977
Date:
Sun Dec 11 21:18:21 2011 +0000
Parent:
0:246f2fb5be59
Child:
2:b460f048ecf5
Commit message:
SPI frequency increased

Changed in this revision

ST7735_TFT.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ST7735_TFT.cpp	Sun Dec 11 21:05:52 2011 +0000
+++ b/ST7735_TFT.cpp	Sun Dec 11 21:18:21 2011 +0000
@@ -176,7 +176,7 @@
     
     // init SPI
     _spi.format(8,3);                 // 8 bit spi mode 3
-    _spi.frequency(4000000);         // 16Mhz SPI clock ... 15Mhz is maximum for display, but it seems to work
+    _spi.frequency(16000000);         // 16Mhz SPI clock ... 15Mhz is maximum for display, but it seems to work
     
     // reset exactly like in Arduino version
     _cs = 0;