Google Chat: zj734465502@gmail.com
+86-0755-88291180
sales01@spotpear.com
dragon_manager@163.com
services01@spotpear.com
manager01@spotpear.com
WhatsApp:13246739196
The installation effect is shown in the following figure: (The Raspberry Pi will supply power to the LCD via the pogo pin.)
1. Connect the the display interface of the 8inch DSI LCD to the 22PIN DSI1 interface on the Raspberry Pi board using the DSI-Cable-12cm cable.
2. Connect the camera interface to the 22PIN CSI0 interface on the Raspberry Pi board with the Pi5-Camera-Cable.
3. Connect the LCD's power connector to the Raspberry Pi's 40PIN GPIO header using the 2PIN power connector cable.
4. For ease of use, the Raspberry Pi 5 can be screwed to the back of the 8-inch DSI LCD and assembled with copper posts. As shown in the figure below:
For Raspberry Pi OS/Ubuntu/Kali and Retropie system:
Note: as there are two MIPI DSI interfaces on the Pi5/CM4/CM3+/CM3, please pay attention to using the correct DSI interface and commands, and the DSI1 interface is recommended.
dtoverlay=vc4-kms-v3d
#DSI1 Use
dtoverlay=vc4-kms-dsi-7inch
#DSI0 Use
#dtoverlay=vc4-kms-dsi-7inch,dsi0
WaveShare provides the corresponding demo for the application (only supports Bookworm and Bullseye systems). Users can install it by the following commands:
wget https://files.waveshare.com/upload/f/f4/Brightness.zip unzip Brightness.zip cd Brightness sudo chmod +x install.sh ./install.sh
After installation, you can open it: Menu -》Accessories -》Brightness:
In addition, you can also input the following commands to control the backlight brightness in the terminal:
echo X | sudo tee /sys/class/backlight/*/brightness
X indicates any number from 0 to 255. 0 means the backlight is the darkest, and 255 means the backlight is the brightest. For example:
echo 100 | sudo tee /sys/class/backlight/*/brightness echo 0 | sudo tee /sys/class/backlight/*/brightness echo 255 | sudo tee /sys/class/backlight/*/brightness
Note: Only the Bookworm system supports the above synchronized rotation method, for Bullseye and Butser systems, after the display rotates, you need to set the touch rotation additionally.
For some older systems, vc4-kms-v3d or vc4-fkms-v3d driving mode is not available. The supported display rotation methods as shown below:
display_rotate=1 #1:90;2: 180; 3: 270
sudo reboot
sudo nano /boot/cmdline.txt #For the latest system: sudo nano /boot/firmware/cmdline.txt #Add the command to display the rotation angle at the beginning of the cmdline.txt file, save and reboot to take effect #Display rotates 90° video=DSI-1:800x480M@60,rotate=90 #Display rotates 180° video=DSI-1:800x480M@60,rotate=180 #Display rotates 270° video=DSI-1:800x480M@60,rotate=270
For some systems, as the touch direction is different after display rotation, you need to rotate the touch as shown below:
1. Install libinput
sudo apt-get install xserver-xorg-input-libinput
sudo apt install xserver-xorg-input-synaptics
2. Create xorg.conf.d directory in /etc/X11/. (If the directory exists, you can directly skip to Step 3.)
sudo mkdir /etc/X11/xorg.conf.d
3. Copy 40-libinput-conf file to the directory created just now.
sudo cp /usr/share/X11/xorg.conf.d/40-libinput.conf /etc/X11/xorg.conf.d/
4. Edit the file.
sudo nano /etc/X11/xorg.conf.d/40-libinput.conf
Find the touchscreen part, add the following sentence, and then save.
#Find touchscreen part, add the corresponding rotation angle commands and save #90°Right Rotation: Option "CalibrationMatrix" "0 1 0 -1 0 1 0 0 1" #180° Inverted Touch Rotation: #Option "CalibrationMatrix" "-1 0 1 0 -1 1 0 0 1" #270° Left Rotation: #Option "CalibrationMatrix" "0 -1 1 1 0 0 0 0 1"
As shown below:
5. Reboot the Raspberry Pi.
sudo reboot
After finishing the above steps, the touch can be rotated.
Run the following commands on the Raspberry Pi terminal, and the screen will enter sleep mode:
xset dpms force off
If you want to disable the touch function, you can modify the config.txt file, add the following line to the file and reboot the system. (The config file is located in the root directory of the TF card, and can also be accessed through the command: sudo nano /boot/config.txt):
disable_touchscreen=1
Note: After adding the command, it needs to be restarted to take effect.
If you don't know the difference between the two branches of Raspberry Pi OS, you can check the following introduction to the Raspberry Pi OS Branches.
In this branch, the libcamera camera subsystem interface is used by default. The camera interface is turned on by default.
The camera can be controlled with the following commands:
#libcamera-hello is a simple "hello world" program, which mainly starts the camera preview function and displays it on the screen.
libcamera-hello //The preview window is displayed for about 5 seconds
libcamera-hello -t 0 //Display the preview window for a long time, use ctrl+c to end
#libcamera-jpeg is a simple application that runs the preview window and then takes a high-resolution still image.
libcamera-jpeg -o test.jpg //Display a preview window for about 5 seconds, then save the full-resolution JPEG image to test.jpg
#libcamera-still is a more sophisticated still image capture application, mainly to simulate raspistill
libcamera-still -o test.jpg //Display a preview window for about 5 seconds, and then the image is saved to test.jpg
#libcamera-vid is a video shooting application. The Raspberry Pi hardware H.264 encoder is used by default.
libcamera-vid -t 10000 -o test.h264 //Save a 10 seconds video to test.h264
vlc test.h264 //The resulting file can be played using vlc
#libcamera-raw is a basic application that captures raw frames directly from the sensor, without showing a preview window.
libcamera-raw -t 2000 -o test.raw //Save the 2 seconds video to test.raw
More detailed information can be found at: libcamera and libcamera-apps.
Note: On some motherboards, using libcamera may report an error, you can try to execute the following commands.
sudo raspi-config -> Advanced Options -> Glamor -> Yes (Enabled) -> Ok -> Finish -> Yes (Reboot).
The raspicam camera subsystem interface is used by default on these systems. The camera interface is enabled by default in Ubuntu. In the Raspberry Pi OS buster branch, you need to execute the following command to open the camera interface.
sudo raspi-config -> Interface Options -> Camera -> Yes -> OK -> Finish -> Yes (Reboot).
The camera can be controlled with the following commands:
#raspistill is an application that runs a preview window and then takes a high-resolution still image.
raspistill -o cam.jpg //A preview window is displayed for about 5 seconds, then the image is saved to cam.jpg
raspistill -vf -hf -o cam2.jpg //Flip Vertical and Flip Horizontal
#raspivid is a video shooting application.
raspivid -o vid.h264 //Save the 5-second video to test.h264
raspivid -o video.h264 -t 10000 //Record 10-second video
raspivid -vf -hf -o video.h264 -t 10000 //Flip Vertical and Flip Horizontal
More detailed information can be found at: Raspicam command.
300cd/㎡
Check the system version using "uname --all". If it's kernel version 6.6.20, run "sudo rpi-update pulls/6050" to fix it.
Note: Take care to back up any important data in your image before updating in case there is a regression.
Since the first-generation Raspberry Pi released, Waveshare has been working on designing, developing, and producing various fantastic touch LCDs for the Pi. Unfortunately, there are quite a few pirated/knock-off products in the market. They're usually some poor copies of our early hardware revisions, and comes with none support service.
To avoid becoming a victim of pirated products, please pay attention to the following features when purchasing:
Please note that we've found some poor copies of this item in the market. They are usually made of inferior materials and shipped without any testing.
You might be wondering if the one you're watching or you've purchased in other non-official stores is original, feel free to contact us.
Monday-Friday (9:30-6:30) Saturday (9:30-5:30)
Mobile: +86 13434470212
Email: services01@spotpear.com