How to completely turn off the vibration of the alarm clock on Xiaomi Redmi Note 9: 4 working ways

Vibration of the alarm clock on Xiaomi Redmi Note 9 can be a real problem โ€” especially if you sleep sensitively or share a bed with someone who wakes up from the slightest shivering of a smartphone. Despite the seeming simplicity of the task, many users find that standard settings do not allow you to completely turn off the vibration when the alarm goes off. In some versions of MIUI, the option is simply not on the menu, and in others it does not work properly after updates.

In this article, weโ€™ll explore all the possible ways, from the obvious to the hidden, including changing system settings through developer settings and third-party utilities, and learn why vibrations can turn on on on on their own even after shutdown, how to get around limitations. MIUI 12/13/14, And what to do if you reset after you reboot, and we'll focus on the nuances specifically for the Redmi Note. 9 (model M2003J15SC/M2003J15SS), As other Xiaomi devices may have different algorithms.

Why the vibration of the alarm clock is not turned off in standard ways

The problem lies in the MIUI architecture: since version 12, Xiaomi has combined vibration settings for alarms, notifications and system sounds into one section.

  • ๐Ÿ”„ Turning off vibration in the alarm profile is often ignored by the system if it is active in the General or No Sound profile.
  • ๐Ÿ“ฑ Updates MIUI Reset custom vibration settings (especially relevant for the Redmi Note 9 after switching to the new version) MIUI 13).
  • ๐Ÿ”ง Hidden settings in Developer Settings can block changes if Do Not Disturb with Vibration previously enabled.

Whatโ€™s more, on the Redmi Note 9, the X-axis linear motor has a separate driver that sometimes conflicts with the Watch app. For example, if you use Googleโ€™s alarm clock (com.google.android.deskclock), the vibration settings can be duplicated or ignored.

โš ๏ธ Note: If you have previously installed custom firmware or modified system files through Magisk, standard ways to turn off vibration may not work.

Method 1: Standard shutdown through alarm settings

Letโ€™s start with the most obvious method that works on most Xiaomi devices with MIUI 12-14, and itโ€™s important that this method may not work if you have firmware beta or modified software installed.

  1. Open the Clock app (icon with dial).
  2. Go to the Alarming Signal tab (bell icon at the bottom of the screen).
  3. Click on an existing alarm clock or create a new one (+ in the lower right corner).
  4. Scroll down to the Sound and Vibration block.
  5. Slip on Vibration and select No Vibration (or Disabled in some versions).
  6. Save the changes with the Ready button.

If the option is non-vibrational or inactive:

  • ๐Ÿ” Check to see if Do Not Disturb mode is enabled with alarm exceptions (it can force vibrations on).
  • ๐Ÿ“ฒ Make sure you donโ€™t have a third-party alarm app installed (like Sleep as Android) that override system settings.

Make sure the alarm is on.|Check the version. MIUI In Settings โ†’ The phone.|Turn off the mode Do not disturb.|Close all background applications-->

On some Redmi Note 9 firmware, the vibration option may be hidden behind an additional menu to open it:

  1. In the alarm clock editor, press three dots (โ‹ฎ) top-right.
  2. Select Additional Settings.
  3. Find the Vibration item when triggered and deactivate it.

โš ๏ธ Attention: After update MIUI 13.0.4+ On the Redmi Note 9, the standard vibration shutdown can be reset when you restart.

Method 2: Turn off vibration through system sound settings

If the standard method didn't work, try turning off the vibration globally for all notifications, including alarms.This method is less accurate, but often solves the problem on MIUI 13/14.

  1. Go to Settings. โ†’ Sound and vibration.
  2. Select Vibration (or Vibration when notified in new versions).
  3. Turn off the Vibration slider when calling and notifying.
  4. Go back and tap on the additional vibration settings.
  5. Find the alarm clock vibration and deactivate it.

On some firmware Redmi Note 9, this item may be called differently:

MIUI versionThe path to adjustmentOption name
MIUI 12.0โ€“12.5Settings โ†’ Sound โ†’ VibrationThe alarm clock vibration
MIUI 13.0โ€“13.5Settings โ†’ Sound and vibration โ†’ AdditionalVibration at alarm clock operation
MIUI 14Settings โ†’ Notifications and Status String โ†’ VibrationSystem vibration (includes alarm clocks)

If the vibration is still triggered after these actions:

  • ๐Ÿ”„ Restart your phone โ€“ sometimes changes only apply after a reboot.
  • ๐Ÿ“Œ Check if you have installed sound profiles from third-party apps (such as MacroDroid or Tasker) that can override your settings.
๐Ÿ“Š What version? MIUI You are using the Redmi Note 9?
MIUI 12
MIUI 13
MIUI 14
Custom firmware
I don't know.

Method 3: Use of Do Not Disturb Mode with Exceptions

Paradoxically, sometimes turning on Do Not Disturb mode helps turn off the alarm clock vibration, which works if the vibration is tied to the system notifications rather than the Watch app itself.

  1. Open Settings โ†’ Notifications and Status bar โ†’ Do not disturb.
  2. Activate the mode by selecting Always or Schedule.
  3. Slip on the exceptions and only allow alarm clocks (turn off all other options).
  4. Return to the basic settings of Do Not Disturb and select No Sound and No Vibration.

