Ich möchte gern ein altes Display 7 Zoll mit 800x480 Pixeln via DPI24 an den GPIO Pins betreiben.
Raspberry 3B 1.2
Wie erstelle ich nun die hdmi-timings mit den Daten des Datenblatts des Display?
Gibt es da eine Anleitung? Ich habe den DPI Calculator von hier
https://nerdhut.de/software/raspberry-pi-dpi-calculator/
benutzt, aber der Screen bleibt schwarz.
Meine ermittelten Testwerte , die nicht laufen sind diese:
Code
# Disable spi and i2c, we need these pins.
dtparam=spi=off
dtparam=i2c_arm=off
# Set screen size and any overscan required
dtoverlay=dpi24
overscan_left=0
overscan_right=0
overscan_top=0
overscan_bottom=0
framebuffer_width=800
framebuffer_height=480
# enable the DPI display
enable_dpi_lcd=1
display_default_lcd=1
# set up the size to 800x480
dpi_group=2
dpi_mode=87
# set up the hsync/vsync/clock polarity and format
dpi_output_format=0x70017
# set up the size to 800x480
hdmi_timings=800 0 8 1 16 480 0 5 3 8 0 0 0 60 0 24500000 5
Display More
Wie ermittele ich die H und V Duration Werte?
Irgendwie mache ich hier alles falsch oder?
Kann mir jemand auf die Sprünge helfen?