I just installed the IDE and libraries. I Opened Blink, Uploaded it, and it worked fine.
When I opened a new sketch, the Morse example, the IDE takes the file SOS from
C:\Users\Jim\Documents\Arduino\libraries\Morse\examples\SOS and loads.
#include <Morse.h>
Morse morse(13);
void setup()
{
}
void loop()
{
morse.dot(); morse.dot(); morse.dot();
morse.dash(); morse.dash(); morse.dash();
morse.dot(); morse.dot(); morse.dot();
delay(3000);
}
When I Verify / Compile or Upload, I get the message...
C:\Users\jim\Documents\Arduino\libraries\Morse/Morse.h:10:22: error: WProgram.h: No such file or directory
In file included from SOS.pde:1:
The files Morse.h, Morse.cpp, and keywords.txt are in the folder C:\Users\jim\Documents\Arduino\libraries\Morse
Note the Forward Slash in the compiler error message.
Any assistance is appreciated.