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

6红外遥控程序

时间:2019-06-25 17:15:49      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:ble   lse   out   resume   红外遥控   remote   receiver   put   The   

#include <IRremote.h>
int RECV_PIN = 11;
int LED_PIN = 2;
IRrecv irrecv(RECV_PIN);

decode_results results;

void setup()
{
  Serial.begin(9600);
  irrecv.enableIRIn(); // Start the receiver
  pinMode(LED_PIN, OUTPUT);
  digitalWrite(LED_PIN, HIGH);
}

void loop() {
  if (irrecv.decode(&results)) {
    Serial.println(results.value, HEX);
  
    
    if (results.value == 0xFFA25D) //开灯的值
    {
      digitalWrite(LED_PIN, LOW);
    } else if (results.value == 0xFF629D) //关灯的值
    {
      digitalWrite(LED_PIN, HIGH);
    }
    irrecv.resume(); // Receive the next value
  }
  delay(100);
}

红外接收器

6红外遥控程序

标签:ble   lse   out   resume   红外遥控   remote   receiver   put   The   

原文地址:https://www.cnblogs.com/Sonny-xby/p/11083480.html

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