mirror of
https://github.com/wjwwood/serial.git
synced 2026-01-22 11:44:53 +08:00
16 lines
273 B
Python
16 lines
273 B
Python
#!/usr/bin/env python
|
|
|
|
import serial, sys
|
|
|
|
if len(sys.argv) != 2:
|
|
print "python: Usage_serial_test <port name like: /dev/ttyUSB0>"
|
|
sys.exit(1)
|
|
|
|
sio = serial.Serial(sys.argv[1], 115200)
|
|
sio.timeout = 250
|
|
|
|
while True:
|
|
sio.write("Testing.")
|
|
print sio.read(8)
|
|
|