printing text onto the screen

Dependencies:   mbed

main.cpp

Committer:
faruq
Date:
2010-08-20
Revision:
0:972f5da423fd

File content as of revision 0:972f5da423fd:

#include "mbed.h"
#include "MAX7456.h"

MAX7456 vo (p5,p6,p7,p8,p9);

DigitalOut myled(LED1);

int main() {

vo.format("P");
vo.cls();
vo.locate(1,1);
vo.printf("Hello world!");
vo.getc('h');

}