Qcodes
Qcodes copied to clipboard
Modular data acquisition framework
Add visa_kwargs argument to visa instrument init to allow settings to be passed to pyvisas `open_resource`. TODO - [ ] News fragment - [ ] Can this be tested with...
I have previously [added a driver](https://github.com/QCoDeS/Qcodes/pull/5021) for this device, but it is missing over voltage protection. This PR adds the parameter for OVP and also trip_reset
And therefor the ability to sweep a parameter using the syntax param[0,1.0,10] * This syntax is confusing since its not really indexing the parameter * The implementation requires the input...
Looks like the original issue is fixed Thou I am seeing a warning from building Lakeshore documentation. It looks like this is coming from the std lib documentation of ``LakeshoreModel325Status``...
This PR finds a default experiment and attach it to a measurement when it is created. This behavior matches the document of [`Measurement` class ](https://github.com/QCoDeS/Qcodes/blob/master/qcodes/dataset/measurements.py#L687), which states ``` ... Args:...
If we go this way there are a bunch of TODOs - [ ] Make sure this has good error messages - [ ] Expose to higher level api where...
Changes proposed in this pull request: - Add a function to merge (very similar) datasets. The idea is that a measurement may have been broken into smaller pieces by instrumental...
Fixes #1197, fixes #741, fixes #345 Changes proposed in this pull request: - Remove the entire notion of `functions` as attributes of an instrument As the issues above show, functions...
something like ```python etp = ElapsedTimeParameter() dond(etp, stuff_to_sweep_and_measure_here, ...) ``` first of all, `ElapsedTimeParameter` does not have a `set` method, so it can't be used in `dond` as an independent...
**Updated** to reflect change in name of class ### Discussed in https://github.com/QCoDeS/Qcodes/discussions/5309 Originally posted by **lucas-hak** August 10, 2023 Hello, I am trying to make a ConnectionPlus to a database....