Skip to content

Instantly share code, notes, and snippets.

@vivekanandRdhakane
Created June 21, 2020 12:44
Show Gist options
  • Save vivekanandRdhakane/d72b8eb9351bf41c039fc0bc27c2f799 to your computer and use it in GitHub Desktop.
Save vivekanandRdhakane/d72b8eb9351bf41c039fc0bc27c2f799 to your computer and use it in GitHub Desktop.
void print_string(String string,byte x,byte y)
{
for(int i=0; i< string.length();i++)
{
char ch = string[i];
byte x_cord = x+ i* Char_Horizontal_Columns_Required;
print_char(ch,x_cord,y);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment