Descripción
Receptor Infrarojo TL1838
Led Infrarrojo
Decodifica cualquier señal a 38 KHz que puede ser de cualquier control remoto infrarrojo TV, modulares, etc.
(regularmente se requiere un microcontrolador para interpretar la señal)
Voltaje: 2.7 Vcc a 5.5 Vcc
Corriente: 0.4 mA a 1.5 mA
Frecuencia: 37.9kHz
Angulo de recepción: 45° a partir de la línea directa entre el transmisor y receptor
Ejemplo de diagrama y código
//Infinite loop
void loop() {
if (irrecv.decode(&results)) {
Serial.println(results.value, DEC);
dump(&results);
irrecv.resume(); // Receive the next value
}
}
//Dumps the result and prints the numeric received dada and type of remote
void dump(decode_results *results) {
// Dumps out the decode_results structure.
// Call this after IRrecv::decode()
int count = results->rawlen;
if (results->decode_type == UNKNOWN) {
Serial.print(«Unknown encoding: «);
}
else if (results->decode_type == NEC) {
Serial.print(«Decoded NEC: «);
}
else if (results->decode_type == SONY) {
Serial.print(«Decoded SONY: «);
}
else if (results->decode_type == RC5) {
Serial.print(«Decoded RC5: «);
}
else if (results->decode_type == RC6) {
Serial.print(«Decoded RC6: «);
}
else if (results->decode_type == PANASONIC) {
Serial.print(«Decoded PANASONIC – Address: «);
Serial.print(results->address, HEX);
Serial.print(» Value: «);
}
else if (results->decode_type == LG) {
Serial.print(«Decoded LG: «);
}
else if (results->decode_type == JVC) {
Serial.print(«Decoded JVC: «);
}
else if (results->decode_type == AIWA_RC_T501) {
Serial.print(«Decoded AIWA RC T501: «);
}
else if (results->decode_type == WHYNTER) {
Serial.print(«Decoded Whynter: «);
}
Serial.print(results->value, HEX);
Serial.print(» («);
Serial.print(results->bits, DEC);
Serial.println(» bits)»);
Serial.print(«Raw («);
Serial.print(count, DEC);
Serial.print(«): «);
for (int i = 1; i < count; i++) {
if (i & 1) {
Serial.print(results->rawbuf[i]*USECPERTICK, DEC);
}
else {
Serial.write(‘-‘);
Serial.print((unsigned long) results->rawbuf[i]*USECPERTICK, DEC);
}
Serial.print(» «);
}
Serial.println();
}
Valoraciones
No hay valoraciones aún.