FAQ
Q: Raspberry Pi 5 reports insufficient current?
A: When the Raspberry Pi 5 boots up, it detects the PD protocol on the Type-C port. If no PD protocol is detected, the system will display the following prompt and limit the output current to 3A.
Solution: Modify the EEPROM configuration to remove the current limit and allow up to 5A.
-
Open the EEPROM configuration editor:
sudo rpi-eeprom-config --edit -
Add the following line at the end of the configuration file, save and exit:
PSU_MAX_CURRENT=5000 -
Reboot the Raspberry Pi. The prompt should disappear, indicating the setting has taken effect.
Q: How to completely turn on or off the screen on Raspberry Pi Trixie / Bookworm?
A: In a Wayland environment (Raspberry Pi OS Trixie or Bookworm), use the wlr-randr command to control the screen power state.
Turn on the screen
wlr-randr --output HDMI-2 --off
Turn off the screen
wlr-randr --output HDMI-2 --on