-
Notifications
You must be signed in to change notification settings - Fork 0
Tut_ForceFullDR
In case You find that the black levels on the HDMI monitor doesn't go as black as the monitor should be able to. You can try this fix that has worked for me:
By default, the Raspberry Pi often outputs a "Limited" color range (16-235) over HDMI, which lifts black levels and makes them look milky. We fix this by running a script via systemd on boot to force "Full" RGB (0-255).
Navigate to the VOP folder and grant execution rights to the utility script in its specific tools folder:
cd ~/VOP
chmod +x CaliTools/FullRGBFix/force_full_rgb.sh
Create a new service file using the nano text editor:
sudo nano /etc/systemd/system/vop-rgb-fix.service
Paste the following text into the editor. (Note: Replace <YOUR_USERNAME> with your actual Pi username):
[Unit]
Description=Force Full RGB Range for VOP Monitor
After=multi-user.target
[Service]
Type=oneshot
ExecStart=/home/<YOUR_USERNAME>/VOP/CaliTools/FullRGBFix/force_full_rgb.sh
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
Save the file and exit nano (Ctrl+O, Enter, Ctrl+X).
Tell systemd to reload its configuration and enable your new service to run on every boot:
sudo systemctl daemon-reload
sudo systemctl enable vop-rgb-fix.service
sudo systemctl start vop-rgb-fix.service
Once this is enabled. Your deep blacks should be permanently restored on the monitor upon every startup.
Repo run by: https://jmalmsten.com