IndIOButtonPanel:在 Industruino 上获取当前按下按钮的简单界面

时间:2024-06-26 13:27:06
【文件属性】:

文件名称:IndIOButtonPanel:在 Industruino 上获取当前按下按钮的简单界面

文件大小:5KB

文件格式:ZIP

更新时间:2024-06-26 13:27:06

C++

IndIO按钮面板 用于读取 Industruino 上按钮状态的简单 Arduino 库。 安装 请参阅: 下载存储库的 zip 文件并通过 Arduino IDE 安装,或者使用 git checkout 进行手动安装。 用法 IndIOButtonPanel btns; int lastButton; int currentButton; void setup() { btns = IndIOButtonPanel(); lastButton = NONE_PRESSED; currentButton = NONE_PRESSED; } void loop() { currentButton = btns.readButtonPanel(); if(currentButton != lastButton){ //Do som


【文件预览】:
IndIOButtonPanel-master
----IndIOButtonPanel.cpp(3KB)
----IndIOButtonPanel.h(2KB)
----examples()
--------Show_Button_Pressed()
----README.md(1006B)

网友评论