anyone who can tell me how to clear only one row of the 16*2 LCD and keep another row
daniel ding
Posts: 52
I want to display sth useing a 16*2 LCD, how to only clear one line and keep another one display?
Comments
you can simply move to the start of the row you want to clear, then write spaces
for example, if say you defined LCD using the object mentioned above, you can do this:
LCD.move(1,2) 'move to column1, row2
LCD.str(string(" <insert up to 40 spaces here> "))
cheers,
Mark