.Write( )

back to FEHLCD

Description

This function is used to write one data type to the screen. Please note that this function can only accept one argument at a time.

Syntax

.Write( to_print )

Parameters

to_print: a variable that could be a string, character, integer, or float that you wish to be printed to the screen.

Returns

None.

Examples

#include <FEHLCD.h>

int main(void)
{
    //Write "Hello World" to screen
    LCD.Write("Hello World");
}