[참고] Hyper Keyboard Pi에서 Raspbian Buster 사용
6400 단어 RaspberryPibusterraspbian
(2020-04-05) htps : // 기주 b. 코 m / 피모로 / hype r pipe l4의 구성이 변경된 것 같습니다. 그에 따라 업데이트되었습니다.
개요
진슨의 Hyper Keyboard Pi을 받았습니다.
Raspbian Buster에서 사용하도록 LCD와 터치 센서를 설정합니다.
Hyperpixel4의 Pimoroni github 코드를 얻고 LCD 180도 회전과 터치 센서가 잘 움직이도록 패치를 맞추고 설치 스크립트와 dist
폴더의 회전 스크립트를 실행합니다.
TL; DR (RPi3)
sudo apt update && sudo apt install git
git clone https://github.com/pimoroni/hyperpixel4 -b pi3 ## <===== Raspberry Pi 3 以前!!!
cd hyperpixel4
sudo ./install.sh
sudo ./dist/hyperpixel4-rotate right ## right - Landscape, power/HDMI on top とのこと
#
# Reduce Audio Noise / オーディオノイズ軽減.
grep -v 'iwconfig wlan0 txpower 0' /etc/rc.local | sed -e 's/exit 0/iwconfig wlan0 txpower 0\nexit 0/' | sudo tee /etc/rc.local
sudo apt update && sudo apt install git
git clone https://github.com/pimoroni/hyperpixel4 -b pi3 ## <===== Raspberry Pi 3 以前!!!
cd hyperpixel4
sudo ./install.sh
sudo ./dist/hyperpixel4-rotate right ## right - Landscape, power/HDMI on top とのこと
#
# Reduce Audio Noise / オーディオノイズ軽減.
grep -v 'iwconfig wlan0 txpower 0' /etc/rc.local | sed -e 's/exit 0/iwconfig wlan0 txpower 0\nexit 0/' | sudo tee /etc/rc.local
git clone https://github.com/pimoroni/hyperpixel4 -b pi4
가 될 것 같지만 시도하지 않았습니다. 환경
2020-02-13-raspbian-buster.img
Hyper Keyboard Pi 정보
공식 사이트?
Raspberry Pi에 액정, 게임 패드, 풀 키보드를 붙여 핸드 헬드 컴퓨터로 해 버리는 것
설명서의 면책 사항 6) 사운드 출력은 무음시 노이즈가 나옵니다. 알려주십시오.
라즈파이의 헤드폰 단자는 상당히 노이즈가 느껴진다. apt의 update와 upgrade에서 삐삐가가 울리기도 했다.
(추가) sudo iwconfig wlan0 txpower 0에서 노이즈가 맞는 것. Wifi와 간섭?!
/etc/rc.local에 추가
...
#
iwconfig wlan0 txpower 0
exit 0
재기동 후, Tx-Power=0이 되어 있으면 좋다.
pi@raspberrypi:~ $ iwconfig wlan0
wlan0 IEEE 802.11 ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=0 dBm
Retry short limit:7 RTS thr:off Fragment thr:off
Power Management:on
pi@raspberrypi:~ $
PP44-USB D-/PP45-USB D+
). (외부 USB 장치를 사용할 때는 키보드에서 사용하는 포트와 부딪치지 않는 곳에 꽂습니다) PP25-AUDIO_L-AUD_PWM1 / PP26-AUDIO_R-AUD_PWM0
)에서 헤드폰 앰프(TDA1308)에 연결. 그래서, Audio 출력의 설정이 필요한 때는, 3.5mm ('headphone') jack
를 사용하도록 한다 위와이 키 할당.
키
- [↑] [↓] [←] [→] : カーソルキー ↑ ↓ ← →
- [L]: 'z'
- [R]: 'x'
- [Select]: '5'
- [HotKey]: 's'
- [Start]: '1'
- [A]: 'c'
- [B]: L-Ctrl
- [X]: L-Shift
- [Y]: 'v'
관련
"Raspberry Pi 3 기반 핸드헬드 PC가 자작할 수 있는 "Hyper Keyboard pi"가 판매 중" (에르미타주 아키하바라 2019.07.25)
"Raspberry Pi 3을 핸드헬드 PC화하는 키트 "Hyper Keyboard pi"가 입하"
AKIBA PC Hotline! 편집부 2019년 7월 25일
기타
이전 설정
sudo apt update && sudo apt install git
mkdir -p ~/Pimoroni
cd ~/Pimoroni
git clone https://github.com/pimoroni/hyperpixel4
sed -i -e 's/touchscreen-size-x = .*/touchscreen-size-x = <480>;/g' -e 's/touchscreen-size-y = .*/touchscreen-size-y = <800>;/g' hyperpixel4/src/hyperpixel4.dts
sed -i -e 's/dtoverlay=hyperpixel4"/dtoverlay=hyperpixel4:rotate"/g' -e 's/display_rotate=3/display_rotate=1/g' hyperpixel4/install.sh
cd hyperpixel4
sudo ./install.sh
Reference
이 문제에 관하여([참고] Hyper Keyboard Pi에서 Raspbian Buster 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mt08/items/b965680297cf6c7d6d2b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)