DDC-CI-Tools-for-OS-X
DDC-CI-Tools-for-OS-X copied to clipboard
DDC/CI Tools for OS X, control your monitor through software
Results
2
DDC-CI-Tools-for-OS-X issues
Sort by
recently updated
recently updated
newest added
- OS X 10.9.5 (13F34) - MacBook Air 13-inch, Mid 2013 - Dell U2414H As a workaround I commented out this line ``` - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // [controller_object setControlsToCurrentValues];...
in ddc/ddc.c: ddc_write, the new value is set with: data[5] = (_p_write).new_value; data[4] = 0x1; which is incorrect for values < 0x1ff. It should be: data[4] = ((_p_write).new_value) >> 8;...