mirror of https://github.com/m-labs/artiq.git
19 lines
420 B
Python
19 lines
420 B
Python
from itertools import count
|
|
from time import sleep
|
|
|
|
from artiq.experiment import *
|
|
|
|
|
|
class RunForever(EnvExperiment):
|
|
def build(self):
|
|
self.setattr_device("scheduler")
|
|
|
|
def run(self):
|
|
try:
|
|
for i in count():
|
|
self.scheduler.pause()
|
|
sleep(1)
|
|
print("ping", i)
|
|
except TerminationRequested:
|
|
print("Terminated gracefully")
|