.Update()

back to FEHLCD

Proteus Simulator Only

Description

This function is used to update the screen of the Proteus Simulator. When you call functions like LCD.DrawLine(), the screen will not actually be updated until you call LCD.Update(). Note that this method is also called by FEHUtility.Sleep()

Syntax

.Update( )

Parameters

None.

Returns

None.

Examples

#include <FEHLCD.h>

int main()
{
LCD.WriteLine("Hello World!");
while (1) {
LCD.Update();
}
return 0;
}