keyboard.h程序问题;-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2812|回复: 2

[未解决] keyboard.h程序问题;

[复制链接]
发表于 2020-11-17 16:16 | 显示全部楼层 |阅读模式
keyboard.h已经加载成功了,但是不知道为什么,在编译的时候报出:没有找到'键盘'。项目里是否包含'#include <Keyboard.h>'?
这个问题,令人费解;
下面是我的简单程序;
  1. #include <Keyboard.h>

  2. void setup() {
  3.   // make pin 2 an input and turn on the
  4.   // pullup resistor so it goes high unless
  5.   // connected to ground:
  6.   pinMode(2, INPUT_PULLUP);
  7.   Keyboard.begin();
  8. }

  9. void loop() {
  10.   //if the button is pressed
  11.   if (digitalRead(2) == LOW) {
  12.     //Send the message
  13.     Keyboard.print("Hello!");
  14.   }
  15. }
复制代码


发表于 2020-11-24 10:12 | 显示全部楼层
keyboard.h这个库是吧开发板模拟成usb键盘设备,uno不可以,只有32u4核心的开发板才行,比如arduino leonardo ,arduino micro
发表于 2020-11-17 19:36 | 显示全部楼层
板子选32U4的才有keyboard库
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-29 18:33 , Processed in 0.139853 second(s), 17 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表