“(SKU:ELB060670/ELB060671)原装进口欧姆龙大按键按钮模块 黄键 白键”的版本间的差异
来自YwRobot Studio Wiki
(→样例代码) |
(→样例代码) |
||
第27行: | 第27行: | ||
*[[File:原装进口欧姆龙大按键按钮模块LINE.jpg|500px|]] | *[[File:原装进口欧姆龙大按键按钮模块LINE.jpg|500px|]] | ||
− | === | + | ===样例代码1=== |
<pre style="color:blue"> | <pre style="color:blue"> | ||
const int buttonPin = 2; | const int buttonPin = 2; |
2017年1月7日 (六) 09:13的版本
产品参数
- 尺寸:26*21mm
- 固定孔:3mm
- 孔距:15mm
- 按键:原装欧姆龙B3F按键 黄键
- 触发力度:2.55N
- 电压:3.5、5V
- 输出:数字电平(按下低电平,释放高电平)
- 接口:Arduino 3P接口 S V G
- 平台:Arduino、单片机、ARM、树莓派
产品特性
- 采用原装欧姆按键,手感极佳
- 优质弹片,触发稳定,使用寿命长
- 黄键款,触发力度适中
- 不同颜色的欧姆龙按键手感是不同的,白色的手感最轻,黄色的手感适中
- 白色的作用力为1.27N,黄色的作用力为2.55N,请根据需要选购
使用教程
样例代码1
const int buttonPin = 2; const int ledPin = 9; int buttonState = 1; void setup() { pinMode(ledPin, OUTPUT); pinMode(buttonPin, INPUT); } void loop(){ buttonState = digitalRead(buttonPin); if (buttonState == LOW) { digitalWrite(ledPin, HIGH); } else { digitalWrite(ledPin, LOW); } }
更多
[YWRobot产品资料下载]