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-15
- Revision:
- 2:086eed11a40b
- Parent:
- 1:95977a39e8f2
- Child:
- 3:20c91507bab6
File content as of revision 2:086eed11a40b:
#include "mbed.h"
#include "DogM162.h"
DogM162 display(p22, p23, p24, p25, p19, p18, p20, p21);
int main() {
display.WriteCharacter('c');
display.WriteString("Hallo");
wait(2);
display.Clear();
display.WriteString("Hallo22", 2 , DogM162::LINE_2);
while (1) {
}
}