Ref. 108.KS0026

MODULO DIGITAL RECEPTOR INFRAROJOS IR HX1838 PARA ARDUINO

Stock: 54  
Ref. 108.KS0026
Precio (IVA incluido) 1,03 €
Envío Gratis a partir de 150 €
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
}
Reciba las novedades en su email
  • Periféricos de Cabo Vilán S.L. - C.I.F.: ESB70364260
  • Sofía Rivas, 1 - 15123 - Camariñas - A Coruña - España.