Description
Sends one or more keystrokes to a connected computer, followed by a keystroke on the Enter key.
Keyboard.println()
must be called after initiating Keyboard.begin().
Syntax
Keyboard.println()
Keyboard.println(character)
Keyboard.println(characters)
Parameters
character
: a char or int to be sent to the computer as a keystroke, followed by Enter.
characters
: a string to be sent to the computer as keystrokes, followed by Enter.
Returns
Number of keystrokes sent. Data type: size_t
.