scrolling example code for SHARP LCD LS027B4DH01/LS027B7DH01, using AkiSpiLcd library

Dependencies:   AkiSpiLcd mbed

This is very basic library example to access a graphic LCD LS027B4DH01 or LS027B7DH01

Import libraryAkiSpiLcd

Basic library for SHARP LCD LS027B4DH01/LS027B7DH01

  • schematic example1: /media/uploads/k4zuki/akispilcd_v2.1m.sch.png
  • schematic example2: /media/uploads/k4zuki/2.7inchshield.sch.png
  • example1 photo: /media/uploads/k4zuki/2014-09-17_20.22.26.jpg /media/uploads/k4zuki/2014-09-17_20.22.48.jpg
  • example2 photo: /media/uploads/k4zuki/2014-04-29_13.17.57.jpg
  • example2 movie (mpeg4 movie):

Files at this revision

API Documentation at this revision

Comitter:
k4zuki
Date:
Sun May 04 04:07:10 2014 +0000
Parent:
1:be675380f70b
Child:
3:8dbf3336dc66
Commit message:
SPI clock speed is changed from 1MHz -> 10MHz

Changed in this revision

AkiSpiLcd.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/AkiSpiLcd.cpp	Sun May 04 03:34:28 2014 +0000
+++ b/AkiSpiLcd.cpp	Sun May 04 04:07:10 2014 +0000
@@ -9,7 +9,7 @@
 {
     _cs=0;
     _spi.format(8,0);
-    _spi.frequency(1000000);
+    _spi.frequency(10000000);
     comflag = modeflag = clearflag = 0;
     _disp=1;
 }