e-paper whereabouts board program

Dependencies:   SDFileSystem mbed

eink.h

Committer:
kohacraft
Date:
2016-05-01
Revision:
0:e4c67c26ba3f
Child:
1:cb28911c7ba5

File content as of revision 0:e4c67c26ba3f:

void initPort();    //initialize port
void clrdisp( bool color ); //clear screen 0:Black 1:White
void powerOff();    //turn off the power
void powerOn(); //turn on the power

void dispbmp(FILE *fp );    //draw BMP(monochrome) file of fp(File Pointer) at locate(0,0)
                            //BMP width and hight size is multiples of 8pixel
void dispbmp(FILE *fp , int xpos , int ypos);   //draw BMP file of fp(File Pointer) at locate(xpos,ypos)
                                                //BMP width and hight size is multiples of 8pixel
                                                //locate parametors are multiples of 8pixel