LCD03 is an Arduino library for I2C control of the LCD03 20x4 and 16x2 serial LCD modules from Robot Electronics, see the datasheet for details. It aims to maintain compatibility with the Arduino LiquidCrystal library (version 0017 onwards) , though some features of LiquidCrystal are ommited and additonal features are provided. It supports all features of the LCD03 including custom characters and the ability to read the keypad. Supports Arudino 1.0.0 and newer on avr and ESP8266 architectures.
The library is released under the GNU LGPL 2.1.
For source, issues or to contribute, please see the project page on GitHub.
The latest stable release is version 1.1.2 (zip) (tar.gz) (browse).
Simply navigate to your Arduino libraries directory and clone the git repository into a directory named 'LCD03'.
$ cd ~/Documents/Arduino/libraries
$ git clone git://github.com/andatche/arduino-lcd03.git LCD03
To install without git, simple use the "ZIP" link from the GitHub page to grab a .zip of the repository and unzip it to a directory named 'LCD03' in your Arduino libraries directory.
You'll need to restart the Arduino IDE after installing before the library will be detected.
The following public functions are exposed.
New LCD03 at i2c_address
. If i2c_address
is omitted the LCD03's default I2C address (0xC6) is used. On ESP8266 architectures only, i2c_sda
and i2c_scl
can optionally be used to set the data (SDA) and clock (SCL) pins used for I2C.
i2c_address (char): 8-bit I2C address of the display (optional, as displayed during LCD initilisation)
i2c_sda (uint8_t): the data (SDA) line pin for I2C (ESP8266 only, optional, defaults to setting SDA from Wire.h)
i2c_scl (uint8_t): the clock (SCL) line pin for I2C (ESP8266 only, optional, defaults to setting SCL from Wire.h)
Initialise the display of size cols
* rows
, clear the display and set the cursor to the top-left.
cols (uint8_t): the number of display columns
rows (uint8_t): the number of display rows
Clear the display and return the cursor to the top-left.
Move the cursor to the top-left.
Move the cursor to pos
.
pos (uint8_t): cursor position (0-79)
Move the cursor to col
, row
.
col (uint8_t): column, Arduino format (0-19)
row (uint8_t): row, Arduino format (0-3)
Write a single character to the LCD. Custom characters are mapped to values 0-7.
col (uint8_t): the character to write to the display
Returns size (size_t): the number of bytes written
Print text to the LCD.
data (char, byte, int, long, or string): the data to print to the display
base (optional): the base in which to print numbers: BIN, DEC, OCT or HEX
Returns size (size_t): the number of bytes written
Display the underline LCD cursor at the position to which the next character will be written.
Hides the LCD cursor.
Display the blinking (block) LCD cursor at the position to which the next character will be written.
Turns off the blinking LCD cursor.
Provided for LiquidCrystal compatibility, turns on the backlight.
Provided for LiquidCrystal compatibility, turns off the backlight.
Create a custom character (gylph) for use on the LCD. Up to eight characters of 5x8 pixels are supported (numbered 0 to 7). The appearance of each custom character is specified by an array of eight bytes, one for each row. The five least significant bits of each byte determine the pixels in that row. To display a custom character on the screen, write() its number.
num (uint8_t): where to store the character (0-7)
data (uint8_t[]): array containing pixel data
Move the cursor to the first column of the next row.
Move the cursor down one row.
Move the cursor up one row.
Clear the column of the current cursor position.
Delete the character preceding the cursor position and move the cursor back one.
Moves the cursor right by the tab space. Tab space is set using setTab(width)
and default tab space is 4.
Set the tab space.
width (uint8_t): width of the tab space
Turn on the LCD backlight.
Turn off the LCD backlight.
Return the number of free bytes in the LCD03's buffer.
Returns free (uint8_t): the number of free bytes (0-64)
Read the state of the (optionally) attached keypad. For more information see "Reading the keypad" below.
Returns keys (uint16_t): 16-bit state of the keypad matrix
Make sure you have the LCD03 library installed as above. To use LCD03 simply include Wire.h and "LCD03.h" in your sketch and instantiate a new LCD03 instance.
#include <Wire.h>
#include "LCD03.h"
// Create new LCD03 instance
LCD03 lcd;
void setup() {
// Initialise the LCD
lcd.begin(20, 4);
// Turn on the backlight
lcd.backlight();
// Write to the LCD
lcd.print("Hello world!");
// Wait for 5 seconds
delay(5000);
// Clear the LCD
lcd.clear();
}
void loop() {
// Set the cursor to the top left
lcd.home();
// Print the uptime in millis
lcd.print(millis());
}
The readKeypad()
function returns the 2-byte keypad matrix state (see datasheet) in a uint16_t. The library provides some handy definitions which can be used to check the state of a particular key with some simple comparison and bitwise operations.
###Â Definitions
- KEYPAD_1
- KEYPAD_2
- KEYPAD_3
- KEYPAD_4
- KEYPAD_5
- KEYPAD_6
- KEYPAD_7
- KEYPAD_8
- KEYPAD_9
- KEYPAD_0
- KEYPAD_STAR
- KEYPAD_HASH
The following examples show some common scenarios where you may want to check for particular inputs.
// Read the current state of the keypad
uint16_t keystate = lcd.readKeypad();
// Check if key 1 is pressed
if(keystate & KEYPAD_1 == KEYPAD_1) {
// Do something
}
// Check if key 1 is pressed exclusively
if(keystate == KEYPAD_1) {
// Do something
}
// Check if keys 1 and * are pressed simultaneously
if(keystate & (KEYPAD_1 | KEYPAD_STAR) == (KEYPAD_1 | KEYPAD_2)) {
// Do something
}
// Check if keys 1 and * are pressed simultaneously exclusively
if(keystate == (KEYPAD_1 | KEYPAD_STAR)) {
// Do something
}
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Added some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
Copyright (c) 2013 Ben Arblaster. All right reserved.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA