본문 바로가기

Study/Raspberry Pi

라즈베리파이 HDMI 터치 회전

  • wifi연결
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
network={
	ssid="KITECH"
	key_mgmt=WPA-EAP
	eap=PEAP
identity="계정정보"
password="비밀번호"
}
reboot

 

  • 한글 폰트 설치
sudo apt install fonts-nanum
reboot

 

  • 업데이트
sudo apt update
sudo apt upgrade

 

  • 한글 입력 
sudo apt install fcitx fcitx-hangul
sudo nano /etc/default/im-config

- 4줄 auto -> fcitx 수정

- Ctrl + x -> y -> 엔터

- pi -> 기본 설정 -> 입력기 -> 확인 -> 예 -> default -> 확인 -> 확인

 

  • 디스플레이 회전
sudo nano /boot/config.txt
#dtoverlay=vc4-kms-v3d     주석 처리
display_hdmi_rotate=1  추가

-  0 = 0도 , 1 = 90도, 2 = 180도, 3 = 270도

- 임시 회전(재부팅시 초기화)

xrandr --output HDMI-1 --rotate right

 

  • 디스플레이 해상도 설정
sudo nano /boot/config.txt
hdmi_group=2
hdmi_mode=87
hdmi_cvt=1024 600 60 6 0 0 0
hdmi_drive=1
hdimi_force_hotplug=1

 

  • 터치 회전
sudo nano /usr/share/X11/xorg.conf.d/40-libinput.conf
Section "InputClass"
	Identifier "libinput touchscreen catchall"
	MatchIsTouchscreen "on"
	Option "TransformationMatrix" "0 1 0 -1 0 1 0 0 1"
	MatchDevicePath "/dev/input/event*"
	Driver "libinput"
EndSection

- Ctrl + x -> y -> 엔터

90° = 옵션 "TransformationMatrix" "0 1 0 -1 0 1 0 0 1"
180° = 옵션 "TransformationMatrix" "-1 0 1 0 -1 1 0 0 1"
270° = 옵션 "TransformationMatrix" "0 -1 1 1 0 0 0 0 1"

'Study > Raspberry Pi' 카테고리의 다른 글

[Raspberry Pi]01. OS 설치  (0) 2014.01.07
라즈베리 파이 구입!!!  (0) 2013.12.20