- added support for TCP connection through Ev3Server

git-svn-id: http://moon:8086/svn/software/trunk/projects/opencv@340 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2016-10-23 16:52:12 +00:00
parent 5ab9ce1447
commit ab063f1d74
2 changed files with 180 additions and 140 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ def append_str(byte_list, str_value):
def _read_bytes(port, num_bytes):
return [ord(i) for i in port.read(num_bytes)]
return port.read(num_bytes)
def _write_bytes(port, byte_seq):