Questions tagged [infrared]

Infrared radiation (IR), sometimes called infrared light, is electromagnetic radiation (EMR) with wavelengths longer than those of visible light. It is therefore generally invisible to the human eye.

Infrared radiation (IR), sometimes called infrared light, is electromagnetic radiation (EMR) with wavelengths longer than those of visible light. It is therefore generally invisible to the human eye.

41 questions
4
votes
1 answer

How many Infrared sensor modules can be added to a single Arduino (eg;Uno)

I am looking to add block detection to my model railroad. I need approx. 40 infrared sensors to power 40 LED's on my control panel. No signals or other logic required yet, just the LED indications -LED- on=occupied off=vacant. How many Uno boards…
2
votes
0 answers

Infrared Reciver doesn't work properly after the first signal

i'm trying to play a passive buzzer with an IR reciver My Code #include IRrecv irrecv(10); decode_results results; void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(11, OUTPUT);//buzzer …
2
votes
1 answer

Unable to control fan with IR circuit despite capturing and reproducing the IR transmissions

I'm trying to use an Arduino to control my Bionaire window fan. I followed several guides to build an IR receiver circuit to record the patterns sent by the remote for its five buttons . From there, I've tried both an IR transmitter circuit with…
ihleonard
  • 41
  • 3
2
votes
2 answers

Which one is IR led?

I've ever been so confused in my life. I'm new to Arduino and electronics but I just can't figure it out which diode is IR transmitter/receiver or even if it is IR. I know that IR is not visible to human eye but I'm really clueless and I need help…
Qiasm
  • 123
  • 1
  • 3
2
votes
1 answer

how to increase the range of KY-005?

I am using a KY-005 with an Arduino Uno. I have the knowledge that Arduino can provide a forward current of 40 mA. How can I make it to 55 mA or above upto 60 mA to unlock its full potential, so as to get efficient IR communication without data…
rishi
  • 21
  • 1
1
vote
0 answers

Uno: Infrared Transmitter Module Not Transmitting

I purchased https://www.jaycar.co.nz/medias/sys_master/images/images/9677365510174/XC4426-dataSheetMain.pdf, which seems identical to https://arduinomodules.info/ky-005-infrared-transmitter-sensor-module/. I connected the module according to the…
1
vote
1 answer

memory leak w/ no Strings involved

I'm trying to read data being transferred via Infrared from my Smartmeter on my ESP8266 using the following sketch: #include #include #include #include #include…
1_am_r00t
  • 21
  • 2
1
vote
0 answers

Infared: some controllers send code into infinite loop

I have a piece of code that captures input from infrared and spits it out to the serial port. When I use it with a simple controller that comes with a typical kit, it receives the infrared code just fine for each button I depress. But when I try and…
brad
  • 201
  • 1
  • 13
1
vote
0 answers

IRremote sending only works once with Arduino Nano

I am trying to control a receiver, wich is not working. I believe i have to send the code at least three times... but after the first time the IR Led stays off. I am using the Arduino Nano with the LED connected to pin 13. The "Send" message keep…
1
vote
1 answer

What can I do to optimise this code?

I have optimised it as much as I feel I can and want to know what suggestions you have that could make it more efficient etc. Note: I know the array goes on forever :) volatile uint16_t…
fman122
  • 21
  • 2
1
vote
0 answers

Arduino 2 times slower? Broken?

Hello I have been here for a couple hours troubleshooting code and turns out it wasn't even my code that was the problem. My arduino uno is like 2 times slower than what its supposed to be. If I blink a led with a delay of 500ms it takes 1 second. I…
Macaroni
  • 93
  • 5
1
vote
1 answer

IR signal: different libs, different bit/byte ordering?

For IR sender at Nano Every (ATMega4809-based) I am using infrared4arduino to send simple remote control codes. I am double-checking those with a Nano-based receiver with IRrecvDumpV2 example from IRremote library but I am receiving something else…
eudoxos
  • 169
  • 1
  • 10
1
vote
0 answers

Problem sending IR signal on Arduino Leonardo/Uno (IRRemote library)

I am trying to use my Arduino Leonardo (or Uno!) as a remote with the IRRemote library. The current setup picks up and decodes a signal perfectly, but fails to retransmit it. I have tested the infrared LED and it works. I have tested the setup…
symtek
  • 11
  • 2
1
vote
2 answers

How does input from IR receiver to Arduino UNO board work?

I have a very simple circuit with an Elegoo IR receiver module connected to an Arduino UNO. The three wires are connected correctly with the data wire (Y) connected to pin 8. The code works fine, as every time I press button on the remote, the…
yannism
  • 21
  • 1
  • 4
1
vote
0 answers

Teensy freezing when reading ir sensor

I have a teensy that controls a motor and reads from a ir sensor, GP2Y0E02b. The issue i run into is that at random times the teensy seems to freeze, the main code stops printing but the interrupt routine continue to work. It seems to be that when…
Jasdeep Dhillon
1
2 3