PCM5102AudioSink.h 380 B

12345678910111213141516171819202122
  1. #ifndef PCM5102AUDIOSINK_H
  2. #define PCM5102AUDIOSINK_H
  3. #include <vector>
  4. #include <iostream>
  5. #include "BufferedAudioSink.h"
  6. #include <stdio.h>
  7. #include <string.h>
  8. #include <sys/unistd.h>
  9. #include <sys/stat.h>
  10. #include "esp_err.h"
  11. #include "esp_log.h"
  12. class PCM5102AudioSink : public BufferedAudioSink
  13. {
  14. public:
  15. PCM5102AudioSink();
  16. ~PCM5102AudioSink();
  17. private:
  18. };
  19. #endif