I am using owon_multi_cli via subprocess in Python. It works, thx for the code! But some things create headaches.
I currently use this without sudo and have no problems. Can I rely on not needing sudo in the future, or does it depend on other settings? If I needed sudo, the use of owon_multi_cli would become impossible for me due to the need for inclusion in bigger project. Could you explain when and why it could be required?
As I need it in Python, I am wondering whether it may now or in the future become available as a "Pure-Python" program?
I am using subprocess in this way:
scmd = ["OWON/owon_multi_cli", '-a', 'A6:C0:80:E3:85:9D', '-t', 'ow18e', "-1"]
suboutput = subprocess.run(scmd, capture_output=True)
value = float((suboutput.stdout.decode('UTF-8').strip().split(" "))[1])
Code is ok, but it runs for 1 ... 1.5 sec! This is long. Any option for making it shorter?
I am using owon_multi_cli via subprocess in Python. It works, thx for the code! But some things create headaches.
I currently use this without sudo and have no problems. Can I rely on not needing sudo in the future, or does it depend on other settings? If I needed sudo, the use of owon_multi_cli would become impossible for me due to the need for inclusion in bigger project. Could you explain when and why it could be required?
As I need it in Python, I am wondering whether it may now or in the future become available as a "Pure-Python" program?
I am using subprocess in this way:
Code is ok, but it runs for 1 ... 1.5 sec! This is long. Any option for making it shorter?