Nokia 5110 test stm32 nucleo pins working with Chris Yang's NOKIA_5110 library

Dependencies:   NOKIA_5110 mbed

Fork of Nokia5110_KL25Z by Thiha Electronics

main.cpp

Committer:
ThihaElectronics
Date:
2014-03-23
Revision:
0:083b72141582
Child:
1:8e117fc4a3ac

File content as of revision 0:083b72141582:

#include "mbed.h"
#include "NOKIA_5110.h"

int main() {
    
    
/*  PinName mosi;
    PinName miso;
    PinName sclk;
    PinName dc;
    PinName sce;
    PinName rst;*/
    
    LcdPins myLcdPins = { PTC6, NC, PTC5, PTD2, PTD0, PTD3 };
    NokiaLcd myLcd( myLcdPins );    // SPI is started here (8-bits, mode 1)
    myLcd.InitLcd();                // LCD is reset and DDRAM is cleared
    myLcd.DrawString("Hello");   
    while(1)
    {   };
}