Hello I am using the u8glib library to draw text on the string but it keeps giving me an error with the string
String name1 = "";
...
void draw(){
u8g.setFont(u8g_font_micro);
u8g.drawStr(22, 37, name1);
}
why dosnt this work?
Here is the error:
C:\Program Files (x86)\Arduino\libraries\U8glib/U8glib.h:200:16: note: no known conversion for argument 3 from 'int' to 'const __FlashStringHelper*' no matching function for call to 'U8GLIB_PCD8544::drawStr(int, int, String&)'