system
1
I tried uploading my code onto my Arduino Nano V3.0, but It will not compile.
It keeps giving me this error:
Arduino: 1.6.2 (Windows 7), Board: "Arduino Nano, ATmega328"
rc_sound_module_4step_plus_start_stop.ino:5:73: fatal error: TMRpcm.h: No such file or directory
compilation terminated.
Error compiling.
Even though I installed the TMRPCM Library... Any ideas?
rc_sound_module_4step_plus_start_stop.ino (4.53 KB)
Even though I installed the TMRPCM Library.
Yes but you have not installed it correctly.
- Quit the Arduino IDE.
- drag out the TMRpcm folder from the libraries folder onto the desk top.
- Open the TMRpcm folder and you will see it contains an other folder called TMRpcm.
- Drag that one back into the libraries folder
- Restart the Arduino IDE
- Remove the comments ( the // ) from the start of the line that says TMRpcm tmrpcm
- Compile your code
system
3
You were absolutely right. I followed your instructions and now it compiles without any issues.
Thank you so much!