()
| 22 | |
| 23 | constructor(options?: Partial<DCMeterOptions>); |
| 24 | constructor() { |
| 25 | super(optionsFromArguments(DCMeter.getDefaults(), arguments)); |
| 26 | |
| 27 | this._analyser.type = "waveform"; |
| 28 | this._analyser.size = 256; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Get the signal value of the incoming signal |
nothing calls this directly
no test coverage detected