IT 이야기/default

라즈베리파이 스크린 보정

Kjun25 2017. 11. 16. 16:24
반응형

화면 회전

sudo nano /boot/config.txt

제일 아래로 내려서 


//display_rotate=2 추가

lcd_rotate=2

(1은 90도 2는 180도 3은 270도 회전)

reboot 명령어로 재부팅 하여야 적용


화면회전후 터치가 반대로 돌아갔을경우 터지 스크린 보정

cd ~

sudo apt-get install libx11-dev libxext-dev libxi-dev x11proto-input-dev

wget http://github.com/downloads/tias/xinput_calibratir/xinput_calibrator-0.7.5.tar.gz

tar -zxvf xinput_calibrator-0.7.5.tar.gz

cd xinput_calibrator-0.7.5

./configure

make

sudo make install

xinput_calibrator


모서리 4군데 터치 


Section "InputClass" 부터 EndSection 까지 복사


sudo mkdir /etc/X11/xorg.conf.d/99-calibration.conf

sudo nano /etc/X11/xorg.conf.d/99-calibration.conf


복사한 Section~ EndSection 넣고 Ctrl + x 후 y눌러서 저장 


엔터키로 빠져나오면 마무리

반응형