You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
305B

  1. #ifndef analyze_print_h_
  2. #define analyze_print_h_
  3. #include "AudioStream.h"
  4. class AudioPrint : public AudioStream
  5. {
  6. public:
  7. AudioPrint(const char *str) : AudioStream(1, inputQueueArray), name(str) {}
  8. virtual void update(void);
  9. private:
  10. const char *name;
  11. audio_block_t *inputQueueArray[1];
  12. };
  13. #endif