Poodletooth-iLand/panda/python/Lib/serial/writeblockingtest.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

12 lines
No EOL
194 B
Python
Executable file

import serial
import time
def test():
ser = serial.Serial(0, 300)
print time.time()
ser.write('*' * 120)
print time.time()
ser.close()
if __name__ == '__main__':
test()