Skip to content

Commit

Permalink
Update Print.h
Browse files Browse the repository at this point in the history
Added base64 encode decode functions
  • Loading branch information
toaha63 authored Dec 27, 2024
1 parent c8c514c commit 4cfef03
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cores/arduino/Print.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ class Print
size_t println(double, int = 2);
size_t println(const Printable&);
size_t println(void);
String base64_encode(const String &input);
String base64_decode(const String &input);

virtual void flush() { /* Empty implementation for backward compatibility */ }
};
Expand Down

0 comments on commit 4cfef03

Please sign in to comment.