We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
If : pcmConfig.h needs commented : #define ENABLE_RECORDING is enabled.
then TMRpcm.play("file") does not work.
Serial.println(audio.isPlaying()); -- always returns 0
Using Arduino Nano atmega328.
Could this be an Interrupt conflict ?
The text was updated successfully, but these errors were encountered:
I'm quite certain others would have reported this issue previously if there was an issue with the library.
Have you changed anything else while connecting things for recording?
Nothing in the code has changed recently, so I would assume you must be doing something that is preventing it from working.
Sorry, something went wrong.
Ok, I got it. 2 problems :
1: When you record you use( "filename" ) : audio.startRecording("sound");
but when you play you use ( "filename.WAV" ) : audio.play("sound.wav");
2: I do not have an Amp , so sound is only a light whisper.
No branches or pull requests
If :
pcmConfig.h needs commented :
#define ENABLE_RECORDING
is enabled.
then TMRpcm.play("file") does not work.
Serial.println(audio.isPlaying());
-- always returns 0
Using Arduino Nano atmega328.
Could this be an Interrupt conflict ?
The text was updated successfully, but these errors were encountered: