MODULO DIGITAL RECEPTOR INFRARROJOS IR PARA ARDUINO
search
  • MODULO DIGITAL RECEPTOR INFRARROJOS IR PARA ARDUINO

MODULO DIGITAL RECEPTOR INFRARROJOS IR PARA ARDUINO

1,10 €
Cantidad
Entrega inmediata

 

Politica de seguridad

 

Política de entrega

Este IR es ampliamente utilizado en control remoto. Con este receptor IR, el proyecto Arduino puede recibir el comando de cualquier controlador IR remoto si tiene el decodificador correcto. Bueno, también será fácil hacer su propio controlador IR usando el transmisor IR.

Power Supply: 5V
Interface:Digital
Modulate Frequency: 38Khz
Module Interface Socket:JST PH2.0
Size: 30*20mm
Weight: 4g

Sample Code:
#include
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
}

703729
Nuevo