说明
向连接的计算机发送一个或多个击键。
Keyboard.print()
必须在启动 Keyboard.begin() 之后调用。
用法
Keyboard.print(character)
Keyboard.print(characters)
参数
character
: 一个字符或 int 作为击键发送到计算机。
characters
:要作为击键发送到计算机的字符串。
返回
发送的击键次数。数据类型:size_t
。
示例代码
#include <Keyboard.h>
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.print("Hello!");
}
}
注意事项和警告
当您使用Keyboard.print()
命令时,Arduino 将接管您的键盘!在使用该命令之前,请确保您有控制权。切换键盘控制状态的按钮有效。
相关用法
- Arduino Keyboard.println()用法及代码示例
- Arduino Keyboard.press()用法及代码示例
- Arduino Keyboard.releaseAll()用法及代码示例
- Arduino Keyboard.write()用法及代码示例
- Arduino Keyboard.begin()用法及代码示例
- Arduino Keyboard.release()用法及代码示例
- Arduino Keyboard.end()用法及代码示例
- Arduino long用法及代码示例
- Arduino Arduino_EMBRYO_2 - setLengthXY()用法及代码示例
- Arduino ~用法及代码示例
- Arduino ArduinoBLE - bleDevice.advertisedServiceUuidCount()用法及代码示例
- Arduino const用法及代码示例
- Arduino Ethernet - server.begin()用法及代码示例
- Arduino ArduinoBLE - BLEService()用法及代码示例
- Arduino digitalWrite()用法及代码示例
- Arduino ArduinoBLE - bleCharacteristic.subscribe()用法及代码示例
- Arduino Servo - attach()用法及代码示例
- Arduino write()用法及代码示例
- Arduino Arduino_LSM9DS1 - readGyroscope()用法及代码示例
- Arduino ArduinoSound - FFTAnalyzer.input()用法及代码示例
- Arduino MKRGSM - gprs.attachGPRS()用法及代码示例
- Arduino WiFiNINA - WiFi.config()用法及代码示例
- Arduino MKRGSM - sms.read()用法及代码示例
- Arduino MKRNB - getCurrentCarrier()用法及代码示例
- Arduino Scheduler - Scheduler.startLoop()用法及代码示例
注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 Keyboard.print()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。