Lib for the LCD display on mbed lab Board

Dependents:   SprintUSBModemWebsocketTest-LCD-RO iOSAppChat Christmas-LCD led_dimm ... more

Basic information

The LCD on the mbed lab board has 128 x 32 pixels and is connected via spi. It use a ST7565R controller. The spi connection is fast, but it has one drawback - you can't read the display buffer. This is a problem, because each bit reflect a pixel. If you want to set only one bit / pixel, you have to know the status of the other seven bits / pixel. Because of this we have to use a framebuffer (128 * 32 / 8 = 512 Byte). All drawing functions are working on this framebuffer. If you use the LPC1768 based mbed, the dma channel 0 is used to speed up the transfer to the lcd. This information is only relevant if you also want to use the dma controller. You have to switch to a other channel.

There are two update mode. After startup the automode is turned on. This means that the display is automaticly updated after the drawing. For example - if you call the function

lcd.line(x0, y0, x1, y1, 1);

a line from x0,y0 to x1,y1 is drawn inside the framebuffer and after that the framebuffer is copied to the lcd. If you draw more lines, it will be faster to draw all graphics inside the framebuffer and update the lcd only once. To do so, you can use the function :

lcd.set_auto_up(0);

This switch off the autoupdate. If you want to see it, you have to refresh the lcd by calling the function :

lcd.copy_to_lcd();

lcd.set_auto_up(1);

will switch back to auto update mode.

Basic functions

To use the lcd we have to create a lcd object :

C12832_LCD lcd;

There are two drawing modes : NORMAL and XOR. At startup the mode is NORMAL. If you use

lcd.setmode(XOR);

you switch to XOR mode. In this mode a pixel in the frambuffer is inverted if you set it to 1.

lcd.setmode(NORMAL);

switch back to normal mode.

The function :

lcd.invert(1);

will invert the lcd. This is done by the lcd controller. The framebuffer is not changed.

lcd.invert(0);

will switch back.

The function :

lcd.cls();

clear the screen.

The function :

lcd.set_contrast(25);

will set the contrast. The lib start with 23. A value between 10 and 35 will be visible.

Text

To print text you simply have to use the printf function. The output of the stdout is redirected to the lcd.

lcd.printf("temperature : %3.2f F",heat);

The position can be set up with the function :

lcd.locate(x,y);

At startup a 7 pixel font is used. If you want to use a different font you can include the lib http://mbed.org/users/dreschpe/code/LCD_fonts. This lib include four additional fonts. From 6 pixel to 23 pixel. To switch the font use :

lcd.set_font((unsigned char*) Arial_9);

The names of the fonts are : Small_6, Small_7, Arial_9, Arial12x12 and Arial24x23.

The function :

lcd._putc(c);

print the char c on the actual cursor position.

The function :

lcd.character(x, y, c);

print the char c at position x,y.

Graphic

The function :

lcd.line(x0, y0, x1, y1, color);

draw a single pixel line from x0,y0 to x1,y1. If color is 1 : black, 0 : white.

The function :

lcd.rect(x0, y0, x1, y1, color);

draw a single pixel rectangle from x0, y0 to x1, y1. If color is 1 : black, 0 : white.

The function :

lcd.fillrect(x0, y0, x1, y1, color);

draw a filled rectangle from x0, y0 to x1, y1. If color is 1 : black, 0 : white.

The function :

lcd.circle(x, y, r, color);

draw a circle with x,y center and radius r. If color is 1 : black, 0 : white.

The function :

lcd.fillcircle(x, y, r, color);

draw a filled circle with x,y center and radius r. If color is 1 : black, 0 : white.

The function :

lcd.pixel(x, y, color);

set a single pixel at x,y. If color is 1 : black, 0 : white. This function is not updating the lcd ! Even if the autoupdate is on. You have to call lcd.copy_to_lcd() after using this function - or to use a other function with autoupdate afterwards.

mbed rtos

To use the mbed rtos with the lib we have to make the lib thread save. What is the problem ? If different threads are writing to the lcd it can end in troubble. Thread1 is using the pintf("hello mbed") function to print this string to the actual position. After the chars "hel" are printed ,the scheduler is switching to thread2. This thread is writing at a different position on the screen. After that the scheduler is switch back to thread1 and the print function continue. Thread1 did not know that the internal cursor position has changed ....

