我如何解密 arduino IR sendRC5()?
How do I decrypt arduino IR sendRC5()?
我正在尝试让 arduino Uno 和 Mega 通过 IR 相互通信,但我无法解密输出。
欧诺代码:
#include <IRremote.h>
IRsend irsend;
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
for(int i = 0; i < 200; i++){
irsend.sendRC5(i, 3);
delay(500);
}
}
超级代码:
#include <IRremote.h>
#define RECV_PIN 3
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup() {
Serial.begin(9600);
irrecv.enableIRIn();
}
void loop() {
if (irrecv.decode(&results)){
int state;
if ( results.value == 1 ){
state = HIGH;
}
else{
state = LOW;
}
Serial.println(results.value, DEC);
irrecv.resume();
}
}
串行输出:
08:59:57.562 -> 819043197
08:59:58.072 -> 4239130558
08:59:58.586 -> 4092259158
08:59:59.094 -> 1271936904
08:59:59.604 -> 1322269761
09:00:00.119 -> 3687369585
09:00:00.625 -> 1513342804
09:00:01.136 -> 869376052
09:00:01.648 -> 819043197
09:00:02.157 -> 4239130558
09:00:02.669 -> 4092259158
09:00:03.180 -> 1271936904
09:00:03.691 -> 1322269761
对于 500 个输出,是否有某种解密功能,或者我是否必须手动映射每个输出?我的操纵杆可以 return 该范围内的任何值。
我的库不好,更新它解决了问题
我正在尝试让 arduino Uno 和 Mega 通过 IR 相互通信,但我无法解密输出。
欧诺代码:
#include <IRremote.h>
IRsend irsend;
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
for(int i = 0; i < 200; i++){
irsend.sendRC5(i, 3);
delay(500);
}
}
超级代码:
#include <IRremote.h>
#define RECV_PIN 3
IRrecv irrecv(RECV_PIN);
decode_results results;
void setup() {
Serial.begin(9600);
irrecv.enableIRIn();
}
void loop() {
if (irrecv.decode(&results)){
int state;
if ( results.value == 1 ){
state = HIGH;
}
else{
state = LOW;
}
Serial.println(results.value, DEC);
irrecv.resume();
}
}
串行输出:
08:59:57.562 -> 819043197
08:59:58.072 -> 4239130558
08:59:58.586 -> 4092259158
08:59:59.094 -> 1271936904
08:59:59.604 -> 1322269761
09:00:00.119 -> 3687369585
09:00:00.625 -> 1513342804
09:00:01.136 -> 869376052
09:00:01.648 -> 819043197
09:00:02.157 -> 4239130558
09:00:02.669 -> 4092259158
09:00:03.180 -> 1271936904
09:00:03.691 -> 1322269761
对于 500 个输出,是否有某种解密功能,或者我是否必须手动映射每个输出?我的操纵杆可以 return 该范围内的任何值。
我的库不好,更新它解决了问题