2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-05 01:36:39 +08:00
artiq/examples/master/repository/handover.py

17 lines
285 B
Python
Raw Normal View History

from artiq import *
class Handover(Experiment, AutoDB):
class DBKeys:
core = Device()
led = Device()
@kernel
def blink_once(self):
self.led.pulse(250*ms)
delay(250*ms)
def run(self):
while True:
self.blink_once()