Clears the LCD screen optionaly filling it with selected color
color
integer (colorFlag)
see Drawing Flags
none
This function works only in stand-alone and telemetry & widget scripts. See script types.
B&W LCD radios
Grayscale LCD radios
Color LCD radios
2.3.0
Introduced
Drawing flag
Color constants
Was this helpful?
-- clearing lcd with system default color lcd.clear()
-- clearing lcd screen to dark red local darkred = lcd.RGB(20,0,0) -- create color_flag for color lcd.clear(darkred)