Trouble importing WString as dependency of StreamUtils #1079
-
Hi, I'm having an issue where the WString.h dependency within StreamUtils.h (actually StringPrint.hpp) cannot be found. Any suggestions to make this work correctly? Context: I originally wrote this code for Teensy where it was compiling correctly. I am trying to switch to the Pico for my project.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Try using |
Beta Was this translation helpful? Give feedback.
-
HI @octopus-arts - did you get StreamUtils working on Pi Pico? |
Beta Was this translation helpful? Give feedback.
Try using
#include <api/String.h>
. TheWString.h
is not the Arduino official standard (but I do know many other cores do support it).