Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
11 years, 2 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) {
}
}