Commit b0bf472e authored by Lucas Giardino's avatar Lucas Giardino

agrego esqueleto de posible UrukulCnahhel

parent 2aa4b440
from artiq.experiment import *
class UrukulChannel(HasEnviroment):
def build(self, chN):
super().build()
print(chN)
# Todos los setattr apropiados
@kernel
def init_kernel(self):
# cosas como el init, seteo de frecuencia inicial etc
class TesteoSubmodulos(EnvExperiment):
def build(self):
# Hago las cosas que queira aca
self.controler_ch0 = UrukulChannel(0)
@kernel
def run(self):
#cosas
self.controler_ch0.init_kernel()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment