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: N5110 SWSPI mbed
Fork of LV7_LCDtest by
main.cpp
- Committer:
- esokic
- Date:
- 2014-04-08
- Revision:
- 0:01c7393abf13
- Child:
- 1:a174ab8a7339
File content as of revision 0:01c7393abf13:
#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);
}
