nac3_sca/nac3artiq/demo.py

27 lines
468 B
Python
Raw Normal View History

from min_artiq import *
2021-09-24 11:39:26 +08:00
from numpy import int32, int64
2021-09-24 14:45:44 +08:00
@kernel
class Demo:
core: Core
led: TTLOut
2021-09-25 14:17:11 +08:00
def __init__(self):
self.core = Core()
self.led = TTLOut(0)
2020-12-18 23:44:45 +08:00
@kernel
def main_kernel(self):
self.core.reset()
2021-09-25 14:17:11 +08:00
while True:
self.led.pulse_mu(int64(100000000))
2021-09-25 14:17:11 +08:00
delay_mu(int64(100000000))
2020-12-18 23:44:45 +08:00
def run(self):
self.core.run(self.main_kernel)
2020-12-18 23:44:45 +08:00
if __name__ == "__main__":
Demo().run()