basically right now my code takes the whole tweet which is to a max limit of 140 chars. i want it to take the first 32 chars, dispose the rest off and split the 32 into two lines of 16.
i will use the:
setCursor(0,0);
lcd.println(string1);
setCursor(0,1);
lcd.println(string2);
method. just wondering if there's an easier way? appreciate the help!