Thank you very much for the answer!
I was able to get the esp32 working with pt8211 by changing
#define MOZZI_AUDIO_MODE MOZZI_OUTPUT_EXTERNAL_TIMED
#define MOZZI_AUDIO_CHANNELS MOZZI_STEREO
which appears in the example
by
#define MOZZI_AUDIO_MODE MOZZI_OUTPUT_I2S_DAC
guided by campidelli's project
and I managed to get the sinewave and the project I'm working on to sound!
The problem I have now is that it sounds extremely low.
The audio output I have is
return MonoOutput::fromAlmostNBit(14, (rf.next((volch*asigch*3)+(asigarp*(volarp)))));
I tried changing it to from16Bit and the volume is even lower
What am I doing wrong? Any suggestions would be greatly appreciated
regards