A rainbow screen appears before the Raspberry Pi's desktop GUI opens, followed by the Raspberry Pi's logo and command lines scrolling down. However, you may disable these and replace them with whatever image you choose by following these steps:
The Texts And Logo Must Be RemovedRelated Articles:
Make a USB Microphone Using the Raspberry Pi Pico
The Raspberry Pi PoE+ HAT Has Been Announced.
Detailed Comparison of Arduino Nano RP2040 Connect Vs Raspberry Pi Pico
The First Arduino Board Based on Raspberry Pi Silicon Has Arrived!
Pico LoRa Expansion is Finally Out! Supports 868MHz
How to connect a Raspberry Pi Pico to LoRaWAN
The Raspberry Pi RP2040 is now supported by the Arduino Core mbed 2.0!
Comparison Between BBC micro:bit & Raspberry Pi Pico
Best Raspberry Pi Pico Breakout And Pico HAT
Pico Projects For Beginners - Raspberry Pi
Raspberry Pi Pico RP2040 | Most Affordable Super Tiny Computer
Raspberry Pi Pico Launched Globally With Pico Add-On & Pico Expansions
Drag-and-Drop Programming For The Raspberry Pi Pico
Easiest Way to to Run DC Motor with Raspberry Pi Pico
How to Install Wi-Fi and Internet on a Raspberry Pi Pico
50 Raspberry Pi Hacks & Tips You Should Know
Begin by uninstalling all of the default screens, as well as the four Raspberry images. Disable all of the bootup lines as well.
sudo nano /boot/config.txt
To remove the colour test/rainbow screen, type this in your terminal and open /boot/config.txt, then add “disable splash=1” to the file. Now go ahead and write
sudo nano /boot/cmdline.txt
To remove the Raspberry logo, add “logo.nologo” at the end of the line.
Add “consoleblank=0 loglevel=1 quiet” next to “logo.nologo” to disable the commands and various kernel bits. Check to see if everything is on one line. Then press ctrl+X to exit, Y to save, and Enter to return to the command prompt.
Run the following command to remove the login prompt.
sudo systemctl disable getty@tty3
New Splash Screen AdditionAs your new splash screen, now place the chosen image. Install fbi, the image reader, and the framebuffer to make the image readable. In order to instal, type
sudo apt install fbi
It will just take a few moments to set up. After that, we must create a file.
sudo nano /file/systemd/system/splashscreen.service
Add the following items to the file:
Unit]
Description=Splash screen
DefaultDependencies=no
After=local-fs.target
[Service]
ExecStart=/usr/bin/fbi -d /dev/fb0 --noverbose -a /home/pi/image001.png
StandardInput=tty
StandardOutput=tty
[Install]
WantedBy=sysinit.target
The fbi is told the image to display via the “-d/dev/fb0” instruction.
The fbi'status bar' at the bottom will be suppressed with "—noverbose."
If the selected image is the correct size, no editing is required; otherwise, “-a” will act as editor.
The image's name is "/home/pi/image.png." You can change the name of your image here.
The FBI has access to tty via "StandardInput" and "StandardOutput."
The "DefaultDependencies" will override the default behaviour of systemd.
Through the “After” option, the fbi will be loaded in the boot process when ‘WantedBy' is accessed, not before the file system (and hence image) is ready.
Get Your Pi Up And Running AgainRun the following command to enable your service.
sudo apt-get updatesudo systemctl enable splashscreen
Restart the Raspberry Pi and double-check your image.
sudo reboot
Splash Screen for Raspberry PiWe may disable the default displays and add our preferred image photo/animation/video as your splash or bootup screen by following the procedures below.
The lifeblood of the Raspberry Pi and maker communities is the first and third component accessories. They provide new features and make it easier to complete projects.
SB Components, a UK-based official Raspberry Pi Reseller, was the first to market. They have launched 17 new Pico accessories, ranging from basic breakout boards that allow several addons to be utilised for DIY projects to exploring the potential of the Raspberry Pi Pico, and a Pico LoRa™ Expansion board, which comes with an onboard CH340 USB TO UART converter, Voltage Level Translator(74HC125V), E22-900T22S SMA antenna connector that covers 868MHz & 433MHz frequency band.
- Pico LoRa Expansion 868MHz
- Pico LoRa Expansion 433MHz
- 1.14” LCD HAT For Pico
- Pico Motor Driver HAT
- Pico RTC (Real Time Clock) HAT
- Pico RFID Expansion
- Pico Dual Channel Relay HAT
- Pico Single Channel Relay HAT
- Pico 3V Relay HAT
- Pico 2 Channel Expander
- Pico 4 Channel Expander
- Pico HAT Expansion
- Pico GPIO Expansion Board
- Pico Breadboard Kit
- Pico Relay Board
- Pico Zero Board
- Pico Zero Expansion
Comments
Please log in or sign up to comment.