Skip to content

1.0.1 - The `setPinMCLK()` function is removed.

Compare
Choose a tag to compare
@CelliesProjects CelliesProjects released this 23 Oct 16:57
· 24 commits to master since this release
53e3d65

The setPinMCLK() function is removed.

The MCLK is now set by the library https://github.com/schreibfaul1/ESP32-audioI2S function i2s_mclk_pin_select().

setPinMCLK used a PWM channel and timer which was a real waste of resources.

So replace

dac.setPinMCLK(PIN,FRQ);

with

audio.i2s_mclk_pin_select(PIN);

and you are done.

See all changes since the previous release.