6红外遥控程序
Posted sonny-xby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6红外遥控程序相关的知识,希望对你有一定的参考价值。
#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红外遥控程序的主要内容,如果未能解决你的问题,请参考以下文章