from min_artiq import * attr1: Kernel[str] = "ss" @nac3 class Demo: core: KernelInvariant[Core] led0: KernelInvariant[TTLOut] led1: KernelInvariant[TTLOut] def __init__(self): self.core = Core() self.led0 = TTLOut(self.core, 18) self.led1 = TTLOut(self.core, 19) @kernel def run(self): global attr1 # attr1 = "2" self.core.reset() while True: with parallel: self.led0.pulse(100.*ms) self.led1.pulse(100.*ms) self.core.delay(100.*ms) if __name__ == "__main__": Demo().run()