118

There is a lightning bolt icon flashing on the top right of my screen. What does it mean?

Here's a picture:

Screenshot of PIXEL lightning bolt symbol

goobering
  • 10,610
  • 4
  • 38
  • 64
j0h
  • 2,373
  • 6
  • 21
  • 33

4 Answers4

107

That's the new undervoltage symbol. Your Pi's power supply is marginal or insufficient for its requirements.

From the raspberrypi.org blog page:

Finally on the subject of icons, in the past if your Pi was working particularly hard, you might have noticed some yellow and red squares appearing in the top-right corner of the screen, which were indications of overtemperature or undervoltage. These have now been replaced with some new symbols that make it a bit more obvious what’s actually happening; there’s a lightning bolt for undervoltage, and a thermometer for overtemperature.

goobering
  • 10,610
  • 4
  • 38
  • 64
  • 2
    Official doc for the icons: https://www.raspberrypi.org/documentation/configuration/warning-icons.md And a video explaining it: https://www.youtube.com/watch?v=JadID7eRTtQ – user193130 Feb 15 '19 at 19:39
26

The lightning bolt means that the Pi is not receiving the required voltage. This may be due to the power supply you are using or the cable (if separate). You should switch to a better supply/cable as undervolting can lead to SD card corruption and other difficult-to-trace issues.

You don't mention what model Pi you are using and what if anything you have plugged into the USB ports, but you may be able to get by with your existing power supply/cable if you use a powered USB hub to connect any USB device.

tripleee
  • 113
  • 6
Steve Robillard
  • 34,158
  • 17
  • 102
  • 108
  • 8
    I got the lightning bolt with every power supply I had. Changed the USB cable to a different one and lightning bolt gone! I guess not all cables are created equal! – brad Jan 27 '18 at 11:57
  • @brad: did you have the official RPi supply or a smartphone charger of 5V and 2.4A? – Nav Sep 29 '20 at 21:11
14

The lightning bolt means that you don't have enough power going to the Raspberry Pi.

Almost any standard micro USB cable will be able to power the Pi. Most of us have one or two laying around from getting them for our phones and we could easily use what we have to charge our phones to power the RPi.

However, the Raspberry Pi should have a 5 volt 2 amp USB power cable to sufficently power the the device (and not get the bolt).

Most Android/Smartphone/USB chargers though run on a 5 volt 1 amp charger, and some of the "fast chargers" are only 5 volt and less than 2 amp. These are big generalities and are constantly changing and do vary depending on how cheap you got it and where from and for what purpose.

Some of those "fast chargers" can go for up to $30, and will be a 5 volt 2 amp charger. However, you can get one from adafruit.com for just about $8, which is what a regular phone charger would cost elsewhere, see 5V 2.4A Switching Power Supply w/ 20AWG 6' MicroUSB Cable.

This amount of power, might be too much for your computing needs for the Pi. So a standard 5 volt 1 amp charger might be good enough until you decide what you are doing with it or just while you are learning and goofing with the OS and such.

I bought a 5 V 2.1 A from somewhere and it works great for my Pi, similar to the one from Adafruit.com. I forget where I got it though.

Greenonline
  • 2,448
  • 4
  • 18
  • 33
  • 3
    I highly doubt that 1V/1A and 2V/2A chargers are sold for phones. – Ghanima Nov 22 '16 at 19:41
  • 1
    If you want some upvotes, you should edit your answer... Surely you mean 5V 1A, and 5V 2A? – Greenonline Nov 26 '16 at 11:52
  • 1
    Downvote due to "This amount of power, might be too much for your computing needs for the Pi". The device (e.g. RPi) draws the power it needs. Having a 1A PSU doesn't mean 1A flows all the time. – Aloha Jun 19 '19 at 05:29
4

It also appears if you power the Pi from the GPIO power pins.

Everything works fine but the power led will not be lit.

John
  • 41
  • 1
  • 5
    **Do you have a reference for this, or is it an inference?** If the later, then perhaps what it really means is you are supplying insufficient voltage via the GPIO pins. Note that the lightning bolt and the PWR led being off are just warnings. They do not not necessarily indicate anything won't work, but it might be a clue if, e.g., you suddenly drew a lot of current via the USB jacks and the pi "mysteriously" rebooted. – goldilocks Nov 27 '16 at 18:35
  • 2
    Will up vote if references are provided. – j0h Nov 28 '16 at 17:47
  • References? I, also, will upvote your answer - _if_ you can ameliorate your answer, and provide (substantially) more information... – Greenonline Dec 06 '16 at 19:35
  • 1
    In my experience, powering the Pi via GPIO can lead to serious problems if the CPU is very busy and/or USB ports suck a lot of power. We had a case where the network interfaces continuously restarted making it impossible to reach the Pi via SSH. – henon Oct 16 '17 at 10:02
  • According to the schematic (pi v3) the +5V from the USB is attached to the +5V internal rail via a resettable fuse. So you can provide equivalent supply via the 5v header as long as you provide similar over current protection. – Tom Mar 28 '18 at 20:07
  • He is right. I just pluged a mini fan in GPIO 4-5 pins and that bolt appeared on top right of screen and power led (red) turned off, blinking randomly once in 5-10 seconds. I pulled back fan connection and restarted Pi(3B+) and everything was okay. I am supplying 5V3A via mini USB port. – webcoder Jan 28 '19 at 16:01