Exemple #1
0
 public DaqSetGain(DaqClient parent, int ch, bool atten10, DaqGain gain)
     : base(parent, DaqCmdType.DAQ_GAIN)
 {
     ChannelIndex = ch;
     Atten10      = atten10;
     Gain         = gain;
 }
Exemple #2
0
        public RobinChannel(int physicalIndex, int fmax = 3200, int line = 3200)
        {
            this.PhysicalIndex = physicalIndex;
            this.AsyncFMax     = fmax;
            this.AsyncLine     = line;

            this.Id     = physicalIndex + 1;
            this.ICP    = true;
            this.HWGain = DaqGain._1;
        }
Exemple #3
0
 public void SetGain(int iCh, bool atten10 = false, DaqGain gain = DaqGain._1)
 {
     DoCommand(new DaqSetGain(this, iCh, false, gain));
 }