So I just wanted to mess around with my arduino LCD display (May I add it came with the kit from arduino...)
Basically all the wiring is fine, and is done as the diagram shows in the book. The back lighting is working fine and the display is definitely on.
The problem is that it will not display text no matter what, even after I unplug, re-upload the code etc.
Here is my code:(the pins are all correct 100%)
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
const int switchPin = 6;
void setup(){
pinMode(switchPin,INPUT);
lcd.begin(16,2);
lcd.print("Hey!");
}
void loop(){
}