List all available serial port with Python (linux/win) Posted by Muhammad Sigit Dude On 1:45 AM Add Comment PYTHON import serial import os.path def scan(): available = [] if os.path.exists('/dev') == 1: for i in range(256): ... Read More