15

From what I've seen of articles and videos online, everyone seems to be using the 3.3V GPIO pin. I have an LCD screen which requires a 5V power supply and I wondered whether it would be safe to use the Raspberry Pi's 5V GPIO pin? If you can't use it, what is it there for?

I have a 16x2 KS0066 (apparently compatible with HD44780) LCD screen Picture of LCD screen

Mark Ingram
  • 889
  • 3
  • 11
  • 18

3 Answers3

11

There is a brilliant tutorial at Adafruit how to connect a 16x2 LCD to the Raspberry Pi using the 6 I/O pins.

enter image description here

As this is just a small LCD screen and you said in your comments it only uses 1.2mA you will be perfectly fine to use the +5V GPIO Pin to power the LCD .

When you want to use more peripherals though you would have to look into using an I2C interface instead.

tlhIngan
  • 3,372
  • 5
  • 21
  • 33
Piotr Kula
  • 17,336
  • 6
  • 66
  • 105
1

Go for it! You should, of course, look at the schematic and note their is a 1A fuse on the supply; depending on your USB peripherals you will be limited to between 200 - 500mA. If this is not enough, you could power the Raspberry Pi via the 5V pin.

Alex Chamberlain
  • 15,638
  • 15
  • 69
  • 113
1

It should be fine. The backlight is the main power user, and it's typically only 20mA in addition to the 1mA that the LCD part uses.

John La Rooy
  • 12,005
  • 9
  • 48
  • 77