blob: aaac40ac5718b16f9b5567f1af4c39eef05e06c4 (
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
25
26
27
28
29
30
31
32
|
/*
* Copyright 2020 Daniel Friesel
*
* SPDX-License-Identifier: BSD-2-Clause
*
* Driver for Sharp LS013B4DN04 transflective LCD, also available as
* "430BOOST-SHARP96" addon for the MSP430 LaunchPad series.
*/
#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
|