Im wondering how do I print alphabet in order to 16x2 lcd screen in a way that every character goes in to the next slot and it goes around the screen over and over again?
So in a way that after 15,0 slot, it jumps to 15, 1 and goes backwards to 0,1 and then back to 0,0. And repeat.
yes your loops and logic are printing a character at an x y position on the LCD. running through the alphabet a..z or is it A..Z.
Dunno what you want to see, but it will be a matter of getting the right x and y happening.
If it isn't the alphabet you want to see, you'll have to come up,with the characters you actually want to place on the LCD with logic nowhere to be seen in your program yet.
So I want the alphabet to go around the lcd. And I want a little delay between characters but the loop can go around seamlessly.
I'll try to explain what I want a bit better...
So the first character "a" will print in 0,0 position and from there they will move to 15,0 position. After that I want the next character to jump in 15,1 position and move rightToLeft until they reach 0,1 position. After that the loop starts again from 0,0 position.