Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: N5110SPI SWSPI mbed
Fork of Nokia_FRDM by
Revision 0:01c7393abf13, committed 2014-04-08
- Comitter:
- esokic
- Date:
- Tue Apr 08 12:17:12 2014 +0000
- Child:
- 1:a174ab8a7339
- Commit message:
- Nokia 5110 displej test
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/N5110.lib Tue Apr 08 12:17:12 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/eencae/code/N5110/#adb79338d40f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Apr 08 12:17:12 2014 +0000
@@ -0,0 +1,22 @@
+#include "mbed.h"
+#include "N5110.h"
+
+//Deklaracija LCD objekta
+//N5110 lcd(VCC,SCE,RST,D/C,MOSI,SCLK,LED)
+N5110 lcd(dp4,dp24,dp23,dp25,dp2,dp6,dp18);
+
+//Digitalni izlaz za deaktivaciju LED buffera
+DigitalOut enable(dp14);
+
+int main()
+{
+ enable=1;
+
+ // inicijalizacija displeja
+ lcd.init();
+
+ // prikaz stringa
+ lcd.printString("Mi volimo PAI!",0,0);
+
+ while(1);
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Apr 08 12:17:12 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/6473597d706e \ No newline at end of file
