USB control of a CRT

Discussion about displays and related hardware including MiSTer filters and video settings.
Koston
Posts: 73
Joined: Sat Feb 13, 2021 12:25 pm
Has thanked: 55 times
Been thanked: 42 times

USB control of a CRT

Unread post by Koston »

I have a relatively "new" CRT with a USB port for software-based OSD. This means it's possible to adjust monitor settings via software.

Someone has made a tool for doing this: https://github.com/ondrej-zary/usbmonctl
And here's a compiled binary for MiSTer: https://0x0.st/XKyO.zip

Example:

Code: Select all

#!/usr/bin/env zsh

fset()
{
    local DEV="/dev/usb/hiddev0"
    usbmonctl -s F,"$@" $DEV
}

fset 0x16=227   # Red gain
fset 0x18=222   # Green gain
fset 0x1A=217   # Blue gain
fset 0x12=180   # Contrast
thorr
Top Contributor
Posts: 1197
Joined: Mon Jul 06, 2020 9:37 pm
Has thanked: 589 times
Been thanked: 271 times

Re: USB control of a CRT

Unread post by thorr »

Neat! It would be cool if it was integrated with a colorimeter.

Post Reply