To protect the access to the lcd we use a Mutex. If a thread has the mutex and a other thread also want it, the second thread has to wait.

Mutex lcd_mutex;  // define the mutex
    //...
lcd_mutex.lock(); // get the mutex or wait

//acccess to the lcd
 
lcd_mutex.unlock(); // free the mutex 

We use this framing to access the lcd.

Test program to show : http://mbed.org/users/dreschpe/code/lab1/

Committer:
dreschpe
Date:
Thu Oct 25 17:34:34 2012 +0000
Revision:
3:468cdccff7af
Parent:
1:66dd8afbfd06
Child:
5:0f53e522a2bf
Add auto update of the framebuffer; Include standart font into lib

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dreschpe 0:4bbc531be6e2 1 /* mbed library for the mbed Lab Board 128*32 pixel LCD
dreschpe 0:4bbc531be6e2 2 * use C12832 controller
dreschpe 0:4bbc531be6e2 3 * Copyright (c) 2012 Peter Drescher - DC2PD
dreschpe 0:4bbc531be6e2 4 * Released under the MIT License: http://mbed.org/license/mit
dreschpe 0:4bbc531be6e2 5 *
dreschpe 0:4bbc531be6e2 6 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
dreschpe 0:4bbc531be6e2 7 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
dreschpe 0:4bbc531be6e2 8 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
dreschpe 0:4bbc531be6e2 9 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
dreschpe 0:4bbc531be6e2 10 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
dreschpe 0:4bbc531be6e2 11 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
dreschpe 0:4bbc531be6e2 12 * THE SOFTWARE.
dreschpe 0:4bbc531be6e2 13 */
dreschpe 0:4bbc531be6e2 14
dreschpe 0:4bbc531be6e2 15 #ifndef C12832_H
dreschpe 0:4bbc531be6e2 16 #define C12832_H
dreschpe 0:4bbc531be6e2 17
dreschpe 0:4bbc531be6e2 18 #include "mbed.h"
dreschpe 0:4bbc531be6e2 19 #include "GraphicsDisplay.h"
dreschpe 0:4bbc531be6e2 20
dreschpe 0:4bbc531be6e2 21
dreschpe 1:66dd8afbfd06 22 /** optional Defines :
dreschpe 0:4bbc531be6e2 23 * #define debug_lcd 1 enable infos to PC_USB
dreschpe 0:4bbc531be6e2 24 */
dreschpe 0:4bbc531be6e2 25
dreschpe 0:4bbc531be6e2 26 // some defines for the DMA use
dreschpe 0:4bbc531be6e2 27 #define DMA_CHANNEL_ENABLE 1
dreschpe 0:4bbc531be6e2 28 #define DMA_TRANSFER_TYPE_M2P (1UL << 11)
dreschpe 0:4bbc531be6e2 29 #define DMA_CHANNEL_TCIE (1UL << 31)
dreschpe 0:4bbc531be6e2 30 #define DMA_CHANNEL_SRC_INC (1UL << 26)
dreschpe 0:4bbc531be6e2 31 #define DMA_MASK_IE (1UL << 14)
dreschpe 0:4bbc531be6e2 32 #define DMA_MASK_ITC (1UL << 15)
dreschpe 0:4bbc531be6e2 33 #define DMA_SSP1_TX (1UL << 2)
dreschpe 0:4bbc531be6e2 34 #define DMA_SSP0_TX (0)
dreschpe 0:4bbc531be6e2 35 #define DMA_DEST_SSP1_TX (2UL << 6)
dreschpe 0:4bbc531be6e2 36 #define DMA_DEST_SSP0_TX (0UL << 6)
dreschpe 0:4bbc531be6e2 37
dreschpe 1:66dd8afbfd06 38 /** Draw mode
dreschpe 1:66dd8afbfd06 39 * NORMAl
dreschpe 1:66dd8afbfd06 40 * XOR set pixel by xor the screen
dreschpe 1:66dd8afbfd06 41 */
dreschpe 0:4bbc531be6e2 42 enum {NORMAL,XOR};
dreschpe 0:4bbc531be6e2 43
dreschpe 0:4bbc531be6e2 44 class C12832_LCD : public GraphicsDisplay
dreschpe 0:4bbc531be6e2 45 {
dreschpe 0:4bbc531be6e2 46 public:
dreschpe 0:4bbc531be6e2 47 /** Create a C12832_LCD object connected to SPI1
dreschpe 0:4bbc531be6e2 48 *
dreschpe 0:4bbc531be6e2 49 */
dreschpe 0:4bbc531be6e2 50
dreschpe 0:4bbc531be6e2 51 C12832_LCD(const char* name = "LCD");
dreschpe 0:4bbc531be6e2 52
dreschpe 0:4bbc531be6e2 53 /** Get the width of the screen in pixel
dreschpe 0:4bbc531be6e2 54 *
dreschpe 0:4bbc531be6e2 55 * @param
dreschpe 0:4bbc531be6e2 56 * @returns width of screen in pixel
dreschpe 0:4bbc531be6e2 57 *
dreschpe 0:4bbc531be6e2 58 */
dreschpe 0:4bbc531be6e2 59 virtual int width();
dreschpe 0:4bbc531be6e2 60
dreschpe 0:4bbc531be6e2 61 /** Get the height of the screen in pixel
dreschpe 0:4bbc531be6e2 62 *
dreschpe 0:4bbc531be6e2 63 * @returns height of screen in pixel
dreschpe 0:4bbc531be6e2 64 *
dreschpe 0:4bbc531be6e2 65 */
dreschpe 0:4bbc531be6e2 66 virtual int height();
dreschpe 0:4bbc531be6e2 67
dreschpe 0:4bbc531be6e2 68 /** Draw a pixel at x,y black or white
dreschpe 0:4bbc531be6e2 69 *
dreschpe 0:4bbc531be6e2 70 * @param x horizontal position
dreschpe 0:4bbc531be6e2 71 * @param y vertical position
dreschpe 0:4bbc531be6e2 72 * @param colour ,1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 73 */
dreschpe 0:4bbc531be6e2 74 virtual void pixel(int x, int y,int colour);
dreschpe 0:4bbc531be6e2 75
dreschpe 0:4bbc531be6e2 76 /** draw a circle
dreschpe 0:4bbc531be6e2 77 *
dreschpe 0:4bbc531be6e2 78 * @param x0,y0 center
dreschpe 0:4bbc531be6e2 79 * @param r radius
dreschpe 0:4bbc531be6e2 80 * @param colour ,1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 81 *
dreschpe 0:4bbc531be6e2 82 */
dreschpe 0:4bbc531be6e2 83 void circle(int x, int y, int r, int colour);
dreschpe 0:4bbc531be6e2 84
dreschpe 0:4bbc531be6e2 85 /** draw a filled circle
dreschpe 0:4bbc531be6e2 86 *
dreschpe 0:4bbc531be6e2 87 * @param x0,y0 center
dreschpe 0:4bbc531be6e2 88 * @param r radius
dreschpe 0:4bbc531be6e2 89 * @param color ,1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 90 *
dreschpe 0:4bbc531be6e2 91 * use circle with different radius,
dreschpe 0:4bbc531be6e2 92 * can miss some pixel
dreschpe 0:4bbc531be6e2 93 */
dreschpe 0:4bbc531be6e2 94 void fillcircle(int x, int y, int r, int colour);
dreschpe 0:4bbc531be6e2 95
dreschpe 0:4bbc531be6e2 96 /** draw a 1 pixel line
dreschpe 0:4bbc531be6e2 97 *
dreschpe 0:4bbc531be6e2 98 * @param x0,y0 start point
dreschpe 0:4bbc531be6e2 99 * @param x1,y1 stop point
dreschpe 0:4bbc531be6e2 100 * @param color ,1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 101 *
dreschpe 0:4bbc531be6e2 102 */
dreschpe 0:4bbc531be6e2 103 void line(int x0, int y0, int x1, int y1, int colour);
dreschpe 1:66dd8afbfd06 104
dreschpe 0:4bbc531be6e2 105 /** draw a rect
dreschpe 1:66dd8afbfd06 106 *
dreschpe 1:66dd8afbfd06 107 * @param x0,y0 top left corner
dreschpe 1:66dd8afbfd06 108 * @param x1,y1 down right corner
dreschpe 1:66dd8afbfd06 109 * @param color 1 set pixel ,0 erase pixel
dreschpe 1:66dd8afbfd06 110 * *
dreschpe 1:66dd8afbfd06 111 */
dreschpe 1:66dd8afbfd06 112 void rect(int x0, int y0, int x1, int y1, int colour);
dreschpe 1:66dd8afbfd06 113
dreschpe 1:66dd8afbfd06 114 /** draw a filled rect
dreschpe 1:66dd8afbfd06 115 *
dreschpe 1:66dd8afbfd06 116 * @param x0,y0 top left corner
dreschpe 1:66dd8afbfd06 117 * @param x1,y1 down right corner
dreschpe 1:66dd8afbfd06 118 * @param color 1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 119 *
dreschpe 0:4bbc531be6e2 120 */
dreschpe 1:66dd8afbfd06 121 void fillrect(int x0, int y0, int x1, int y1, int colour);
dreschpe 1:66dd8afbfd06 122
dreschpe 1:66dd8afbfd06 123 /** copy display buffer to lcd
dreschpe 1:66dd8afbfd06 124 *
dreschpe 1:66dd8afbfd06 125 */
dreschpe 1:66dd8afbfd06 126
dreschpe 0:4bbc531be6e2 127 void copy_to_lcd(void);
dreschpe 0:4bbc531be6e2 128
dreschpe 0:4bbc531be6e2 129 /** set the orienation of the screen
dreschpe 1:66dd8afbfd06 130 *
dreschpe 1:66dd8afbfd06 131 */
dreschpe 1:66dd8afbfd06 132
dreschpe 1:66dd8afbfd06 133 //void set_orientation(unsigned int o);
dreschpe 0:4bbc531be6e2 134
dreschpe 1:66dd8afbfd06 135 /** set the contrast of the screen
dreschpe 1:66dd8afbfd06 136 *
dreschpe 1:66dd8afbfd06 137 * @param o contrast 0-63
dreschpe 1:66dd8afbfd06 138 */
dreschpe 0:4bbc531be6e2 139
dreschpe 0:4bbc531be6e2 140 void set_contrast(unsigned int o);
dreschpe 1:66dd8afbfd06 141
dreschpe 1:66dd8afbfd06 142 /** read the contrast level
dreschpe 1:66dd8afbfd06 143 *
dreschpe 1:66dd8afbfd06 144 */
dreschpe 1:66dd8afbfd06 145 unsigned int get_contrast(void);
dreschpe 1:66dd8afbfd06 146
dreschpe 1:66dd8afbfd06 147
dreschpe 1:66dd8afbfd06 148
dreschpe 1:66dd8afbfd06 149 /** invert the screen
dreschpe 1:66dd8afbfd06 150 *
dreschpe 1:66dd8afbfd06 151 * @param o = 0 normal, 1 invert
dreschpe 1:66dd8afbfd06 152 */
dreschpe 0:4bbc531be6e2 153 void invert(unsigned int o);
dreschpe 1:66dd8afbfd06 154
dreschpe 1:66dd8afbfd06 155 /** clear the screen
dreschpe 1:66dd8afbfd06 156 *
dreschpe 1:66dd8afbfd06 157 */
dreschpe 1:66dd8afbfd06 158 virtual void cls(void);
dreschpe 1:66dd8afbfd06 159
dreschpe 1:66dd8afbfd06 160 /** set the drawing mode
dreschpe 1:66dd8afbfd06 161 *
dreschpe 1:66dd8afbfd06 162 * @param mode NORMAl or XOR
dreschpe 1:66dd8afbfd06 163 */
dreschpe 1:66dd8afbfd06 164
dreschpe 1:66dd8afbfd06 165 void setmode(int mode);
dreschpe 1:66dd8afbfd06 166
dreschpe 1:66dd8afbfd06 167 int columns(void);
dreschpe 1:66dd8afbfd06 168
dreschpe 1:66dd8afbfd06 169 /** calculate the max number of columns
dreschpe 1:66dd8afbfd06 170 *
dreschpe 1:66dd8afbfd06 171 * @returns max column
dreschpe 1:66dd8afbfd06 172 * depends on actual font size
dreschpe 1:66dd8afbfd06 173 *
dreschpe 1:66dd8afbfd06 174 */
dreschpe 1:66dd8afbfd06 175 int rows(void);
dreschpe 1:66dd8afbfd06 176
dreschpe 1:66dd8afbfd06 177 /** put a char on the screen
dreschpe 1:66dd8afbfd06 178 *
dreschpe 1:66dd8afbfd06 179 * @param value char to print
dreschpe 1:66dd8afbfd06 180 * @returns printed char
dreschpe 1:66dd8afbfd06 181 *
dreschpe 1:66dd8afbfd06 182 */
dreschpe 1:66dd8afbfd06 183 int _putc(int value);
dreschpe 1:66dd8afbfd06 184
dreschpe 1:66dd8afbfd06 185 /** draw a character on given position out of the active font to the LCD
dreschpe 1:66dd8afbfd06 186 *
dreschpe 1:66dd8afbfd06 187 * @param x x-position of char (top left)
dreschpe 1:66dd8afbfd06 188 * @param y y-position
dreschpe 1:66dd8afbfd06 189 * @param c char to print
dreschpe 1:66dd8afbfd06 190 *
dreschpe 1:66dd8afbfd06 191 */
dreschpe 1:66dd8afbfd06 192 virtual void character(int x, int y, int c);
dreschpe 1:66dd8afbfd06 193
dreschpe 1:66dd8afbfd06 194 /** setup cursor position
dreschpe 1:66dd8afbfd06 195 *
dreschpe 1:66dd8afbfd06 196 * @param x x-position (top left)
dreschpe 1:66dd8afbfd06 197 * @param y y-position
dreschpe 1:66dd8afbfd06 198 */
dreschpe 1:66dd8afbfd06 199 void locate(int x, int y);
dreschpe 3:468cdccff7af 200
dreschpe 3:468cdccff7af 201 /** setup auto update of screen
dreschpe 3:468cdccff7af 202 *
dreschpe 3:468cdccff7af 203 * @param up 1 = on , 0 = off
dreschpe 3:468cdccff7af 204 * if switched off the program has to call copy_to_lcd()
dreschpe 3:468cdccff7af 205 * to update screen from framebuffer
dreschpe 3:468cdccff7af 206 */
dreschpe 3:468cdccff7af 207 void C12832_LCD::set_auto_up(unsigned int up);
dreschpe 1:66dd8afbfd06 208
dreschpe 3:468cdccff7af 209 /** get status of the auto update function
dreschpe 3:468cdccff7af 210 *
dreschpe 3:468cdccff7af 211 * @returns if auto update is on
dreschpe 3:468cdccff7af 212 */
dreschpe 3:468cdccff7af 213 unsigned int C12832_LCD::get_auto_up(void);
dreschpe 0:4bbc531be6e2 214
dreschpe 0:4bbc531be6e2 215 /** Vars */
dreschpe 0:4bbc531be6e2 216 SPI _spi;
dreschpe 0:4bbc531be6e2 217 DigitalOut _reset;
dreschpe 0:4bbc531be6e2 218 DigitalOut _A0;
dreschpe 0:4bbc531be6e2 219 DigitalOut _CS;
dreschpe 0:4bbc531be6e2 220 unsigned char* font;
dreschpe 0:4bbc531be6e2 221 unsigned int draw_mode;
dreschpe 0:4bbc531be6e2 222
dreschpe 0:4bbc531be6e2 223
dreschpe 1:66dd8afbfd06 224 /** select the font to use
dreschpe 1:66dd8afbfd06 225 *
dreschpe 1:66dd8afbfd06 226 * @param f pointer to font array
dreschpe 1:66dd8afbfd06 227 *
dreschpe 1:66dd8afbfd06 228 * font array can created with GLCD Font Creator from http://www.mikroe.com
dreschpe 1:66dd8afbfd06 229 * you have to add 4 parameter at the beginning of the font array to use:
dreschpe 1:66dd8afbfd06 230 * - the number of byte / char
dreschpe 1:66dd8afbfd06 231 * - the vertial size in pixel
dreschpe 1:66dd8afbfd06 232 * - the horizontal size in pixel
dreschpe 1:66dd8afbfd06 233 * - the number of byte per vertical line
dreschpe 1:66dd8afbfd06 234 * you also have to change the array to char[]
dreschpe 1:66dd8afbfd06 235 *
dreschpe 1:66dd8afbfd06 236 */
dreschpe 1:66dd8afbfd06 237 void set_font(unsigned char* f);
dreschpe 0:4bbc531be6e2 238
dreschpe 0:4bbc531be6e2 239
dreschpe 0:4bbc531be6e2 240 protected:
dreschpe 0:4bbc531be6e2 241
dreschpe 0:4bbc531be6e2 242 /** draw a horizontal line
dreschpe 0:4bbc531be6e2 243 *
dreschpe 0:4bbc531be6e2 244 * @param x0 horizontal start
dreschpe 0:4bbc531be6e2 245 * @param x1 horizontal stop
dreschpe 0:4bbc531be6e2 246 * @param y vertical position
dreschpe 0:4bbc531be6e2 247 * @param ,1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 248 *
dreschpe 0:4bbc531be6e2 249 */
dreschpe 0:4bbc531be6e2 250 void hline(int x0, int x1, int y, int colour);
dreschpe 0:4bbc531be6e2 251
dreschpe 0:4bbc531be6e2 252 /** draw a vertical line
dreschpe 0:4bbc531be6e2 253 *
dreschpe 0:4bbc531be6e2 254 * @param x horizontal position
dreschpe 0:4bbc531be6e2 255 * @param y0 vertical start
dreschpe 0:4bbc531be6e2 256 * @param y1 vertical stop
dreschpe 0:4bbc531be6e2 257 * @param ,1 set pixel ,0 erase pixel
dreschpe 0:4bbc531be6e2 258 */
dreschpe 0:4bbc531be6e2 259 void vline(int y0, int y1, int x, int colour);
dreschpe 0:4bbc531be6e2 260
dreschpe 0:4bbc531be6e2 261 /** Init the C12832 LCD controller
dreschpe 0:4bbc531be6e2 262 *
dreschpe 0:4bbc531be6e2 263 */
dreschpe 0:4bbc531be6e2 264 void lcd_reset();
dreschpe 0:4bbc531be6e2 265
dreschpe 0:4bbc531be6e2 266 /** Write data to the LCD controller
dreschpe 0:4bbc531be6e2 267 *
dreschpe 0:4bbc531be6e2 268 * @param dat data written to LCD controller
dreschpe 0:4bbc531be6e2 269 *
dreschpe 0:4bbc531be6e2 270 */
dreschpe 0:4bbc531be6e2 271 void wr_dat(unsigned char value);
dreschpe 0:4bbc531be6e2 272
dreschpe 0:4bbc531be6e2 273 /** Write a command the LCD controller
dreschpe 0:4bbc531be6e2 274 *
dreschpe 0:4bbc531be6e2 275 * @param cmd: command to be written
dreschpe 0:4bbc531be6e2 276 *
dreschpe 0:4bbc531be6e2 277 */
dreschpe 0:4bbc531be6e2 278 void wr_cmd(unsigned char value);
dreschpe 1:66dd8afbfd06 279
dreschpe 0:4bbc531be6e2 280 void wr_cnt(unsigned char cmd);
dreschpe 0:4bbc531be6e2 281
dreschpe 0:4bbc531be6e2 282 unsigned int orientation;
dreschpe 0:4bbc531be6e2 283 unsigned int char_x;
dreschpe 0:4bbc531be6e2 284 unsigned int char_y;
dreschpe 0:4bbc531be6e2 285 unsigned char buffer[512];
dreschpe 1:66dd8afbfd06 286 unsigned int contrast;
dreschpe 3:468cdccff7af 287 unsigned int auto_up;
dreschpe 0:4bbc531be6e2 288
dreschpe 0:4bbc531be6e2 289 };
dreschpe 0:4bbc531be6e2 290
dreschpe 0:4bbc531be6e2 291
dreschpe 0:4bbc531be6e2 292
dreschpe 0:4bbc531be6e2 293
dreschpe 0:4bbc531be6e2 294 #endif