Hi I'm using Eclipse as my IDE and wonder if it is possible to use c++ libraries like iostream.h, which enables me to use cout and cin classes. And how should I setup? Do I need to include library paths etc?
thank you!
Hi I'm using Eclipse as my IDE and wonder if it is possible to use c++ libraries like iostream.h, which enables me to use cout and cin classes. And how should I setup? Do I need to include library paths etc?
thank you!
which enables me to use cout and cin classes
What do you wanna do with these classes? The concept of standard input and standard output does not exist in the Arduino world, there is no shell or controlling TTY, no pipes, no command line.
You might want streaming output (Arduino Playground - HomePage)?