09-29-2023 05:10 PM
Is there a way to talk to the NI-8451 USB-to-SPI interface from Python using a Python package such as PyVISA ?
09-29-2023 05:50 PM
USB-8451 is not a VISA device and requires NI 845x drivers to control the device.
There is no official direct support for 845x in Python as per this NI article - https://knowledge.ni.com/KnowledgeArticleDetails?id=kA00Z000001DbtrSAC&l=en-US
But, you can the 845x C dll in Python to use and looks like some folks have even shared it on Git for public use.
https://github.com/amitibo/pylibni845x
09-29-2023 06:27 PM
Thanks, I will take a look at the accessing the DLL approach.