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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
/*********************************************************************
This is an Arduino library for our Monochrome SHARP Memory Displays
Pick one up today in the adafruit shop!
------> http://www.adafruit.com/products/1393
These displays use SPI to communicate, 3 pins are required to
interface
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
Written by Limor Fried/Ladyada for Adafruit Industries.
BSD license, check license.txt for more information
All text above, and the splash screen must be included in any redistribution
*********************************************************************/
#include "Adafruit_SharpMem.h"
#ifndef _swap_int16_t
#define _swap_int16_t(a, b) { int16_t t = a; a = b; b = t; }
#endif
#ifndef _swap_uint16_t
#define _swap_uint16_t(a, b) { uint16_t t = a; a = b; b = t; }
#endif
/**************************************************************************
Sharp Memory Display Connector
-----------------------------------------------------------------------
Pin Function Notes
=== ============== ===============================
1 VIN 3.3-5.0V (into LDO supply)
2 3V3 3.3V out
3 GND
4 SCLK Serial Clock
5 MOSI Serial Data Input
6 CS Serial Chip Select
9 EXTMODE COM Inversion Select (Low = SW clock/serial)
7 EXTCOMIN External COM Inversion Signal
8 DISP Display On(High)/Off(Low)
**************************************************************************/
#define SHARPMEM_BIT_WRITECMD (0x80)
#define SHARPMEM_BIT_VCOM (0x40)
#define SHARPMEM_BIT_CLEAR (0x20)
#define TOGGLE_VCOM do { _sharpmem_vcom = _sharpmem_vcom ? 0x00 : SHARPMEM_BIT_VCOM; } while(0);
byte *sharpmem_buffer;
/* ************* */
/* CONSTRUCTORS */
/* ************* */
Adafruit_SharpMem::Adafruit_SharpMem(uint8_t clk, uint8_t mosi, uint8_t ss, uint16_t width, uint16_t height) :
Adafruit_GFX(width, height) {
_clk = clk;
_mosi = mosi;
_ss = ss;
}
boolean Adafruit_SharpMem::begin(void) {
// Set pin state before direction to make sure they start this way (no glitching)
digitalWrite(_ss, HIGH);
digitalWrite(_clk, LOW);
digitalWrite(_mosi, HIGH);
pinMode(_ss, OUTPUT);
pinMode(_clk, OUTPUT);
pinMode(_mosi, OUTPUT);
#if defined(USE_FAST_PINIO)
clkport = portOutputRegister(digitalPinToPort(_clk));
clkpinmask = digitalPinToBitMask(_clk);
dataport = portOutputRegister(digitalPinToPort(_mosi));
datapinmask = digitalPinToBitMask(_mosi);
#endif
// Set the vcom bit to a defined state
_sharpmem_vcom = SHARPMEM_BIT_VCOM;
sharpmem_buffer = (byte *)malloc((WIDTH * HEIGHT) / 8);
if (!sharpmem_buffer) return false;
setRotation(0);
return true;
}
/* *************** */
/* PRIVATE METHODS */
/* *************** */
/**************************************************************************/
/*!
@brief Sends a single byte in pseudo-SPI.
*/
/**************************************************************************/
void Adafruit_SharpMem::sendbyte(uint8_t data)
{
uint8_t i = 0;
// LCD expects LSB first
#if defined(USE_FAST_PINIO)
for (i=0; i<8; i++) {
// Make sure clock starts low
*clkport &= ~clkpinmask;
if (data & 0x80)
*dataport |= datapinmask;
else
*dataport &= ~datapinmask;
// Clock is active high
*clkport |= clkpinmask;
data <<= 1;
}
*clkport &= ~clkpinmask;
#else
for (i=0; i<8; i++) {
// Make sure clock starts low
digitalWrite(_clk, LOW);
if (data & 0x80)
digitalWrite(_mosi, HIGH);
else
digitalWrite(_mosi, LOW);
// Clock is active high
digitalWrite(_clk, HIGH);
data <<= 1;
}
// Make sure clock ends low
digitalWrite(_clk, LOW);
#endif
}
void Adafruit_SharpMem::sendbyteLSB(uint8_t data)
{
uint8_t i = 0;
// LCD expects LSB first
#if defined(USE_FAST_PINIO)
for (i=0; i<8; i++) {
// Make sure clock starts low
*clkport &= ~clkpinmask;
if (data & 0x01)
*dataport |= datapinmask;
else
*dataport &= ~datapinmask;
// Clock is active high
*clkport |= clkpinmask;
data >>= 1;
}
// Make sure clock ends low
*clkport &= ~clkpinmask;
#else
for (i=0; i<8; i++)
{
// Make sure clock starts low
digitalWrite(_clk, LOW);
if (data & 0x01)
digitalWrite(_mosi, HIGH);
else
digitalWrite(_mosi, LOW);
// Clock is active high
digitalWrite(_clk, HIGH);
data >>= 1;
}
// Make sure clock ends low
digitalWrite(_clk, LOW);
#endif
}
/* ************** */
/* PUBLIC METHODS */
/* ************** */
// 1<<n is a costly operation on AVR -- table usu. smaller & faster
static const uint8_t PROGMEM
set[] = { 1, 2, 4, 8, 16, 32, 64, 128 },
clr[] = { (uint8_t)~1 , (uint8_t)~2 , (uint8_t)~4 , (uint8_t)~8,
(uint8_t)~16, (uint8_t)~32, (uint8_t)~64, (uint8_t)~128 };
/**************************************************************************/
/*!
@brief Draws a single pixel in image buffer
@param[in] x
The x position (0 based)
@param[in] y
The y position (0 based)
*/
/**************************************************************************/
void Adafruit_SharpMem::drawPixel(int16_t x, int16_t y, uint16_t color)
{
if((x < 0) || (x >= _width) || (y < 0) || (y >= _height)) return;
switch(rotation) {
case 1:
_swap_int16_t(x, y);
x = WIDTH - 1 - x;
break;
case 2:
x = WIDTH - 1 - x;
y = HEIGHT - 1 - y;
break;
case 3:
_swap_int16_t(x, y);
y = HEIGHT - 1 - y;
break;
}
if(color) {
sharpmem_buffer[(y * WIDTH + x) / 8] |=
pgm_read_byte(&set[x & 7]);
} else {
sharpmem_buffer[(y * WIDTH + x) / 8] &=
pgm_read_byte(&clr[x & 7]);
}
}
/**************************************************************************/
/*!
@brief Gets the value (1 or 0) of the specified pixel from the buffer
@param[in] x
The x position (0 based)
@param[in] y
The y position (0 based)
@return 1 if the pixel is enabled, 0 if disabled
*/
/**************************************************************************/
uint8_t Adafruit_SharpMem::getPixel(uint16_t x, uint16_t y)
{
if((x >= _width) || (y >= _height)) return 0; // <0 test not needed, unsigned
switch(rotation) {
case 1:
_swap_uint16_t(x, y);
x = WIDTH - 1 - x;
break;
case 2:
x = WIDTH - 1 - x;
y = HEIGHT - 1 - y;
break;
case 3:
_swap_uint16_t(x, y);
y = HEIGHT - 1 - y;
break;
}
return sharpmem_buffer[(y * WIDTH + x) / 8] &
pgm_read_byte(&set[x & 7]) ? 1 : 0;
}
/**************************************************************************/
/*!
@brief Clears the screen
*/
/**************************************************************************/
void Adafruit_SharpMem::clearDisplay()
{
memset(sharpmem_buffer, 0xff, (WIDTH * HEIGHT) / 8);
// Send the clear screen command rather than doing a HW refresh (quicker)
digitalWrite(_ss, HIGH);
sendbyte(_sharpmem_vcom | SHARPMEM_BIT_CLEAR);
sendbyteLSB(0x00);
TOGGLE_VCOM;
digitalWrite(_ss, LOW);
}
/**************************************************************************/
/*!
@brief Renders the contents of the pixel buffer on the LCD
*/
/**************************************************************************/
void Adafruit_SharpMem::refresh(void)
{
uint16_t i, totalbytes, currentline, oldline;
totalbytes = (WIDTH * HEIGHT) / 8;
// Send the write command
digitalWrite(_ss, HIGH);
sendbyte(SHARPMEM_BIT_WRITECMD | _sharpmem_vcom);
TOGGLE_VCOM;
// Send the address for line 1
oldline = currentline = 1;
sendbyteLSB(currentline);
// Send image buffer
for (i=0; i<totalbytes; i++)
{
sendbyteLSB(sharpmem_buffer[i]);
currentline = ((i+1)/(WIDTH/8)) + 1;
if(currentline != oldline)
{
// Send end of line and address bytes
sendbyteLSB(0x00);
if (currentline <= HEIGHT)
{
sendbyteLSB(currentline);
}
oldline = currentline;
}
}
// Send another trailing 8 bits for the last line
sendbyteLSB(0x00);
digitalWrite(_ss, LOW);
}
|