Arduino
Testing I2S on a STM32H7
In my last blogs, I introduced you to the powerfull STM32H743VIT6 microcontroller and demonstrated the analog and PWM audio output using the Arduino Audio Tools library. I finally managed to extend the stm32-i2s library and so it the time now that I can demonstrate that we can also use I2s as well: I am using the demo sketch from the AudioTools w/o any changes: #include “AudioTools.h” AudioInfo info(44100, 2, 16); SineWaveGenerator<int16_t> sineWave(32000); GeneratedSoundStream<int16_t> sound(sineWave); I2SStream Read more…