在用Arduino写红外程序的时候,不知道自己的红外信号发送的类型是遵循哪一个的。看了看官网的demo,在IRRemote
下面有一个IRtest2
,可以用这个来测试自己用的红外发送的信息类型。得知自己用的是NEC,测试的过程算是一个遍历,测试 1~8等等。
// This is the raw data corresponding to NEC 0x12345678
unsigned int sendbuf[] = { /* NEC format */
9000, 4500,
560, 560, 560, 560, 560, 560, 560, 1690, /* 1 */
560, 560, 560, 560, 560, 1690, 560, 560, /* 2 */
560, 560, 560, 560, 560, 1690, 560, 1690, /* 3 */
560, 560, 560, 1690, 560, 560, 560, 560, /* 4 */
560, 560, 560, 1690, 560, 560, 560, 1690, /* 5 */
560, 560, 560, 1690, 560, 1690, 560, 560, /* 6 */
560, 560, 560, 1690, 560, 1690, 560, 1690, /* 7 */
560, 1690, 560, 560, 560, 560, 560, 560, /* 8 */
560};
库里给了一个示例:
#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);
}
在这一步中,我们可以获取出红外发出的值,于是可以用到下一步。
我接收到的值是NEC的32位: 0xFF906F.
#include <IRremote.h>
IRsend irsend;
void setup()
{
}
void loop() {
irsend.sendSony(0xFF906F, 32);
delay(300);
}
围观我的Github Idea墙, 也许,你会遇到心仪的项目