public Sound(ADS1015 adc, ADS1015.Channel channel, ADS1015.Gain gain, UnitsNet.ElectricPotential volts)
 {
     this.adc     = adc;
     this.channel = channel;
     this.gain    = gain;
     this.volts   = volts;
 }
 public Sound(ADS1015 adc, ADS1015.Channel channel, ADS1015.Gain gain, UnitsNet.ElectricPotential volts)
 {
     this.adc = adc;
     this.channel = channel;
     this.gain = gain;
     this.volts = volts;
 }
 public Mcp970X(ADS1015 adc, ADS1015.Channel channel, ADS1015.Gain gain, int zeroDegreeOffset, double millivoltsPerDegree, int CalibrationOffset)
 {
     this.adc                 = adc;
     this.channel             = channel;
     this.gain                = gain;
     this.zeroDegreeOffset    = zeroDegreeOffset;
     this.millivoltsPerDegree = millivoltsPerDegree;
     this.CalibrationOffset   = CalibrationOffset;
 }
 public Mcp970X(ADS1015 adc, ADS1015.Channel channel, ADS1015.Gain gain, int zeroDegreeOffset, double millivoltsPerDegree, int CalibrationOffset)
 {
     this.adc = adc;
     this.channel = channel;
     this.gain = gain;
     this.zeroDegreeOffset = zeroDegreeOffset;
     this.millivoltsPerDegree = millivoltsPerDegree;
     this.CalibrationOffset = CalibrationOffset;
 }
Exemplo n.º 5
0
 public Mcp9701AE(ADS1015 adc, ADS1015.Channel channel, ADS1015.Gain gain) : base(adc, channel, gain, 400, 20.5, -6)
 {
 }
Exemplo n.º 6
0
 public Mcp9700A(ADS1015 adc, ADS1015.Channel channel, ADS1015.Gain gain) : base(adc, channel, gain, 530, 11, -2)
 {
 }