This method has a side effect: all other notifications (calls, SMS, messengers) will be completely silenced, but the alarm will continue to go off without vibration, since its sound is allowed in exceptions.

โš ๏ธ Attention: MIUI 14 Do Not Disturb mode can trigger a quiet vibration (slight tremor). To remove it, additionally turn off Vibration when touching in Settings โ†’ Additionally.

๐Ÿ’ก

If the alarm stops working after using this method, check if it conflicts with battery optimization applications (e.g. Security or Battery Saver).

Method 4: Change system parameters through ADB (for advanced)

If all previous methods failed, the radical way is to turn off the vibration at the system level via the Android Debug Bridge (ADB), which requires connecting the phone to a computer and executing several commands.

This method can disrupt other vibration-related functions (such as tactile typing) and only use it if you are prepared for the consequences.

Step 1: Preparation

  • ๐Ÿ–ฅ๏ธ Install. ADB Tools on the computer.
  • ๐Ÿ“ฑ Turn on Debugging. USB on the phone: Settings โ†’ The phone. โ†’ Version. MIUI (Slip 7 times, then Settings โ†’ Additionally. โ†’ For developers โ†’ Debugging by USB.
  • ๐Ÿ”Œ Connect Redmi Note 9 to PC and confirm debugging permission.

Step 2: Execution of commands

Open the command prompt (cmd on Windows or Terminal on macOS/Linux) and type:

adb shell settings put global vibrate_on 0


adb shell settings put system haptic_feedback_enabled 0




adb shell settings put system vibration_intensity 0

To turn off vibration specific to the alarm clock, use:

adb shell settings put global alarm_vibrate 0

Step 3: Reboot

After completing the commands, restart the phone:

adb reboot

If the vibration of the alarm clock has disappeared, but the tactile recoil in other places has also disappeared, return the settings with the command:

adb shell settings put global vibrate_on 1
What if the ADB does not recognize the device?
1. Install official Xiaomi drivers from mi.com.2. Try another one USB-cable (original from charging). 3. Enable the Debugging option in the Developer Settings USB (prohibition of revocation of permits). 4. Restart your phone and PC.

โš ๏ธ Note: Some Redmi Note 9 firmware (e.g, MIUI 13.0.6) ADB You can reset them after the update. To record the changes, use a Magisk module called Settings Database Editor.

Additional Advice and Frequent Mistakes

Even after successfully shutting down the alarm clock, Redmi Note 9 users are facing a recurrence of the problem.

  • ๐Ÿ”„ Reset after update: Xiaomi sometimes resets vibration settings when installing security patches. check settings after each update.
  • ๐Ÿ“ฒ Application conflict: If you have Google Clock, Sleep Cycle or other alarm clocks installed, they may have their own vibration settings. Open each one and turn off the vibration separately.
  • ๐Ÿ”‹ Energy Conservation: Ultra-Economic Regime in MIUI It can force vibrations on for "important" notifications.

If you use dual alarm clocks (e.g. primary and backup), make sure the vibration is turned off in both.Redmi Note 9 sometimes triggers vibration from the system alarm, even if it is turned off in the Watch app.

๐Ÿ’ก

The most reliable method is a combination of method 2 (disable in audio settings) and method 3 (do not disturb mode with exceptions), which is guaranteed to remove vibration on 90% of MIUI firmware.

FAQ: Frequent questions about alarm clock vibration on Redmi Note 9

Why did the alarm clock stop working at all after the vibration was turned off?
You probably accidentally deactivated the alarm clock sound along with the vibration. Check: Open the alarm clock in the Watch app. Make sure you select the melody (not "No sound"). Check the alarm clock volume in Settings. โ†’ Sound. โ†’ Alarm volume. If the problem persists, reset the Clock app settings to Settings. โ†’ Annexes โ†’ Application management โ†’ The clock โ†’ Warehouse โ†’ Clear the data.
Can you turn off the vibration only for a specific alarm clock?
Yes, but only if you have a third-party app installed (like Sleep as Android or Alarmy). In the standard Xiaomi Watch app, vibration settings are applied to all alarm clocks at the same time. A workaround: Create two alarm clocks with different times (like 7:00 and 7:01). In the first, turn off the vibration, in the second, the sound.
The alarm clock's vibration turns on on itself after it's reset. How do you fix it?
It's a known mistake. MIUI 13/14, Solutions: Set a ban on battery optimization for the Watch application. Turn off automatic audio settings in Settings โ†’ Sound. โ†’ Adaptive sound. If nothing helps, use it. ADB-command for permanent disconnection (see Method) 4).
The alarm clock vibrates, but there's no sound. How do you get the sound back?
The problem could be: Sound profile: Switch from Vibration to Sound in the notification curtain. Alarm clock settings: Make sure you select a tune, not No Sound. Loudness: Check the Alarm Slider in Settings โ†’ Sound โ†’ Loudness (it's separate from media and calls!). Application conflict: If you use Google Clock, open its settings and prioritize for sound.
Is there a way to turn off the vibration of the alarm without root rights?
Yes, all the methods in this article (except the Magisk section) work without root. The most effective ones are: Disable via Sound Settings (Method 2). Use Do Not Disturb with Exceptions (Method 3). ADB-Commands (Method 4) โ€“ do not require root, but need debugging USB. If nothing helps, try resetting the Watch app settings (without deleting alarm clock data).