SafeString icon indicating copy to clipboard operation
SafeString copied to clipboard

This SafeString library is designed for beginners to be a safe, robust and debuggable replacement for string processing in Arduino. Note, this is NOT my work, I am simply hosting it for easy access. T...

Results 2 SafeString issues
Sort by recently updated
recently updated
newest added

Compiling SafeString on many architectures generates a lot of warnings about redefining the `F` macro. From [the code](https://github.com/PowerBroker2/SafeString/blob/cd3c271685a6d5dbb7a33b526791a4f476149add/src/SafeString.h#L137): ``` //#ifndef F // Arduino IDE 2+ adds namespace around this macro...

I found I couldn't build projects using this library with PlatformIO because you use Printable without prefixing the Arduino namespace to it. Simply adding this fixes it, and everything still...