首页 > 其他 > 详细

SCR638红外接收管介绍

时间:2017-10-28 19:36:03      阅读:397      评论:0      收藏:0      [点我收藏+]

技术分享

VCC 对应电路板上的Power supply,vin的电压是5V也可以使用

技术分享

技术分享

程序:

/* 
 * IRremote: IRrecvDemo - demonstrates receiving IR codes with IRrecv 
 * An IR detector/demodulator must be connected to the input RECV_PIN. 
 * Version 0.1 July, 2009 
 * Copyright 2009 Ken Shirriff 
 * http://arcfn.com 
 */  
  
#include <IRremote.h>     // IRremote库声明  
  
int RECV_PIN = 3;        //定义红外接收器的引脚为11  
  
IRrecv irrecv(RECV_PIN);   
  
decode_results results;  
  
void setup()  
{  
  Serial.begin(9600);  
  irrecv.enableIRIn(); // 启动接收器  
}  
  
void loop() {  
  if (irrecv.decode(&results))   
  {  
    Serial.println(results.value, HEX);//以16进制换行输出接收代码  
    irrecv.resume(); // 接收下一个值  
  }  
  delay(100);  
}  

 

SCR638红外接收管介绍

原文:http://www.cnblogs.com/SATinnovation/p/7747627.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!