Made my own TwitterClient and I think it's better than the example one

brilliant! got it working but i'm stuck with cut-off tweets. i believe you create your program so that the tweets will be in a string form and sent to the microcontroller as arrays. how do i split the tweet into half so that i can display a certain amount of characters in a line and point the next string to the second line?

eg(point tweet to line):

lcd.setCursor(0, 0); //where first number is column number and second is line number

lcd.print("Tweet line 1"); 

lcd.setCursor(0, 1);

lcd.print("Tweet line 2");

cheers!