Jonathan Wheeler
Jonathan Wheeler
Just did a clean install on a lab computer, and for importing `instrumental.drivers.daq.ni` I got an `ImportError: No module named 'nicelib'` Easily resolved by `pip install nicelib`, but perhaps it...
Hello, I've managed to get instrumental up and running on a Raspberry Pi 3+ (wtih linux-gpib as well). When I run ```python >>> from instrumental import list_instruments >>> list_instruments() /home/pi/miniconda3/envs/py36/lib/python3.6/site-packages/pyvisa/resources/messagebased.py:573:...
Hey, I would like to write a functionality to mock some instruments based on this framework. Something akin to what QCoDeS refers to as a [Manual Instrument](http://qcodes.github.io/Qcodes/user/intro.html?highlight=manual#instrument). Would you be...
I'm wanting to group multiple instruments together into larger instruments, similar to what QCoDeS describes as a [Meta Instrument](http://qcodes.github.io/Qcodes/user/intro.html?highlight=meta#instrument). One idea that I had was to store the instruments, and...
Hey guys, I've developed my own library for controlling hardware over at https://github.com/jondoesntgit/hardware. One of the features that we're implementing in our library is this notion of "logging" any changes...
I'm calling another library that doesn't use the numpy crate. It only uses the "vanilla" ndarray crate, and as such returns an ndarray::Array2 object. For the life of me, I...
The OpenDAP spec provides for server-side functions to aggregate and reduce file size prior to transmission over the network [see here](https://docs.opendap.org/index.php?title=Server_Side_Processing_Functions). Pydap offers an API to write custom server-side functions...