Desvription: draw a circle and wrtie characters on the screen

Dependencies:   C12832 mbed

Fork of app-board-LCD by Chris Styles

main.cpp

Committer:
shiyilei
Date:
2014-10-30
Revision:
4:1c76cb543f04
Parent:
3:2db94ee076ee

File content as of revision 4:1c76cb543f04:

/****************************************
*file :LCD demo
*Creator :JacobShi
*Time:2014/10/30
*Desvription: draw a circle and
* wrtie characters on the screen
********************************** */


#include "mbed.h"
#include "C12832.h"
C12832 lcd(p5, p7, p6, p8, p11);

int main()
{
    int j=0;
    lcd.cls();
    lcd.locate(0,3);
    lcd.printf("This is the mbed LCD");

    lcd.circle(30,20,10,1);
    while(true) {   // this is the third thread
        

    }
}