Hi everyone,
I wonder if i HAVE to use connection i see in all tuto or if i can use any digital pin of my mega.
Since i use all PWN pins...
thx
kaRL
Hi everyone,
I wonder if i HAVE to use connection i see in all tuto or if i can use any digital pin of my mega.
Since i use all PWN pins...
thx
kaRL
If you are talking about the native parallel connection for the LCD as shown in the Arduino Liquid Crystal tutorial ** you can use any pin, analog or digital, for any of the LCD data or control lines. You just have to make sure that the argument of the constructor (the numbers in parentheses in the LiquidCrystal lcd() statement) agree with your choice of pins.
//LiquidCrystal lcd(RS, E, D4, D5, D6, D7);
LiquidCrystal lcd(7, 8, 9, 10, 11, 12); // put your pin numbers here
Don
** It looks like they have broken the link - hopefully it will be fixed soon
thx a lot
KArl