Frank Weissenborn / Mbed 2 deprecated DogMTest

Dependencies:   mbed DogM163

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 #include "DogM16x.h"
00004 
00005 DogM16x display(p22, p23, p24, p25, p19, p20, p18, p21, DogM16x_DogM163); //(db0,db1,db2,db3),_rw(rw),_rs(rs),_enable(enable),_reset(reset)
00006 
00007 
00008 int main() {
00009    
00010    
00011     display.WriteString("Hallo");
00012     wait(2);
00013     display.Clear();
00014     display.WriteString("Hallo22", 2 , DogM16x_LINE_TWO); 
00015 }
00016 
00017 
00018 
00019