349d254013
Reset leonardo and wait for the connection to be established.
8 lines
108 B
Python
Executable file
8 lines
108 B
Python
Executable file
#! /usr/bin/python
|
|
|
|
import sys
|
|
import serial
|
|
|
|
ser = serial.Serial(sys.argv[1], 1200)
|
|
ser.open()
|
|
ser.close()
|