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.
main.cpp@0:161cce598a67, 2017-09-13 (annotated)
- Committer:
- bhargavk1995
- Date:
- Wed Sep 13 00:08:39 2017 +0000
- Revision:
- 0:161cce598a67
hello world HW0
Who changed what in which revision?
| User | Revision | Line number | New 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 | } |