Skip to content
macOSFix Published Updated 4 min readViews unavailable

Fixing Bluetooth Connectivity Issues on macOS

A Bluetooth device won't connect, keeps dropping, or macOS doesn't see it — a systematic path through the common causes before a full reset.

Bluetooth problems on macOS — a device that won’t pair, one that pairs but disconnects repeatedly, or a Mac that stops seeing any Bluetooth devices at all — usually resolve through a specific, ordered set of checks rather than needing a full system reset immediately.

Step 1: confirm Bluetooth is actually enabled and not in airplane-adjacent power saving

 → System Settings → Bluetooth → confirm the toggle is on

Step 2: check for interference from 2.4GHz Wi-Fi

Bluetooth and 2.4GHz Wi-Fi share the same frequency band and can interfere with each other, especially with a Wi-Fi router placed very close to the Mac — switching the Wi-Fi network to 5GHz, if available, removes this specific source of interference.

Step 3: remove and re-pair the problematic device

System Settings → Bluetooth → hover the device → (i) → Forget This Device

Then put the device back into pairing mode and reconnect — this clears a corrupted pairing record, which is a common cause of a device that connects but immediately drops.

Step 4: check the device’s own battery level

For battery-powered accessories (mice, keyboards, headphones), a low battery frequently causes exactly the “connects, then randomly drops” symptom, well before the device fully dies — worth ruling out with a fresh charge before deeper troubleshooting.

Step 5: reset the Bluetooth module via the menu bar (if available), or restart

Hold Shift+Option and click the Bluetooth menu bar icon →
  "Debug" → "Reset the Bluetooth Module"

This option isn’t present in every macOS version’s menu bar by default; a full restart accomplishes something similar if it isn’t available.

Step 6: check for a corrupted Bluetooth preference file

sudo pkill bluetoothd

Killing the Bluetooth daemon forces macOS to restart it fresh — a lower-impact step than a full reboot, worth trying before more invasive options.

See resetting NVRAM and SMC for the full procedure, appropriate for persistent Bluetooth issues that survive the steps above.

Step 8: check for a known compatibility issue after a recent macOS update

Bluetooth accessory compatibility issues occasionally appear specifically after a macOS update, before the accessory manufacturer ships a firmware fix — checking the accessory manufacturer’s own support pages for a known issue matching your specific symptom and macOS version is worth doing before assuming the problem is unique to your setup.

Why re-pairing beats troubleshooting a “connected but broken” pairing

A device that’s paired but behaving badly often has a subtly corrupted pairing record rather than an active connection problem — completely forgetting the device and re-pairing from scratch resolves this class of issue far more often than trying to repair an existing, already-broken pairing, which is why it’s worth doing early rather than as a last resort.

Step 9: read the actual Bluetooth log, not just guess

log stream --predicate 'subsystem == "com.apple.bluetooth"' --level debug

For a problem that resists every step above, streaming live Bluetooth subsystem logs while reproducing the issue (attempting to connect, watching it drop) shows the actual internal error macOS logged at the moment of failure — connection timeout, authentication failure, an unexpected disconnect reason code — rather than only the generic, uninformative failure the user interface itself shows. This is considerably more work than the steps above, but it’s the difference between guessing at a cause and actually confirming one, particularly useful for an intermittent problem that doesn’t reproduce reliably enough to troubleshoot by trial and error alone.

Why AirPods and other Apple accessories behave slightly differently

Apple’s own Bluetooth accessories (AirPods, the Magic Keyboard and Trackpad family) use Apple’s proprietary W1/H1/H2 chips, which layer additional proprietary pairing and handoff behavior on top of standard Bluetooth — automatic switching between a user’s signed-in Apple devices, for instance, depends on iCloud account state and proximity detection that standard third-party Bluetooth accessories have no equivalent of at all. A troubleshooting step that works cleanly for a generic Bluetooth mouse (forget and re-pair, for instance) can behave differently for AirPods specifically, since re-pairing an Apple accessory sometimes requires resetting it physically (holding its own setup button) in addition to forgetting it in System Settings, precisely because of that extra proprietary state layered on top of the underlying standard Bluetooth pairing record.

Related:

Sources:

Comments