------ This example demonstrates the lcd.clear() function---- NOTE: Compare the output of the images below-- lcd.clear() is NOT CALLED automatically in OpenTX 2.1--local startTickslocal nowTickslocalfunctioninit() startTicks =getTime() /100.0endlocalfunctionbackground() nowTicks =getTime() /100.0endlocalfunctionrun(e)background()local interval =10-math.floor(nowTicks %10) lcd.drawText(1, 1, "clear() example",0) lcd.drawText((10* interval) +1, 10 , interval, 0)if interval ==10then lcd.clear()endendreturn{run=run, background=background}