您现在的位置是:网站首页> 硬件

Arduino红外遥控出问题,换库版本

  • 硬件
  • 2021-04-16
  • 772人已阅读
摘要

采用2.8.0版本

#include <IRremote.h>

int RECV_PIN = 11;

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

  }

  delay(100);

}


Top