arduino中Keypad 库函数介绍

arduino中Keypad 库函数介绍原文:https://playground.arduino.cc/Code/Keypad/Creation构造函数:Keypad(makeKeymap(userKeymap),row[],col[],rows,cols)constbyterows=4;//fourrowsconstbytecols=3;//threecolumnscharkeys[rows][cols]={{‘1′,’2′,’3’},{‘4′,’5′,’6’},{‘

大家好,又见面了,我是你们的朋友全栈君。

原文:https://playground.arduino.cc/Code/Keypad/

  • Creation

    构造函数:

    1. Keypad(makeKeymap(userKeymap), row[], col[], rows, cols)
    const byte rows = 4; //four rows
    const byte cols = 3; //three columns
    char keys[rows][cols] = {
      {'1','2','3'},
      {'4','5','6'},
      {'7','8','9'},
      {'#','0','*'}
    };
    byte rowPins[rows] = {5, 4, 3, 2}; //connect to the row pinouts of the keypad
    byte colPins[cols] = {8, 7, 6}; //connect to the column pinouts of the keypad
    Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, rows, cols );
    

    实例化一个键盘对象,该对象使用引脚5、4、3、2作为行引脚,并使用8、7、6作为列引脚。
    该键盘有4行3列,产生12个键。


    Functions

    void begin(makeKeymap(userKeymap))

    初始化内部键盘映射使其等于userKeymap
    [请参见文件->示例->键盘->示例-> CustomKeypad ]

    char waitForKey()

    此功能将永远等待,直到有人按下某个键。**警告:**它会阻止所有其他代码,直到按下某个键为止。这意味着没有闪烁的LED,没有LCD屏幕更新,除了中断例程外什么也没有。

    char getKey()

    返回按下的键(如果有)。此功能是非阻塞的。

    KeyState getState()

    返回任何键的当前状态。
    四个状态为“空闲”,“已按下”,“已释放”和“保持”。

    boolean keyStateChanged()

    New in version 2.0: Let’s you know when the key has changed from one state to another. For example, instead of just testing for a valid key you can test for when a key was pressed.

    2.0版的新功能:让我们知道密钥何时从一种状态更改为另一种状态。例如,您不仅可以测试有效的按键,还可以测试按键的按下时间。

    setHoldTime(unsigned int time)

    Set the amount of milliseconds the user will have to hold a button until the HOLD state is triggered.

    设置用户必须按住按钮直到触发HOLD状态的毫秒数。

    setDebounceTime(unsigned int time)

    Set the amount of milliseconds the keypad will wait until it accepts a new keypress/keyEvent. This is the “time delay” debounce method.

    设置键盘将等待直到接受新的keypress / keyEvent的毫秒数。这是使用“时间延迟”防止抖动方法。

    addEventListener(keypadEvent)

    Trigger an event if the keypad is used. You can load an example in the Arduino IDE.
    [See File -> Examples -> Keypad -> Examples -> EventSerialKeypad] or see the KeypadEvent Example code.

    如果使用键盘,则触发事件。您可以在Arduino IDE中加载示例。
    [请参阅文件->示例->键盘->示例-> EventSerialKeypad ]或查看KeypadEvent示例代码。

    For Now

    Here’s the list of multi-keypress functions and the keylist definition. I will complete their descriptions this weekend.

    • Key key[LIST_MAX]
    • bool getKeys()
    • bool isPressed(char keyChar)
    • int findInList(char keyChar)

    Example

    #include <Keypad.h>

    const byte ROWS = 4; //four rows
    const byte COLS = 3; //three columns
    char keys[ROWS][COLS] = {

    {‘1’,‘2’,‘3’},
    {‘4’,‘5’,‘6’},
    {‘7’,‘8’,‘9’},
    {’#’,‘0’,’*’}
    };
    byte rowPins[ROWS] = {5, 4, 3, 2}; //connect to the row pinouts of the keypad
    byte colPins[COLS] = {8, 7, 6}; //connect to the column pinouts of the keypad

    Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );

    void setup(){

    Serial.begin(9600);
    }

    void loop(){

    char key = keypad.getKey();

    if (key != NO_KEY){

    Serial.println(key);
    }
    }

    [Get Code]


    FAQ

    • How do I use multiple Keypads?

    Keypad is a class. Therefore to use multiple Keypad, you must create an instance for each of them. In the example above, the Keypad instance keypad) was bound to the digital pins 2, 3, 4, 5, 6, 7 and 8.

    To add a Keypad bound to digital pins 9, 10, 11, 12, 13, 14, 15 and 16, you could create the following instance keypad2:

    Keypad是一个类。因此,要使用多个键盘,必须为每个键盘创建一个实例。在上面的示例中,小键盘实例小键盘)已绑定到数字引脚2、3、4、5、6、7和8。

    要添加绑定到数字引脚9、10、11、12、13、14、15和16的键盘,可以创建以下实例keyboard2

    const byte ROWS2 = 4; //four rows
    const byte COLS2 = 4; //four columns
    char keys2[ROWS2][COLS2] = {
      {'.','a','d','1'},
      {'g','j','m','2'},
      {'p','t','w','3'},
      {'*',' ','#','4'}
    };
    byte rowPins2[ROWS2] = {12, 11, 10, 9}; //connect to the row pinouts of the keypad
    byte colPins2[COLS2] = {16, 15, 14, 13}; //connect to the column pinouts of the keypad
    
    Keypad keypad2 = Keypad( makeKeymap(keys2), rowPins2, colPins2, ROWS2, COLS2 );
    

    And now it’s just a matter of using whatever function is wanted on each keypad:

    现在,只需使用每个键盘上需要的任何功能即可:

    //update instances and possibly fire funcitons
    void loop(){
      char key1 = keypad.getKey();
      char key2 = keypad2.getKey();
    
      if (key1 != NO_KEY || key2 != NO_KEY){
        Serial.print("You pressed: ");
        Serial.print(key1 != NO_KEY ? key1 : "nothing on keypad");
    	Serial.print(" and ");
        Serial.print(key2 != NO_KEY ? key2 : "nothing on keypad2");
        Serial.println(".");
      }
    }
    
    • How do I use setDebounceTime(unsigned int time)?

    在Arduino中,按照File-> Examples-> Keypad-> Examples-> DynamicKeypad的主菜单进行操作。打开草图后,找到setup(),您将看到:

