Description
Stops the keyboard emulation to a connected computer. To start keyboard emulation, use Keyboard.begin().
Syntax
Keyboard.end()
Parameters
Nothing
Returns
Nothing
Stops the keyboard emulation to a connected computer. To start keyboard emulation, use Keyboard.begin().
Keyboard.end()
Nothing
Nothing
#include <Keyboard.h>
void setup() {
  //start keyboard communication
  Keyboard.begin();
  //send a keystroke
  Keyboard.print("Hello!");
  //end keyboard communication
  Keyboard.end();
}
void loop() {
 //do nothing
}