[RPi] 安裝 3.5 TFT 螢幕,翻轉180 度畫面
2019-04-25
最近買了 一個 3.5 吋的小螢幕給我的 Raspberry Pi ,這是走 GPIO 顯示畫面,不是走 HDMI ,安裝很簡單看下面範例
sudo rm -rf LCD-show
git clone https://github.com/goodtft/LCD-show.git
chmod -R 755 LCD-show
cd LCD-show/
sudo ./LCD35-show
之後完成後會長這樣
但是問題來了,因為預設朝下的地方有電的插孔,如果能夠做 180度翻轉,不就是可以平放在桌上於是網路上找一下
終於有一個是有用的,很 tricky 分享一下
翻轉螢幕
sudo nano /boot/config.txt
找到 dtoverlay=tft35a 修改成 dtoverlay=tft35a:rotate=270
為何翻轉 270 是翻轉 180 ,因為預設是 90 度
之後發現觸控有問題 接下來
sudo nano /etc/X11/xorg.conf.d/99-calibration.conf
加入
Option "InvertY" "true"
Option "InvertX" "true"
在 End Section 之前
結果 :
參考:
https://github.com/goodtft/LCD-show/issues/34
標籤:
IoT
,
Linux
,
Raspberry Pi
,
RPi
-- Yesterday I wrote down the code. I bet I could be your hero. I am a mighty little programmer. 如果這篇文章有幫助到您,簡單留個言,或是幫我按個讚,讓我有寫下去的動力...