USB-serial with PuTTY
PuTTY is a terminal emulator that also works well for serial port connections.
PuTTY is available on Linux like:
apt install putty
macOS PuTTY install
On macOS, PuTTY is obtained by:
brew install putty
If PuTTY doesn’t link on macOS due to “pterm” name conflict, create an alias by finding the putty binary using macOS Homebrew findutils that makes the command “gfind” in place of “find”.
gfind $(brew --prefix) -name putty -type f
Create a shell alias based on gfind results like:
alias putty="/opt/homebrew/Cellar/putty/<version>>/bin/putty"
Windows PuTTY install
On Windows, putty can be installed with winget:
winget install PuTTY.PuTTY
PuTTY connection
Start PuTTY in Terminal command line or from the Windows Start Menu.
putty
which opens the PuTTY GUI.
Select the serial line (say /dev/ttyUSB0 for Linux, COM5 for Windows) and baud rate (say 115200).
PuTTY serial config
PuTTY main load screen