blob: cd99ad7beb0f516063113b2312a8820d037cc9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef SHARP96_H
#define SHARP96_H
class Sharp96 {
private:
Sharp96(const Sharp96 ©);
unsigned char txbuf[2];
unsigned char vcom;
unsigned char swap_bits(unsigned char byte);
public:
Sharp96() : vcom(0) {}
void setup();
void powerOn();
void powerOff();
void clear();
void writeLine(unsigned char line_no, unsigned char* data);
void toggleVCOM();
};
extern Sharp96 sharp96;
#endif
|