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

Revision:
0:083b72141582
Child:
1:8e117fc4a3ac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sun Mar 23 03:04:48 2014 +0000
@@ -0,0 +1,20 @@
+#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)
+    {   };
+}