Christoph Buchner

Results 286 comments of Christoph Buchner

I see. This should give you 3 csv files named `testarray_0.csv`, `testarray_1.csv`, `testarray_2.csv`, is that what you need? ``` n = random.randint(1, 30) df = [] for cycle in range(3):...

Well you are creating the same fake data here in every cycle, so I would expect the file contents to be identical. I think if you want to run statistics/further...

you need to empty `data` for every cycle (`data = []`), right now you just keep appending to `data`.

FloatParameter has a [default maximum](https://pymeasure.readthedocs.io/en/latest/api/experiment/parameters.html#pymeasure.experiment.parameters.FloatParameter) value that you probably have to override. Aside of that, I'd ask you to open a separate issue if you need more help, to keep...

Good catch! This could be because it's missing something that is coming from `Instrument`, which we normally inherit from. Maybe we should see if we can extract the common/needed bits...

Does it fail "visibly" or does it just not work as expected?

> See also #649 for a possible solution to this problem I have not reviewed this in detail, so I might not know what you refer to exactly, but I...

Interesting question! I also have a device that communicates via a compiled DLL, would be curious if that can be made to talk via pymeasure...

Most relevant notes from #248: > We should first find a good, working design before implementing it. Some thoughts about potential approaches that I had in the back of my...

It might even be possible to use a VISAAdapter with PyVISAs [RegisterBasedResource](https://pyvisa.readthedocs.io/en/latest/api/resources.html#pyvisa.resources.RegisterBasedResource) for this way of communication.