LCD Character Display

Background

An LCD or Liquid Crystal Display is a low-cost solution for displaying information in microcontroller projects. The displays we have are 16x2 character displays meanings they have 16 columns & 2 rows to display 32 characters total.

 

Hardware Description

Note: the potentiometer is for dialing in the contrast. Sometimes, it comes loose and may cause nothing to show up on your screen. To avoid this, you can find fixed resistance values that work for your screen. I have found that connecting a 1 kOhm resistor between V0 and GND and a 10 kOhm resistor between V0 and 5V works well.

lcd1.jpg   lcd2.png

lcd4.PNG

 

 

Software Description

https://create.arduino.cc/editor/mjdargen_ravens/c1dba938-3d12-4190-b5e4-83d22edc6cd6/preview

To use the LCD character displays, we will use the LiquidCrystal library: https://www.arduino.cc/en/Reference/LiquidCrystal

 

Resources