back to FEHLCD
Description
This function is used to write one data type to the screen and append a newline character to the end. Please note that this function can only accept one argument at a time.
Syntax
.WriteLine( 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.WriteLine("Hello World"); }