Hey all, I'm new here. Have been having a lot of fun with my trusty arduino 328, but i've run into a problem. I can import libraries as expected from regular source files, but not from .h's. If i try to import any library from a .h, it fails to find the relevant header. Smallest example that breaks:
Main sketch:
#include "Cls1.h"
void setup(){
Cls1 bill();
}
void loop(){}
Cls1.h:
//FAILS HERE with error: EEPROM.h: No such file or directory
#include <EEPROM.h> //can be any library, just an example.
class Cls1
{
private:
public:
Cls1();
};
Cls1.pde:
#include "Cls1.h"
Cls1::Cls1() {
}
Any ideas? I admit I'm not very good at C++, I may be overlooking something stupid.
EDIT: Arduino 0015 on WinXP.