aboutsummaryrefslogtreecommitdiffstats
path: root/source/serial/tests/proof_of_concepts/python_serial_test.py
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@clyne-lp.lan>2021-08-08 22:02:52 -0400
committerClyne Sullivan <clyne@clyne-lp.lan>2021-08-08 22:02:52 -0400
commit707b24dd07236243269cf092728f85172e94e8a4 (patch)
treec136716a5fc9ed9cbf570e24f8f6ab715adc73a2 /source/serial/tests/proof_of_concepts/python_serial_test.py
initial commit
Diffstat (limited to 'source/serial/tests/proof_of_concepts/python_serial_test.py')
-rw-r--r--source/serial/tests/proof_of_concepts/python_serial_test.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/source/serial/tests/proof_of_concepts/python_serial_test.py b/source/serial/tests/proof_of_concepts/python_serial_test.py
new file mode 100644
index 0000000..6f92b84
--- /dev/null
+++ b/source/serial/tests/proof_of_concepts/python_serial_test.py
@@ -0,0 +1,15 @@
+#!/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)
+