红外遥控接收-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 429|回复: 2

红外遥控接收

[复制链接]
发表于 2022-9-18 18:58 | 显示全部楼层 |阅读模式
贵司官网关于红外接收的内容

https://www.openjumper.com/doc/ojff18-ir-receiver-kit?keyword=%E7%BA%A2%E5%A4%96%E6%8E%A5%E6%94%B6
与最新的IRremote库不是很匹配. 特此修改如下,实验运行良好:


#include <IRremote.h>


int IR_RECEIVE_PIN = 4;

void setup()
{
   Serial.begin(9600);
   IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK); // Start the receiver

}

void loop() {
  if (IrReceiver.decode()) {
      uint32_t tmp = IrReceiver.decodedIRData.decodedRawData;

      if (tmp != 0){
      Serial.println(tmp, HEX);
      //IrReceiver.printIRResultShort(&Serial); // optional use new print version
      }

      IrReceiver.resume(); // Enable receiving of the next value
  }
}

发表于 2022-9-21 10:40 | 显示全部楼层
'IR_RECEIVE_PIN' was not declared in this scope  这个问题怎么解决
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-27 14:54 , Processed in 0.076305 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表