Sziasztok!
A Raspberry Pi-felbontását a raspi-config-al 4K 60 Hz-re állítottam. A probléma, hogy így a TV-n fekete keret van a kép körül. Valamint túl kicsi. Vissza szeretném állítani FullHD-re, de ha a raspi-config-ban újra rámegyek a resolution-ra, visszadob a főmenübe. Újra is volt indítva a Rasppberry.
Nem szeretném újratelepíteni, mert már lényegében minden be van állítva rajta. Egy kiosk lesz belőle. Hogyan tudnám átállítani a felbontást?
- 664 megtekintés
Hozzászólások
Gui nem jatszik? Ha nem, akkor /boot/config.txt, hdmi_group es hdmi_mode beallitasaval.
Ha TVre van rakotve, akkor hdmi_group=1, ha monitorra, akkor hdmi_group=2
Ha hdmi_group=1-re allitottad, akkor a hdmi_mode=16 parameterrel 1920x1080 lesz a kepernyo felbontasa kovetkezo reboottol.
Ha hdmi_group=2, akkor hdmi_mode=82 parameterrel tudsz 1920x1080-as felbontast elerni.
Kulfoldiul pedig itt egy remek tutorial, https://pimylifeup.com/raspberry-pi-screen-resolution/
- A hozzászóláshoz be kell jelentkezni
Köszi, holnap megnézem.
- A hozzászóláshoz be kell jelentkezni
Köszi, ma is tanultam valamit...
CEA stands for Consumer Electronics Association and is the display standard that is typically used on a TV.
This CEA HDMI group is represented by the number 1.
DMT stands for Display Monitor Timings and is the standard that is typically used by monitors.
The DMT HDMI group is represented by the number 2.
- A hozzászóláshoz be kell jelentkezni
- A hozzászóláshoz be kell jelentkezni
Ajanlott olvasmány:
konkrétan:
https://www.raspberrypi.org/documentation/configuration/config-txt/vide…
pl
# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
disable_overscan=1
# uncomment the following to adjust overscan. Use positive numbers if console
# goes off screen, and negative if there is too much border
#overscan_left=16
#overscan_right=16
#overscan_top=16
#overscan_bottom=16
overscan_left=38
overscan_right=38
overscan_top=22
overscan_bottom=22
# uncomment to force a console size. By default it will be display's size minus
# overscan.
#framebuffer_width=1280
#framebuffer_height=720
- A hozzászóláshoz be kell jelentkezni