You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser = argparse.ArgumentParser(description='Process data from serial port sent from the arduino.')
parser.add_argument('--serial', dest='serial_name', action='store_const', default='/dev/ttyUSB0', help='serial port where arduino data can be read from. On *nix it is found in ')
ser = serial.Serial(parser.serial_name, baudrate=9600, timeout=1)