码迷,mamicode.com
首页 > 其他好文 > 详细

SCR638红外接收管介绍

时间:2017-10-28 19:47:39      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:.com   put   定义   amp   接收器   code   技术分享   begin   set   

技术分享

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红外接收管介绍

标签:.com   put   定义   amp   接收器   code   技术分享   begin   set   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!