Skip to content

Commit 4cfef03

Browse files
authored
Update Print.h
Added base64 encode decode functions
1 parent c8c514c commit 4cfef03

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: cores/arduino/Print.h

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ class Print
8686
size_t println(double, int = 2);
8787
size_t println(const Printable&);
8888
size_t println(void);
89+
String base64_encode(const String &input);
90+
String base64_decode(const String &input);
8991

9092
virtual void flush() { /* Empty implementation for backward compatibility */ }
9193
};

0 commit comments

Comments
 (0)