About using C++ library

I wonder if I can use C++ library for some method. If I can, how should I include the library?

Yes it is possible.

More background = better answers :wink:

1 Like

If I want to do iostream, can I do #include <iostream.h>

The standard C/C++ headers are available. Everything should work but keep in mind this is a microcontroller so there is no stdin/stdout.

2 Likes

k, isee. Thank you.