Raspberry Pi Basteln

HDMI Bildschirm fuer den Raspberry Pi

Raspbian Image herunterladen https://www.raspberrypi.org/downloads/raspbian/. Flashen:

sudo dd if=2018-11-13-raspbian-stretch.img of=/dev/mmcblk0 bs=4M

SSH aktivieren:

Datei ssh auf der Partition boot erstellen:

touch ssh

Danach booten und auf IP warten:

sudo nmap -O 192.168..

Raspberry Pi konfigurieren:

raspi-config
  1. ssh aktivieren
  2. root Partition erweitern
  3. Neustarten

Bildschirmaufloesung einstellen

Um die optimale Aufloesung zu finden muss man ein bisschen rechnen. Alle Optionen kann man hier finden: https://elinux.org/RPiconfig.

#slight overclock
gpu_freq=500

#more gpu mem, 64 is std
gpu_mem=256

#ignore any hdmi mode from display
hdmi_ignore_edid=0xa5000080

#custom hdmi mode
hdmi_group=2
hdmi_mode=87

#DVI mode, no audio output
hdmi_drive=1

#up the freq limit above std
hdmi_pixel_freq_limit=245760000

#timing of the display
hdmi_timings=2560 1 70 35 45 1600 1 12 2 2 0 0 0 50 0 204800000 5

#Overscan settings
disable_overscan=1

#framebuffer settings
framebuffer_width=2560
framebuffer_height=1600
max_framebuffer_width=2560
max_framebuffer_height=1600

Die Optionen fuer das HDMI Timing findet man hier: https://www.raspberrypi.org/documentation/configuration/config-txt/video.md