Bhargav Kalluri / Mbed 2 deprecated mbed_blinky

Dependencies:   TextLCD mbed

Committer:
bhargavk1995
Date:
Wed Sep 13 00:08:39 2017 +0000
Revision:
0:161cce598a67
hello world HW0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bhargavk1995 0:161cce598a67 1 #include "mbed.h"
bhargavk1995 0:161cce598a67 2 #include "TextLCD.h"
bhargavk1995 0:161cce598a67 3
bhargavk1995 0:161cce598a67 4 TextLCD lcd(p15, p16, p17, p18, p19, p20, TextLCD::LCD16x2);
bhargavk1995 0:161cce598a67 5
bhargavk1995 0:161cce598a67 6 int main() {
bhargavk1995 0:161cce598a67 7 lcd.printf("Jai Balayya!\n");
bhargavk1995 0:161cce598a67 8 lcd.printf("Jai Jai Balayya!\n");
bhargavk1995 0:161cce598a67 9 }