9 years, 8 months ago.

FRDM K64F + LCD 5110

Hello!

I'm trying to use 5110 LCD with FRDM K64 and it doesn't show anything. Can anybody hint to me what to do? I also checked the display on other board and it works fine.

Wiring looks like:

https://drive.google.com/file/d/0B8Ca28cJlc3rbnlFTzFXM2NPM1k/edit?usp=sharing

program, using Craig A. Evans library

#include "mbed.h"
#include "N5110.h"


 //    VCC,SCE,RST,D/C,MOSI,SCLK,LED
N5110 lcd(PTB9,PTE25,PTE24,PTD0,PTD2,PTD1,PTC4);
int main() {
     
// initialise display 
lcd.init();
// print a string in top-left corner
lcd.printString("Hello, World!",0,0);
  
    while(1) {
    }
}
Be the first to answer this question.