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: mbed tsi_sensor TextLCD SLCD
main.cpp
- Committer:
- simon
- Date:
- 2010-12-04
- Revision:
- 2:ad0b044d0a10
- Parent:
- 1:7418a52375a0
- Child:
- 3:a7b991611a74
File content as of revision 2:ad0b044d0a10:
// Hello World! for the TextLCD
#include "mbed.h"
#include "TextLCD.h"
TextLCD lcd(p15, p16, p17, p18, p19, p20); // rs, e, d4-d7
int main() {
lcd.printf("Hello World!\n");
}