Qcodes icon indicating copy to clipboard operation
Qcodes copied to clipboard

Modular data acquisition framework

Results 240 Qcodes issues
Sort by recently updated
recently updated
newest added

This should eventually enable us to cleanup the use of new and old style interdeps - [ ] Ensure that these are not used internally - [ ] Update plottr...

### Steps to reproduce 1. Run through the “15 minutes to QCoDeS tutorial” up to [27] 2. Click both Snapshot buttons 3. Click the *left* snapshot tab 4. Click the...

I have two questions regarding the driver for SignalHound USB_SA124B: 1. I see that, unlike for example the EraSynth drivers, this driver doesn't take the COM port or any other...

```python import qcodes as qc from qcodes import ParamSpec, new_data_set, new_experiment dataSet = new_data_set("sweep gate") exp = new_experiment("majorana-qbuit", sample_name="flying brdige") parameter_a = ParamSpec("a", "numeric") parameter_b = ParamSpec("b", "numeric", key="value", number=1)...

bug
new dataset

Hopefully fix stability issues that we have been seeing with the AMI 430 magnet The idea is to ensure that we always recv until we get read termination char. The...

We have set aliases for *channel* parameters in a station config file. Before v0.9.0, the aliases were assigned to the main instrument, now they are assigned to the specific channel...

The qcodes `__init__.py` file contains the following lines (116-120): ```Python # ensure to close all instruments when interpreter is closed import atexit import logging atexit.register(Instrument.close_all) ``` This is meant to...

This PR aims to add a driver for the UF200R wafer probing machine. The PR will remain "draft" for some time as @kewl-kev, @Akshita07 and I home in on the...

driver

Changes proposed in this pull request: - Adds a driver for the Lakeshore Model 625 magnet driver - This driver originates from qcodes_contrib_drivers

driver

Currently we are relying on either `__del__` to ensure that an instruments connections are closed when it is garbage collected. This does not work well and is very hard to...