Google Chat: zj734465502@gmail.com
+86-0755-88291180
sales01@spotpear.com
dragon_manager@163.com
services01@spotpear.com
manager01@spotpear.com
WhatsApp:13246739196
7inch Capacitive Touch Display for Raspberry Pi, 800 × 480, TFT Wide Angle, MIPI DSI Interface.
1) Connect the DSI interface of 7inch DSI LCD to the DSI interface of Raspberry Pi with a 15PIN FPC cable.
2) Use the 2PIN power cable to connect the power interface of the LCD to the 40PIN GPIO interface of the Raspberry Pi, as below:
3) You can fix the Raspberry Pi on the backside of the 7inch DSI LCD with screws.
The installation effect is shown in the following figure:
1) Download image from the Raspberry Pi website.
2) Download the compressed file to the PC, and unzip it to get the .img file.
3) Connect the TF card to the PC, use SDFormatter.exe software to format the TF card.
4) Open the Win32DiskImager.exe software, select the system image downloaded in step 2, and click ‘Write’ to write the system image.
5) After the image has finished writing, save, and quit the TF card safely.
6) Power on the Raspberry Pi and wait for a few seconds until the LCD displays normally. And the touch function can also work after the system starts.
【Note】
Open the config.txt file in the root directory of the TF card(/boot), comment out the following lines:
#camera_auto_detect=1 #dtoverlay=vc4-kms-v3d
Add the following lines under [all]:
dtoverlay=vc4-fkms-v3d start_x=1
Then save the file and reboot the system:
sudo reboot
So in addition to the above modification, you also need to install the Raspicam camera library.
The installation method is as follows:
cd ~ sudo apt install cmake git clone https://github.com/raspberrypi/userland cd userland ./buildme sudo cp build/bin/* /bin/
Then execute the following command to shut down the system:
poweroff
Connect the Raspberry Pi camera to the CSI interface of the Raspberry Pi, power on the Raspberry Pi again, and after the system boots, execute the following command:
Take a picture:
raspistill -o image.jpg
Take a video:
raspivid -o video.h264 -t 10000
echo X > /sys/class/backlight/rpi_backlight/brightness
echo 100 > /sys/class/backlight/rpi_backlight/brightness echo 0 > /sys/class/backlight/rpi_backlight/brightness echo 255 > /sys/class/backlight/rpi_backlight/brightness
wget https://www.waveshare.net/w/upload/3/39/Brightness.tar.gz tar -xzf Brightness.tar.gz cd brightness ./install.sh
Note: If you use the 2021-10-30-raspios-bullseye-armhf image or the laster version, please add the line dtoverlay=rpi-backlight to the config.txt file and reboot.
If you want to disable the touch function, you can modify the config.txt file, add the following line to the file, and reboot.
disable_touchscreen=1
Note: After adding the command, it needs to be restarted to take effect.