1
I’m working on a project with an Arduino in which I need to use the library Eigen, so I’m using Eigenarduino. However, this library requires a standard library, which is not available in Arduino, by default; therefore, as the maintainer of the Eigen recommends, tried to use stlport-avr.
The problem is that by default this library does not provide access to iostream, so I can’t use Cout to print information on debug. I’ve tried using the Serial, but it doesn’t work - Eigen isn’t meant to use with this.
There is some way to use Cout on an Arduino. Or at least a way to use Serial to print debug information?