This content originally appeared on DEV Community and was authored by Amal Mathew
Are you the kind of person who keeps Device Manager open just to check which serial (COM) port your board decided to grab this time?
Yeahβ¦ that used to be me. As a firmware engineer, plugging in boards and chasing COM numbers was part of the daily grindβand honestly, pretty boring.
Meet Serial Spotter
I built a tiny Windows app that instantly lists every connected serial port along with all the juicy details:
- COM number
- USB VID:PID
- Device Serial info
Just launch the app and boomβeverythingβs right there.
Need to refresh after a hardware change? Hit the keyboard shortcut and youβre done.
Tech Stack
- Python + Kivy framework
- Packaged for Windows 7/8/10/11
Try It Out
Download: [https://tinkererway.dev/serialspotter]
Source Code: [https://github.com/tinkererway/serialspotter]
Because lifeβs too short to keep staring at Device Manager.
This content originally appeared on DEV Community and was authored by Amal Mathew