raaka1 / Grove_LCD_RGB_Backlight

Seeedstudio, Grove - LCD RGB Backlight

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Grove - LCD RGB Backlight

Grove - LCD RGB Backlight


Done with the tedious mono color backlight? This Grove - LCD RBG Backlight enables you to set the color to whatever you like via the simple and concise Grove interface. It takes I2C as the communication method with your microcontroller. The number of pins required for data exchange and backlight control shrinks from ~10 to 2, relieving IOs for other challenging tasks. In addition, Grove - LCD RGB Backlight supports user-defined characters. Want to get a love heart or another custom character? Just take advantage of this feature and design it!
## Usage:

This is an Arudino Library. It include a .h file, a .cpp file and some examples. Through these examples, you can quickly master the use of Grove - LCD RGB Backlight.

The in the following, we will introduce some functions which are used very intuitively.

Initialization

Before we use this lcd, we should initialize it. You can use this function:

lcd.begin(16, 2);

This means that this lcd has 16 columns and 2 rows.


### Change Color of Backlight One of Grove - LCD RGB Backlight's most important feature is changing the backlight color. It's very simple; just use the folowing function:
void setRGB(int r, int g, int b);

### Clear Display

You can clear the display by this function:

void clear();

### Turn on and turn off display
void noDisplay();			// turn off display
void display();				// turn on display

### Blink
void noBlink();
void blink();

### Cursor
void noCursor();
void cursor();

### Blink LED Backlight
void noBlinkLED();
void blinkLED();

For more information, please refer to [wiki page](http://www.seeedstudio.com/wiki/Grove_-_LCD_RGB_Backlight).

This software is written by loovee(luweicong@seeedstudio.com) for seeed studio
and is licensed under The MIT License. Check License.txt for more information.

Contributing to this software is warmly welcomed. You can do this basically by
forking, committing modifications and then pulling requests (follow the links above
for operating guide). Adding change log and your contact into file header is encouraged.
Thanks for your contribution.

Seeed Studio is an open hardware facilitation company based in Shenzhen, China.
Benefiting from local manufacture power and convenient global logistic system,
we integrate resources to serve new era of innovation. Seeed also works with
global distributors and partners to push open hardware movement.

Analytics

About

Seeedstudio, Grove - LCD RGB Backlight

License:MIT License


Languages

Language:C++ 100.0%