3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ラズパイ3の解像度設定を変更する

Posted at

#はじめに
ラズパイ3でVGAディスプレイに出力される画面の解像度がおかしい。。

Google先生に聞いてみたら同じような人がたくさんいたので、対処方法は簡単に分かりました。
参考ページ

##対処方法
1.「/boot/config.txt」のバックアップとる
cp -p /boot/config.txt /boot/config.txt.org

2.「/boot/config.txt」の修正
!!設定間違えると、画面が黒くなって表示されなくなるようなので気をつけてください!!


【修正前】
     27 # uncomment to force a specific HDMI mode (this will force VGA)
     28 #hdmi_group=1
     29 #hdmi_mode=1 


【編集後】
     27 # uncomment to force a specific HDMI mode (this will force VGA)
     28 hdmi_group=2
     29 hdmi_mode=35

※"hdmin_group"と"hdmi_mode"の値は、以下のリンクから適切な値を選択する必要があります
参考

3.ラズパイを再起動
sudo shutdon -r now

画面の解像度が正常に表示されるようになりました!

3
4
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?