【Back Feb 24th!】Holiday from Feb 14-23. All orders placed now will ship starting Feb 24th.
#include <base64.h>
Serial.begin(115200);
String toEncode = "Test encoding";
String encoded = base64::encode(toEncode);
#include <base64.h>
void setup() {
Serial.begin(115200);
String toEncode = "Test encoding";
String encoded = base64::encode(toEncode);
Serial.println(encoded);
}
void loop() {}

