Hackster is hosting Hackster Holidays, Ep. 4: Livestream & Giveaway Drawing. Start streaming on Wednesday!Stream Hackster Holidays, Ep. 4 on Wednesday!
Chuck Tung
Published © TAPR-OHL

Mute Button for MS Teams

No more fumbling for the mute when you need to speak. Just hit the button!

BeginnerFull instructions provided22,611
Mute Button for MS Teams

Things used in this project

Hardware components

Button
×1
Arduino Micro
Arduino Micro
Make sure to get it without headers
×1

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)
Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Custom parts and enclosures

cover STL file

Print it on your printer

base STL

Print it on your printer

Schematics

Schematics

Code

AutoHotKey Macro

AutoHotKey
1) Install AutoHotkey
2) Create a text file "teams_mute.ahk" with contents below
3) Open the file with autohotkey
4) Ctrl-Alt-M should send mute command to teams window, then switch back to the active window
5) Optional: add to startup applications:
a) Window-R and type: shell:startup
b) It will bring up the folder with your startup apps
c) create a shortcut to the script and place it here
#UseHook
; Ctrl-Alt-M
^!M::
WinGet, active_id, ID, A
SetTitleMatchMode, 2
;DetectHiddenWindows, On
WinGet, fensterID, List, ahk_exe Teams.exe
WinActivate, % "ahk_id " fensterID1
Send ^+m
SoundBeep, 200, 100
WinActivate, ahk_id %active_id%
Return 

mute_button

Sketch

Credits

Chuck Tung

Chuck Tung

0 projects • 1 follower

Comments