LCD mini click displays 2x16 monochrome characters on an LMB162XFW LCD display. It features the MCP23S17 port expander and the MCP4161 digital potentiometer, both from Microchip. LCD mini click is designed to run on either 3.3V or 5V power supply. It communicates with the target microcontroller over SPI interface and the following pins on the mikroBUS™ line: PWM, INT, RST, AN.
The PWM pin onboard the LCD mini click is used for backlight control. While the digital potentiometer is used for contrast adjustments.
2x16 LDC displays are ideal for displaying short messages and numbers. They can display 16 characters per one line, 32 in total. The 5x8 dot font displays characters, symbols, and numbers clearly and vividly.
Type | LCD |
Applications | Interfacing 2x16 LED displays with mikroBUS™ compatible development boards |
On-board modules | MCP23S17 port expander, MCP4161 digital potentiometer - both from Microchip |
Key Features | Adapter for connecting 2x16 LCD displays, MCP23S17 port expander, MCP4161 digital potentiometer |
Key Benefits | Onboard port expander for LCD control, digital potentiometer for contrast settings, PWM for backlight control. |
Interface | SPI,PWM,GPIO |
Input Voltage | 3.3V or 5V |
Compatibility | mikroBUS |
Click board size | S (28.6 x 25.4 mm) |
This table shows how the pinout on LCD mini click corresponds to the pinout on the mikroBUS™ socket (the latter shown in the two middle columns).
The demo shows how to use the SPI LCD library to communicate with the LCD (with HD44780 compliant controllers) in 4-bit mode via the SPI interface. It also uses the PWM for the backlight and the on board digital potentiometer, for controlling display contrast, which can be accessed through SPI. The demo iterates through all the values for the backlight and the contrast intensity.
The main function of the demo.
01 void main() 02 { 03 system_init(); 04 05 SPI_Lcd_Out(1, 6, "mikroE"); 06 SPI_Lcd_Out(2, 2, "LCD mini click"); 07 08 set_bcklight(0xFF); 09 set_contrast(0xDF); 10 11 Delay_ms(5000); 12 13 while (1) 14 { 15 set_bcklight(value); 16 set_contrast(value); 17 18 value++; 19 delay_ms(40); 20 } 21 }