Hello everyone,
I have a quite annoying problem with the group closing every time I click the submit button in the interactive argument. It could save a lot of clicks and time if it did not close every time.
The code would look somewhat like this:
from artiq.experiment import *
class ScanExperiment(EnvExperiment):
def build(self):
pass
def run(self):
repeat = True
while repeat:
print("Hello World")
with self.interactive(title="Repeat?") as interactive:
interactive.setattr_argument("repeat", BooleanValue(True), "Test_group")
repeat = interactive.repeat`
How can I prevent this reopening after the click?
Are there any alternatives for having many different groups in one interactive window?