Experiments 5.x: Arduino LCD Tutorial
Loading...
9,508
Loading...
Uploader Comments (DerekMolloyDCU)
Top Comments
-
boo for lead free solder
2% flux lead thin 40/60 best
see all
All Comments (15)
-
i have a rgb lcd as you have in one of your tutorial, but i cant get it to work! have a simple code, just a txt, but it is just blinking : s like in a a old computer, a squere that is blinking
-
@DerekMolloyDCU Wow, that was quick! Thanks a lot... I needed the PWM pins to control my servos so couldn't compromise them for the LCD. Oh and is there a way to control my servos without PWM? I'm planning to use an Arduino Mega 2560 which has 54 digital I/O pins out of which 14 and PWM. But My project uses 17 servos...
-
weird way to instantiate object O_o
-
uh is it that handy to put wire connections on pin 0 and 1 ? since these are serial pins ...
Loading...
any way to connect more than 1 16x2 lcd to the arduino? (5lcd)
fabiuh991 3 months ago
@fabiuh991 Yes, but you have to be careful in the display that you choose. With this display type there are 4-bit and 8-bit displays, so it should be possible to connect at least 2 4-bit displays - you may have to do some clever programming though. If you are looking at more than 2 displays, I2C Serial LCD displays that need only 2 wires and you could have up to 7 LCD displays on the same I2C bus. Web4Robot have some for sale at around $15.
DerekMolloyDCU 3 months ago
Wow, that was quick! Thanks a lot... I needed the PWM pins to control my servos so couldn't compromise them for the LCD. Oh and is there a way to control my servos without PWM? I'm planning to use an Arduino Mega 2560 which has 54 digital I/O pins out of which 14 and PWM. But My project uses 17 servos...
flymerlion 3 months ago
@flymerlion Do a search for the TLC5940 - It's a 16 channel 12-bit PWM unit. It could be your solution (well for 16 of your 17 servos!) - about $6 from Sparkfun and others, Derek.
DerekMolloyDCU 3 months ago
Hey umm, do you need to connect the LCD digital pins to the Arduino's PWM outputs or is it alright if we connect them to the normal digital I/O pins?
flymerlion 3 months ago
@flymerlion It's okay to use the regular digital I/O pins as there is no 'dimming' functionality required here. I think that in the RGB LED example I had to avoid using the PWM pins as I needed them to drive the three RGB channels.
DerekMolloyDCU 3 months ago