Hi folks,
I need to place a library inside the arduino sketch (.cpp and .h file inside tabs) but have no idea how I would go have it reading what I placed ithere. Any ideas?
Hi folks,
I need to place a library inside the arduino sketch (.cpp and .h file inside tabs) but have no idea how I would go have it reading what I placed ithere. Any ideas?
Include it with #include "library.h" rather than #include <library.h>
...R
Robin2:
Include it with #include "library.h" rather than #include <library.h>...R
Works like a treat, Thanks!