usb_4_mic_array
usb_4_mic_array copied to clipboard
Tuning.py (AttributeError: 'array.array' object has no attribute 'tostring')
Running tuning.py gives me this error.
Traceback (most recent call last):
File "tuning.py", line 197, in <module>
main()
File "tuning.py", line 181, in main
print('{:24} {}'.format(name, dev.read(name)))
File "tuning.py", line 109, in read
response = struct.unpack(b'ii', response.tostring())
AttributeError: 'array.array' object has no attribute 'tostring'
Solved it by changing this line
response = struct.unpack(b'ii', response.tostring())
to this
response = struct.unpack(b'ii', response)
Just made a pull request to address this issue.
See #54 .
I got the same issue, and @DavidGoedicke's PR worked for me.