e-paper whereabouts board program

Dependencies:   SDFileSystem mbed

Committer:
kohacraft
Date:
Sun May 01 03:12:28 2016 +0000
Revision:
0:e4c67c26ba3f
Child:
1:cb28911c7ba5
ver1.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kohacraft 0:e4c67c26ba3f 1 void initPort(); //initialize port
kohacraft 0:e4c67c26ba3f 2 void clrdisp( bool color ); //clear screen 0:Black 1:White
kohacraft 0:e4c67c26ba3f 3 void powerOff(); //turn off the power
kohacraft 0:e4c67c26ba3f 4 void powerOn(); //turn on the power
kohacraft 0:e4c67c26ba3f 5
kohacraft 0:e4c67c26ba3f 6 void dispbmp(FILE *fp ); //draw BMP(monochrome) file of fp(File Pointer) at locate(0,0)
kohacraft 0:e4c67c26ba3f 7 //BMP width and hight size is multiples of 8pixel
kohacraft 0:e4c67c26ba3f 8 void dispbmp(FILE *fp , int xpos , int ypos); //draw BMP file of fp(File Pointer) at locate(xpos,ypos)
kohacraft 0:e4c67c26ba3f 9 //BMP width and hight size is multiples of 8pixel
kohacraft 0:e4c67c26ba3f 10 //locate parametors are multiples of 8pixel