My Infrared Breaker Module is not receiving any signals

Hi guys,

I'm having trouble getting my IR breaker module to work and getting code from a tv remote, and I'm hoping some of you experienced Arduino or Using Infrared can help me troubleshoot the issue. I've tried everything I can think of, and nothing has worked.

I'm working on a project where I need to control various devices using IR signals and flex sensors from my Arduino. I've connected the IR breaker module to my Arduino and have been using the IRremote library for transmitting IR signals.

The Issue

1.No Signal Output: When I upload the code to my Arduino and press the buttons on my remote control, the IR breaker module doesn't seem to transmit any signals. I've triple-checked my connections, and they seem to be fine.
2.*Library and Code: I'm using the IRremote library, and I'm confident that the library is installed correctly. Here's a snippet of the code I'm using:

#include <IRremote.h>

const int RECV_PIN = 7;
IRrecv irrecv(RECV_PIN);
decode_results results;

void setup(){
Serial.begin(9600);
irrecv.enableIRIn();
irrecv.blink13(true);
}

void loop(){
if (irrecv.decode(&results)){
Serial.println(results.value, HEX);
irrecv.resume();
}
}

Have You checked the remote towards its original device?
Have You checked the battery?

You likely have. Else the compiler had posted error messages.

Schematics would be the next to ask for. If there's an error in powering or wiring, no code digging will help.

Im using this schematic to wire my breaker module


And this is what i have done myself:

Okey. I don't know that module "G R Y" are not known. A link to its datasheet would be good.
As usual, in Fritzing pictures things are expected to run without power and Your pictures show no powering. How is the setup powered?


I directly connect it to my computer and this is the datasheet

You skipped most of the reply. What kind of output is "Y"? Don't answer "It is digital" because that would not be enough. The datasheet would tell.
Try again.

Sorry im just confused on what your asking are you talking about the datasheet for the actual module as in this: https://www.jaycar.com.au/medias/sys_master/images/images/9963063377950/XC4427-dataSheetMain.pdf and im pretty sure it would be 5v

Hi,
Your module for info.

Tom... :grinning: :+1: :coffee: :australia:

To be sure I would add a 10k pullup resistor to the signal output in case it is an open collector output.
I would say that's a Chinese sales document as it lacks most of the usual electrical information.

@kjaliens
See if this tutorial helps you:
https://www.circuitbasics.com/arduino-ir-remote-receiver-tutorial/

And:

Yeah the activity led beams red so im pretty sure its working its just not receiving the signals

Alright i will try that

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.