eink paper ED060SC4(LF) にSD内の01.bmpを表示させます

Dependencies:   SDFileSystem mbed

Committer:
kohacraft
Date:
Sun Feb 14 09:02:57 2016 +0000
Revision:
1:8c9178c52155
Parent:
0:97881c3945b1
?????????OFF???

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kohacraft 0:97881c3945b1 1 #define LE 0x01
kohacraft 0:97881c3945b1 2 #define OE 0x02
kohacraft 0:97881c3945b1 3 #define NC10 0x04
kohacraft 0:97881c3945b1 4 #define SPH 0x08
kohacraft 0:97881c3945b1 5 #define GMODE 0x10
kohacraft 0:97881c3945b1 6 #define SPV 0x20
kohacraft 0:97881c3945b1 7 #define CKV 0x40
kohacraft 0:97881c3945b1 8 #define EN 0x80
kohacraft 0:97881c3945b1 9
kohacraft 0:97881c3945b1 10 //CLピンの変更
kohacraft 0:97881c3945b1 11 void setCL( bool state );
kohacraft 0:97881c3945b1 12
kohacraft 0:97881c3945b1 13 //制御バスピン変更
kohacraft 0:97881c3945b1 14 void setContBas( char mask , bool state );
kohacraft 0:97881c3945b1 15
kohacraft 0:97881c3945b1 16 //データバスピン変更
kohacraft 0:97881c3945b1 17 void setDataBas( bool d7 , bool d6 , bool d5 , bool d4 , bool d3 , bool d2 , bool d1 , bool d0 );
kohacraft 0:97881c3945b1 18