Atsuhiko Kogure / Mbed 2 deprecated mmain

Dependencies:   TextLCD mbed pop3

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "TextLCD.h"
00003 
00004 TextLCD lcd(p24, p26, p27, p28, p29, p30);
00005 
00006 int main(void) {
00007     lcd.cls();
00008     lcd.locate(0, 0);
00009     lcd.printf("StarBoard Orange");
00010     lcd.locate(0, 1);
00011     lcd.printf("mbed NXP LPC1768");
00012     return 0;
00013 }
00014