Hi,
I have a .cpp and .h file which I used to upload into arduino create as a library.
lets call it mylib.cpp and mylib.h
in my main.ino file I did the following
#include <mylib.h>
MyLib* foo = new MyLib();
void setup()
{
Serial.begin(115200)
}
void loop()
{
Serial.println("main loop ");
foo->myfunc(); // <--- debug statment resides in here
}
in the mylib.cpp file I used Serial.print ("debug statements").
It appears that arduino create does not show the print statements.
can anyone help me with this ?
my program compiles just fine.
The program is able to print debug statements in my main.cpp file just fine.
I just can't see the Serial.print messages which come from the library
Cheers