#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
Of course that code wouldn't compile, where is your:
void setup(){
}
void loop(){
}
As expected by the IDE.
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
Of course that code wouldn't compile, where is your:
void setup(){
}
void loop(){
}
As expected by the IDE.