“Sensor-IR Receiver/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) |
||
第75行: | 第75行: | ||
*红外传感器范围较近,一般为1~3米,距离越近越稳定。 | *红外传感器范围较近,一般为1~3米,距离越近越稳定。 | ||
*使用时请将信号发射源正对红外接收传感器,以达到最佳效果。遥控小车时请正对小车方向。 | *使用时请将信号发射源正对红外接收传感器,以达到最佳效果。遥控小车时请正对小车方向。 | ||
− | [[file:. | + | [[file:IR Receive测试角度.png|thumb|400px|center|水平与竖直方向触发范围示意图]] |
<br> | <br> | ||
---- | ---- |
2017年12月19日 (二) 09:51的版本
| |
|
技术规格
编程手册 直接复制如下程序到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
历史
图库
|