jds6600_python icon indicating copy to clipboard operation
jds6600_python copied to clipboard

Very helpful APi! + Python2 Hack

Open 01tot10 opened this issue 6 years ago • 0 comments

Hey hey!

Just wanted to thank you for writing this API, it helped me a lot yesterday when trying to figure out the serial protocol for my JDS6600 signal generator!

Also, just in case it might help someone else: I was able to use the API natively within Python2 by importing the str() function from future. ( I should for sure move to Python3 but I guess there's still some others like me stuck in the past )

Here are the bits of code I added to the imports:

from __future__ import unicode_literals from builtins import str

01tot10 avatar Jul 24 '19 10:07 01tot10