Difference between revisions of "How to rotate the display direction"

From LCD wiki
Jump to: navigation, search
(Created page with "{{Rotate}}")
 
 
Line 1: Line 1:
 +
{{lan
 +
|
 +
cn=http://www.lcdwiki.com/zh/如何旋转显示方向
 +
|
 +
en=http://www.lcdwiki.com/How_to_rotate_the_display_direction
 +
}}
 
{{Rotate}}
 
{{Rotate}}

Latest revision as of 17:59, 7 July 2019


语言选择

Languages

➤中文
➤EN


How to rotate the display direction

This method only applies to the Raspberry Pi series of display screens, other display screens do not apply.

  • Method 1,If the driver is not installed, execute the following command (Raspberry Pi needs to connected to the Internet):
sudo rm -rf LCD-show
git clone https://github.com/goodtft/LCD-show.git
chmod -R 755 LCD-show
cd LCD-show/
sudo ./XXX-show 90

After execution, the driver will be installed. The system will automatically restart, and the display screen will rotate 90 degrees to display and touch normally.
' XXX-show ' can be changed to the corresponding driver, and ' 90 ' can be changed to 0, 90, 180 and 270, respectively representing rotation angles of 0 degrees, 90 degrees, 180 degrees, 270 degrees)

  • Method 2,If the driver is already installed, execute the following command:
cd LCD-show/
sudo ./rotate.sh 90

After execution, the system will automatically restart, and the display screen will rotate 90 degrees to display and touch normally.
( ' 90 ' can be changed to 0, 90, 180 and 270, respectively representing rotation angles of 0 degrees, 90 degrees, 180 degrees, 270 degrees)
If the rotate.sh prompt cannot be found, use Method 1 to install the latest drivers