Quick Fix: Keyboard Brightness Controls on macOS (external Apple Display)

I recently had an issue where the keyboard controls to adjust monitor brightness weren’t functioning on my Apple Macbook Pro running macOS Sierra. The Displays pane in System Preferences showed no brightness adjustment despite showing the correct monitor visual and name (LED Cinema Display, in my case).

It turns out that Apple uses the USB connection to communicate with these monitors. That connection had, for one reason or another, failed to be initialized or was erroneously terminated. The fix was simple: unplug the USB cable that goes from the monitor to the computer from the USB port on the computer, then reinsert it. No restarting necessary.

After this fix, the Displays pane went back to normal showing the brightness adjustment:

macOS Sierra Displays preference pane showing brightness adjustment

 
5
Kudos
 
5
Kudos

Now read this

Co-dependent Models in Rails

Sometimes you have a one-to-many relationship in your Rails models and you want to allow nested attributes at the time of creation. So you do this: # Seems like it would work, but does NOT: class User < ApplicationModel has_many :tags... Continue →