void setup(){ 
    
  Serial.begin(9600; 
  digitalWrite(ledPin,HIGH); //打开LED。
  keyboard.addEventListener(keypadEvent); //添加事件监听器。
  keyboard.setHoldTime(500; //默认值是1000mS 
  keyboard.setDebounceTime(250; //默认值为50mS 
}

这表明去抖时间将允许每250毫秒按一次键。如果在该时间范围内发生了多次按键操作(如按键弹起时会发生这种情况),那么这些多余的按键操作将被忽略。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/134213.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • python 元组删除某个元素_python二维数组

    python 元组删除某个元素_python二维数组我想写一些东西从数组中删除一个特定的元素。我知道我必须for遍历数组以查找与内容匹配的元素。假设我有一系列电子邮件,并且想摆脱与某些电子邮件字符串匹配的元素。我实际上想使用for循环结构,因为我还需要对其他数组使用相同的索引。这是我的代码:forindex,iteminemails:ifemails[index]==’something@something.com’:emails….

  • es6数组方法总结

    es6数组方法总结1、for循环2、foreach(es5)3、map(es5)4、some5、every6、filter功能需求:扫码枪扫商品去判断当前护理项目下面是否存在这个商品如果有那么就存在前端的集合里面如果没有则提醒没有此商品护理项目会有多个会存在多个护理项目下面存在相同的商品需要核销判断此商品是否存在我是用的some方法letnewAry=_this.goodsList.some(n=>{ letres=n.goodsList.some(r=&.

  • android计算器开发实例_安卓开发计算器代码

    android计算器开发实例_安卓开发计算器代码实习第四天了,第一天熟悉了一下java,这三天学习了解了一下安卓开发的一些基础知识。做了一个小程序—计算器,以此帖来记录一下。也许也有人可以参考一下)功能真的只有最基本哈哈,最最新手的人可以参考hh首先是activity_main.xml的布局代码<GridLayoutxmlns:android=”http://schemas.android.com/apk/res/android”xmlns:tools=”http://schemas.android.com/tools”a

  • window清理系统垃圾文件代码

    window清理系统垃圾文件代码创建一个txt,后缀改为.bat,文件名自己取,但是要知道这个文件是拿来清理系统垃圾的。代码如下:@echooffpauseecho正在清理系统垃圾文件,请稍等……del/f/s/q%systemdrive%\*.tmpdel/f/s/q%systemdrive%\*._mpdel/f/s/q%systemdrive%\*.logdel/f…

  • 非常详细的sift算法原理解析

    非常详细的sift算法原理解析转非常详细的sift算法原理解析&amp;lt;divclass=&quot;article-info-box&quot;&amp;gt;&amp;lt;divclass=&quot;article-bar-topd-flex&quot;&amp;gt;&amp;lt;

  • mask scoring rcnn_faster rcnn详解

    mask scoring rcnn_faster rcnn详解1.M,对应着图像中的CNN部分,其对输入进来的图片有尺寸要求,需要可以整除2的6次方。在进行特征提取后,利用长宽压缩了两次、三次、四次、五次的特征层来进行特征金字塔结构的构造。ask-RCNN使用Resnet101作为主干特征提取网络2.ResNet101有两个基本的块,分别名为ConvBlock和IdentityBlock,其中ConvBlock输入和输出的维度是不一样的,所以不能连续串联,它的作用是改变网络的维度;IdentityBlock输入维度和输出维度相同,可以串联,用于加深网络的。

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号