Search found 2 matches

by markku
Tue Jul 14, 2020 8:14 am
Forum: LabVIEW
Topic: reset the connection of the Pico
Replies: 11
Views: 14036

Re: reset the connection of the Pico

Hi! Should the following work for multiple 2405a devices on Raspberry Pi 4 (Buster, 4.19.118-v7l+) / Python 3.8: from picosdk.ps2000a import ps2000a import ctypes no_of_devices = 2 for i in range(no_of_devices): ps2000a.ps2000aCloseUnit(ctypes.c_int16(16384 + i)) For me, it returns 12 for both devi...
by markku
Sat Jul 04, 2020 11:34 am
Forum: LabVIEW
Topic: reset the connection of the Pico
Replies: 11
Views: 14036

Re: reset the connection of the Pico

Hi! Should the following work for multiple 2405a devices on Raspberry Pi 4 (Buster, 4.19.118-v7l+) / Python 8: from picosdk.ps2000a import ps2000a import ctypes no_of_devices = 2 for i in range(no_of_devices): ps2000a.ps2000aCloseUnit(ctypes.c_int16(16384 + i)) For me, it returns 12 for both devices...