1 /**************************************************************************/
4 @author K. Townsend (microBuilder.eu)
8 Driver for SSD1331 96x64 pixel RGB OLED displays.
10 This driver uses a bit-banged SPI interface and 16-bit RGB565 colours.
14 Software License Agreement (BSD License)
16 Copyright (c) 2010, microBuilder SARL
19 Redistribution and use in source and binary forms, with or without
20 modification, are permitted provided that the following conditions are met:
21 1. Redistributions of source code must retain the above copyright
22 notice, this list of conditions and the following disclaimer.
23 2. Redistributions in binary form must reproduce the above copyright
24 notice, this list of conditions and the following disclaimer in the
25 documentation and/or other materials provided with the distribution.
26 3. Neither the name of the copyright holders nor the
27 names of its contributors may be used to endorse or promote products
28 derived from this software without specific prior written permission.
30 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
31 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
32 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
33 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
34 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 /**************************************************************************/
43 #include "core/systick/systick.h"
45 static volatile lcdOrientation_t lcdOrientation
= LCD_ORIENTATION_PORTRAIT
;
46 static lcdProperties_t ssd1331Properties
= { 96, 64, false, false, false };
48 /*************************************************/
50 /*************************************************/
52 #define CMD(c) do { SET_CS; CLR_DC; CLR_CS; ssd1331SendByte( c ); SET_CS; } while (0)
53 #define DATA(c) do { SET_CS; SET_DC; CLR_CS; ssd1331SendByte( c ); SET_CS; } while (0);
54 #define DELAY(mS) do { systickDelay( mS / CFG_SYSTICK_DELAY_IN_MS ); } while(0);
56 /**************************************************************************/
58 @brief Simulates an SPI write using GPIO
63 /**************************************************************************/
64 void ssd1331SendByte(uint8_t byte
)
68 // Make sure clock pin starts high
71 // Write from MSB to LSB
76 // Set data pin high or low depending on the value of the current bit
90 /**************************************************************************/
92 @brief Reads a 16-bit value from the 8-bit data bus
94 /**************************************************************************/
95 uint16_t ssd1331ReadData(void)
101 /**************************************************************************/
103 @brief Reads a 16-bit value
105 /**************************************************************************/
106 uint16_t ssd1331Read(uint16_t addr
)
112 /**************************************************************************/
114 @brief Returns the 16-bit (4-hexdigit) controller code
116 /**************************************************************************/
117 uint16_t ssd1331Type(void)
122 /**************************************************************************/
124 @brief Sets the cursor to the specified X/Y position
126 /**************************************************************************/
127 void ssd1331SetCursor(uint8_t x
, uint8_t y
)
129 if ((x
>= ssd1331Properties
.width
) || (y
>= ssd1331Properties
.height
))
131 // set x and y coordinate
132 CMD(SSD1331_CMD_SETCOLUMN
);
134 CMD(ssd1331Properties
.width
-1);
136 CMD(SSD1331_CMD_SETROW
);
138 CMD(ssd1331Properties
.height
-1);
141 /**************************************************************************/
143 @brief Draws a solid line using HW acceleration
145 /**************************************************************************/
146 void ssd1331DrawLine(uint8_t x1
, uint8_t y1
, uint8_t x2
, uint8_t y2
, uint16_t color
)
150 if ((x1
>= ssd1331Properties
.width
) || (x2
>= ssd1331Properties
.width
) ||
151 (y1
>= ssd1331Properties
.height
) || (y2
>= ssd1331Properties
.height
)) {
155 // Switch x2 and x1 if required
163 // Switch y2 and y1 if required
171 CMD(SSD1331_CMD_DRAWLINE
);
176 CMD((uint8_t)((color
>> 11) & 0x1F));
177 CMD((uint8_t)((color
>> 5) & 0x3F));
178 CMD((uint8_t)(color
& 0x1F));
182 /**************************************************************************/
184 @brief Draws a filled rectangle using HW acceleration
186 /**************************************************************************/
187 void ssd1331FillRect(uint8_t x1
, uint8_t y1
, uint8_t x2
, uint8_t y2
, uint16_t pencolor
, uint16_t fillcolor
)
189 if ((x1
>= ssd1331Properties
.width
) || (x2
>= ssd1331Properties
.width
) ||
190 (y1
>= ssd1331Properties
.height
) || (y2
>= ssd1331Properties
.height
)) {
195 CMD(SSD1331_CMD_FILL
);
198 CMD(SSD1331_CMD_DRAWRECT
);
203 CMD((pencolor
>> 11) << 1);
204 CMD((pencolor
>> 5) & 0x3F);
205 CMD((pencolor
<< 1)& 0x3F);
207 CMD((fillcolor
>> 11) << 1);
208 CMD((fillcolor
>> 5) & 0x3F);
209 CMD((fillcolor
<< 1)& 0x3F);
212 /**************************************************************************/
214 @brief Inverts the R and B in an RGB565 color
216 /**************************************************************************/
217 uint16_t invert565Color(uint16_t color
)
221 b
= (color
>>0) & 0x1f;
222 g
= (color
>>5) & 0x3f;
223 r
= (color
>>11) & 0x1f;
225 return( (b
<<11) + (g
<<5) + (r
<<0) );
228 /*************************************************/
230 /*************************************************/
232 /**************************************************************************/
234 @brief Configures any pins or HW and initialises the LCD controller
236 /**************************************************************************/
239 // Set all pins to output
240 gpioSetDir(SSD1331_SCK_PORT
, SSD1331_SCK_PIN
, gpioDirection_Output
);
241 gpioSetDir(SSD1331_SID_PORT
, SSD1331_SID_PIN
, gpioDirection_Output
);
242 gpioSetDir(SSD1331_DC_PORT
, SSD1331_DC_PIN
, gpioDirection_Output
);
243 gpioSetDir(SSD1331_RST_PORT
, SSD1331_RST_PIN
, gpioDirection_Output
);
244 gpioSetDir(SSD1331_CS_PORT
, SSD1331_CS_PIN
, gpioDirection_Output
);
254 SSD1331_DISABLEPULLUPS();
256 CMD(SSD1331_CMD_DISPLAYOFF
); // 0xAE
257 CMD(SSD1331_CMD_SETREMAP
); // 0xA0
258 // A[2] = 1 = color order (0 = RGB, 1 = BGR)
259 // A[7:6] = 01 = 65K color
260 #if defined SSD1331_COLORORDER_BGR
265 CMD(SSD1331_CMD_STARTLINE
); // 0xA1
267 CMD(SSD1331_CMD_DISPLAYOFFSET
); // 0xA2
269 CMD(SSD1331_CMD_NORMALDISPLAY
); // 0xA4
270 CMD(SSD1331_CMD_SETMULTIPLEX
); // 0xA8
271 CMD(0x3F); // 0x3F 1/64 duty
272 CMD(SSD1331_CMD_SETMASTER
); // 0xAD
274 CMD(SSD1331_CMD_POWERMODE
); // 0xB0
276 CMD(SSD1331_CMD_PRECHARGE
); // 0xB1
278 CMD(SSD1331_CMD_CLOCKDIV
); // 0xB3
279 CMD(0xF0); // 7:4 = Oscillator Frequency, 3:0 = CLK Div Ratio (A[3:0]+1 = 1..16)
280 CMD(SSD1331_CMD_PRECHARGEA
); // 0x8A
282 CMD(SSD1331_CMD_PRECHARGEB
); // 0x8B
284 CMD(SSD1331_CMD_PRECHARGEA
); // 0x8C
286 CMD(SSD1331_CMD_PRECHARGELEVEL
); // 0xBB
288 CMD(SSD1331_CMD_VCOMH
); // 0xBE
290 CMD(SSD1331_CMD_MASTERCURRENT
); // 0x87
292 CMD(SSD1331_CMD_CONTRASTA
); // 0x81
294 CMD(SSD1331_CMD_CONTRASTB
); // 0x82
296 CMD(SSD1331_CMD_CONTRASTC
); // 0x83
298 CMD(SSD1331_CMD_DISPLAYON
);//--turn on oled panel
301 lcdFillRGB(COLOR_BLACK
);
304 /**************************************************************************/
306 @brief Enables or disables the LCD backlight
308 /**************************************************************************/
309 void lcdBacklight(bool state
)
311 // No backlight ... do nothing
314 /**************************************************************************/
316 @brief Renders a simple test pattern on the LCD
318 /**************************************************************************/
322 ssd1331SetCursor(0, 0);
328 if(i
>55){DATA((uint8_t)COLOR_WHITE
>>8);DATA((uint8_t)COLOR_WHITE
);}
329 else if(i
>47){DATA((uint8_t)COLOR_BLUE
>>8);DATA((uint8_t)COLOR_BLUE
);}
330 else if(i
>39){DATA((uint8_t)COLOR_GREEN
>>8);DATA((uint8_t)COLOR_GREEN
);}
331 else if(i
>31){DATA((uint8_t)COLOR_CYAN
>>8);DATA((uint8_t)COLOR_CYAN
);}
332 else if(i
>23){DATA((uint8_t)COLOR_RED
>>8);DATA((uint8_t)COLOR_RED
);}
333 else if(i
>15){DATA((uint8_t)COLOR_MAGENTA
>>8);DATA((uint8_t)COLOR_MAGENTA
);}
334 else if(i
>7){DATA((uint8_t)COLOR_YELLOW
>>8);DATA((uint8_t)COLOR_YELLOW
);}
335 else {DATA((uint8_t)COLOR_BLACK
>>8);DATA((uint8_t)COLOR_BLACK
);}
340 /**************************************************************************/
342 @brief Fills the LCD with the specified 16-bit color
344 /**************************************************************************/
345 void lcdFillRGB(uint16_t data
)
347 ssd1331FillRect(0,0,ssd1331Properties
.width
-1,ssd1331Properties
.height
-1, data
, data
);
350 /**************************************************************************/
352 @brief Draws a single pixel at the specified X/Y location
354 /**************************************************************************/
355 void lcdDrawPixel(uint16_t x
, uint16_t y
, uint16_t color
)
357 if ((x
>= ssd1331Properties
.width
) || (y
>= ssd1331Properties
.height
))
360 ssd1331SetCursor((uint8_t)x
, (uint8_t)y
);
365 /**************************************************************************/
367 @brief Draws an array of consecutive RGB565 pixels (much
368 faster than addressing each pixel individually)
370 /**************************************************************************/
371 void lcdDrawPixels(uint16_t x
, uint16_t y
, uint16_t *data
, uint32_t len
)
376 /**************************************************************************/
378 @brief Optimised routine to draw a horizontal line faster than
379 setting individual pixels
381 /**************************************************************************/
382 void lcdDrawHLine(uint16_t x0
, uint16_t x1
, uint16_t y
, uint16_t color
)
384 ssd1331DrawLine((uint8_t)x0
, (uint8_t)y
, (uint8_t)x1
, (uint8_t)y
, color
);
387 /**************************************************************************/
389 @brief Optimised routine to draw a vertical line faster than
390 setting individual pixels
392 /**************************************************************************/
393 void lcdDrawVLine(uint16_t x
, uint16_t y0
, uint16_t y1
, uint16_t color
)
395 ssd1331DrawLine((uint8_t)x
, (uint8_t)y0
, (uint8_t)x
, (uint8_t)y1
, color
);
398 /**************************************************************************/
400 @brief Gets the 16-bit color of the pixel at the specified location
402 /**************************************************************************/
403 uint16_t lcdGetPixel(uint16_t x
, uint16_t y
)
409 /**************************************************************************/
411 @brief Sets the LCD orientation to horizontal and vertical
413 /**************************************************************************/
414 void lcdSetOrientation(lcdOrientation_t orientation
)
419 /**************************************************************************/
421 @brief Gets the current screen orientation (horizontal or vertical)
423 /**************************************************************************/
424 lcdOrientation_t
lcdGetOrientation(void)
426 return lcdOrientation
;
429 /**************************************************************************/
431 @brief Gets the width in pixels of the LCD screen (varies depending
432 on the current screen orientation)
434 /**************************************************************************/
435 uint16_t lcdGetWidth(void)
437 return ssd1331Properties
.width
;
440 /**************************************************************************/
442 @brief Gets the height in pixels of the LCD screen (varies depending
443 on the current screen orientation)
445 /**************************************************************************/
446 uint16_t lcdGetHeight(void)
448 return ssd1331Properties
.height
;
451 /**************************************************************************/
453 @brief Scrolls the contents of the LCD screen vertically the
454 specified number of pixels using a HW optimised routine
456 /**************************************************************************/
457 void lcdScroll(int16_t pixels
, uint16_t fillColor
)
462 /**************************************************************************/
464 @brief Gets the controller's 16-bit (4 hexdigit) ID
466 /**************************************************************************/
467 uint16_t lcdGetControllerID(void)
469 return ssd1331Type();
472 /**************************************************************************/
474 @brief Returns the LCDs 'lcdProperties_t' that describes the LCDs
475 generic capabilities and dimensions
477 /**************************************************************************/
478 lcdProperties_t
lcdGetProperties(void)
480 return ssd1331Properties
;