Google Chat: zj734465502@gmail.com
+86-0755-88291180
sales01@spotpear.com
dragon_manager@163.com
services01@spotpear.com
manager01@spotpear.com
WhatsApp:13246739196
It is used for Raspberry Pi OS/Ubuntu/Kali and Retropie systems.
dtoverlay=vc4-kms-v3d
dtoverlay=vc4-kms-dsi-7inch
Input the following commands in the terminal to control the brightness:
echo X > /sys/class/backlight/rpi_backlight/brightness
Where X denotes any number from 0 to 255. 0 means the backlight is the dimmest, and 255 means the backlight is the brightest. For example:
echo 100 > /sys/class/backlight/rpi_backlight/brightness echo 0 > /sys/class/backlight/rpi_backlight/brightness echo 255 > /sys/class/backlight/rpi_backlight/brightness
In addition, Waveshare provides a corresponding application (the program is only for Raspberry Pi OS system), which users can download and install in the following ways to use:
wget https://www.waveshare.com/w/upload/f/f4/Brightness.zip unzip Brightness.zip cd Brightness sudo chmod +x install.sh ./install.sh
Once the installation is complete, you can open the program from the Start Menu - "Accessories - "Brightness" as shown below:
If the system you used is Bullseye/Buster, you can rotate it in the following ways:
1. Enter Screen Configuration.
2. Rotate it as shown below:
If you use other systems, you can rotate it as shown below:
1. Add the following sentence in the config.txt file. (The config file is in the root directory (/boot) of the TF card.):
display_rotate=1 #1:90; 2:180; 3:270
2. Save it and then reboot the Raspberry Pi.
sudo reboot
As the touch direction is different after rotating, you need to rotate the touch as shown below:
1. Install libinput
sudo apt-get install xserver-xorg-input-libinput
If the system you want to install is Ubuntu or Jetson Nano, the installation command is:
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.
Option "CalibrationMatrix" "0 1 0 -1 0 1 0 0 1"
As shown below:
5. Reboot the Raspberry Pi.
sudo reboot
After finishing the above steps, the touch can be rotated 90 degrees.
Note:
90-degree rotation: Option "CalibrationMatrix" "0 1 0 -1 0 1 0 0 1"
180-degree rotation: Option "CalibrationMatrix" "-1 0 1 0 -1 1 0 0 1"
270-degree rotation: Option "CalibrationMatrix" "0 -1 1 1 0 0 0 0 1"
Run the following commands on the Raspberry Pi terminal and the screen enter sleep mode:
xset dpms force off
At the end of the config.txt file, add the following commands to disable the touch. The config file is located in the root directory of the TF card and can also be accessed by the command: sudo nano /boot/config.txt.
disable_touchscreen=1
Note: You should reboot it after adding the commands.