12 PARITY = serial.PARITY_NONE
13 STOP_BITS = serial.STOPBITS_TWO
14 BYTE_SIZE = serial.EIGHTBITS
16 OUTPUT_ENCODING =
'latin_1' 21 READ_SLEEP_TIME = 0.05
25 RESPONSE_END_WORDS = [CMD_SUCCESS, CMD_ERROR]
29 OUTPUT_STRIP_CHARS = string.whitespace +
'>' 33 ''' Exception raised when things go wrong with the robot arm. ''' 38 ''' Create a serial connect to the arm. ''' 39 return serial.Serial(port, baudrate=BAUD_RATE, parity=PARITY,
40 stopbits=STOP_BITS, bytesize=BYTE_SIZE)
44 ''' Find the serial port the arm is connected to. ''' 48 if usb.core.find(idVendor=0x0403, idProduct=0x6001)
is None:
52 ports = glob.glob(port_glob)
61 '''# Write a request out. 62 if sys.version_info[0] == 2: 63 ser.write(str(req).encode('utf-8')) 65 ser.write(bytes(req, 'utf-8')) 67 # Wait a short period to allow the connection to generate output. 70 # Read output from the serial connection check if it's what we want. 71 res = ser.read(ser.in_waiting).decode(OUTPUT_ENCODING) 72 if expected_res in res:''' 75 raise ArmException(
'ST Robotics connection found, but is not responsive.' 76 +
' Is the arm powered on?')
81 ''' If s ends with an element of the list li, that element will be 82 returned. If multiple elements match, the first will be returned. If no 83 elements match, returns None. ''' 85 if s.endswith(ending):
91 ''' Represents an ST Robotics arm. ''' 99 ''' Open a serial connection to the arm. ''' 106 if self.
port is None:
111 if not self.
ser.isOpen():
114 if not self.
ser.isOpen():
115 raise ArmException(
'Failed to open serial port. Exiting.')
121 ''' Disconnect from the arm. ''' 128 ''' Write text out to the arm. ''' 130 if sys.version_info[0] == 2:
131 text_bytes = str(text.upper()).encode(
'utf-8')
133 text_bytes = bytes(text.upper(),
'utf-8')
138 def read(self, timeout=READ_TIMEOUT, raw=False):
139 ''' Read data from the arm. Data is returned as a latin_1 encoded 140 string, or raw bytes if 'raw' is True. ''' 141 time.sleep(READ_SLEEP_TIME)
143 out = raw_out.decode(OUTPUT_ENCODING)
145 while len(out) == 0
or ending_in(out.strip(OUTPUT_STRIP_CHARS), RESPONSE_END_WORDS)
is None:
146 time.sleep(READ_SLEEP_TIME)
147 time_waiting += READ_SLEEP_TIME
149 out = raw_out.decode(OUTPUT_ENCODING)
151 if time_waiting >= timeout:
158 '''Sends a command to stop the arm during the $RUN procedure''' 166 '''Reads arm position during $RUN and returns joint counts as an integer list, ordered upwards from waist to wrist. Takes input last known position in joint counts''' 171 if (out.find(
'SPEED = ')) <> -1 :
172 out = out[ (out.find(
'SPEED = ') + 8) :]
173 for i
in range (0, len(out)):
174 if not out[i].isdigit() :
179 for i
in range (0,5) :
181 while space ==
True :
182 if not (out[0].isdigit()
or out[0] ==
'-') :
187 while space ==
False :
188 if (out[0].isdigit()
or out[0] ==
'-') :
198 ''' Dump all output currently in the arm's output queue. ''' 202 return raw_out.decode(OUTPUT_ENCODING)
206 ''' True if the serial connection to arm is open. False otherwise. ''' 207 return self.
ser.isOpen()
if self.
ser else False 211 ''' Returns status of the robot arm. ''' 215 'Bytes Waiting': self.
ser.in_waiting
if self.
ser else 0
def dump(self, raw=False)
def r12_serial_port(port)
def search_for_port(port_glob, req, expected_res)
def connect(self, port=None)
def read(self, timeout=READ_TIMEOUT, raw=False)