Exemplo n.º 1
0
 public SlaveLaser(string name)
 {
     lState = LaserState.FREE;
     this.Name = name;
     laser = new DAQMxTCL2012LaserControlHelper(Name);
     laser.ConfigureSetLaserVoltage(0.0);
 }
Exemplo n.º 2
0
 public Laser(string feedbackChannel, string photoDiode, Cavity cavity)
 {
     laser             = new DAQMxTCL2012LaserControlHelper(feedbackChannel);
     lState            = LaserState.FREE;
     Name              = feedbackChannel;
     FeedbackChannel   = feedbackChannel;
     PhotoDiodeChannel = photoDiode;
     ParentCavity      = cavity;
     laser.ConfigureSetLaserVoltage(0.0);
 }