Merge pull request #262 from mzero/overloaded-write

allow Print's overloaded write() calls to be used with Adafruit_GFX
This commit is contained in:
Paint Your Dragon
2020-01-12 21:12:25 -08:00
committed by GitHub
+1
View File
@@ -170,6 +170,7 @@ public:
/**********************************************************************/
void cp437(boolean x = true) { _cp437 = x; }
using Print::write;
#if ARDUINO >= 100
virtual size_t write(uint8_t);
#else