ArduinoGraphics - clear()

Description

Set clear the screen contents, uses the background colour set in background().

Syntax

YourScreen.clear()

Parameters

None

Returns

Nothing

Example

YourScreen.beginDraw();
YourScreen.background(255, 0, 0);
YourScreen.clear();
YourScreen.endDraw();