[USB]
描述
Sends a keystroke to a connected computer, followed by a newline and carriage return.
Keyboard.println()
must be called after initiating Keyboard.begin().
WARNING: When you use the Keyboard.println()
command, the 86Duino takes over your keyboard! Make sure you have control before you use the command. A pushbutton to toggle the keyboard control state is effective.
語法
Keyboard.println()
Keyboard.println(character)
Keyboard.println(characters)
參數
character
: a char or int to be sent to the computer as a keystroke, followed by newline and carriage return.characters
: a string to be sent to the computer as a keystroke, followed by a newline and carriage return.
回傳
int: number of bytes sent
範例
void setup() { // make pin 2 an input and turn on the // pullup resistor so it goes high unless // connected to ground: pinMode(2, INPUT_PULLUP); Keyboard.begin(); } void loop() { //if the button is pressed if(digitalRead(2)==LOW){ //Send the message Keyboard.println("Hello!"); } }
參考
- Keyboard.begin()
- Keyboard.end()
- Keyboard.press()
- Keyboard.print()
- Keyboard.release()
- Keyboard.releaseAll()
- Keyboard.write()
語法參考主頁面
86Duino 參考的文本是根據 Creative Commons Attribution-ShareAlike 3.0 License,部分文本是從 the Arduino reference 修改的。 參考中的代碼示例已發佈到公共領域。