WHY PLOTER SHOWS 2 CHANNEL DATA #938
-
below is code were i am convert i2s to single channel data then why is plotter showing 2 channel data ?I didn't fill both channel . I was just testing the code and functionality IN MY CASE It should be single channel data while the second channel should empty . #include "AudioTools.h" I2SStream i2sStream; // Access I2S as stream FormatConverterStream conv(out); StreamCopy copierr(conv, i2sStream); void setup(void) { auto config_in = i2sStream.defaultConfig(RX_MODE); conv.begin(from, to); }
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Because you defined it to be 2 channels in the constructor |
Beta Was this translation helpful? Give feedback.
Because you defined it to be 2 channels in the constructor