“Sensor-IR Receiver/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) |
||
第74行: | 第74行: | ||
<p style="color: #333333;font-size:155%">'''注意事项'''</p> | <p style="color: #333333;font-size:155%">'''注意事项'''</p> | ||
*红外传感器范围较近,一般为1~3米,距离越近越稳定。 | *红外传感器范围较近,一般为1~3米,距离越近越稳定。 | ||
− | * | + | *使用时请将信号发射源正对红外接收传感器,以达到最佳效果。遥控小车时请正对小车方向。 |
[[file:.JPG|thumb|400px|center]] | [[file:.JPG|thumb|400px|center]] | ||
<br> | <br> |
2017年12月19日 (二) 09:20的版本
| |
|
技术规格
编程手册 直接复制如下程序到IDE中 #include <IRremote.h>
int RECV_PIN = 6;
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup()
{
Serial.begin(9600);
irrecv.enableIRIn(); // Start the receiver
}
void loop() {
if (irrecv.decode(&results)) { //接收并解析
Serial.println(results.value, HEX); //串口打印接收到的指令
irrecv.resume(); // Receive the next value
}
}
注意事项
应用
文档
Q&A
历史
图库
|