Iostream and cstring not found on compilation for Arduino WiFi rev 2

AVR toolchains are notorious for not supporting standard C++ library features. Would not suprirse me if there’s no std::cout etc. You might want to use GitHub - mike-matera/ArduinoSTL: An STL and iostream implementation based on uClibc++ that supports my CS-11M class. in the lib_deps here and #include <ArduinoSTL.h>.

1 Like