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
- Committer:
- FrankWeissenborn
- Date:
- 2010-12-23
- Revision:
- 3:20c91507bab6
- Parent:
- 2:086eed11a40b
- Child:
- 4:99738699678d
File content as of revision 3:20c91507bab6:
#include "mbed.h"
#include "DogM162.h"
DogM162 display(p22, p23, p24, p25, p19, p20, p18, p21); //(db0,db1,db2,db3),_rw(rw),_rs(rs),_enable(enable),_reset(reset)
int main() {
display.WriteString("Hallo");
wait(2);
display.Clear();
display.WriteString("Hallo22", 2 , DogM162::LINE_2);
}