Hi guys!
I've made some test. It seems that if I put my .h and .cpp files in my sketch folder, it compiles, but if I put them inside a lib directory inside the sketch folder, it does not work...
So this works:
.
├── Blink.ino
├── Makefile
├── MyFirstLib.cpp
└── MyFirstLib.h
But this does not:
.
├── Blink.ino
├── Makefile
└── lib
├── MyFirstLib.cpp
└── MyFirstLib.h
It this normal? :)