-
- Rastrear versões de bibliotecas aqui e suas modificações.
- Escolher uma versão do Arduino IDE e as otimizações.
- Criar pasta "libraries" no raiz do repositório
-
Hi, Did you make a multiple IR receiver for arduino/esp8266 ?
Do you mind to share you files? I'm looking for a library to receive 5 Ir receivers with one arduino/ esp8266/esp32
Many thanks
Pete…
-
**#include
#define pinSensorIR 11
IRrecv sensorIR(pinSensorIR) ;
decode_results codigoIR;
void setup() {
Serial.begin(9600);
sensorIR.enableIRIn();
}
void loop () {
if (sensorIR.dec…
-
I have a copy of the repo in `/home/mithat/Build/Arduino-Makefile/Arduino.mk`.
I have a test project in `/home/mithat/Arduino/mk-sudar-test/`.
The following project makefile succeeds in compiling:
`…
-
```
What steps will reproduce the problem?
1. Implment the IRRemote Library
2. Try to connect to the webserver through the web browser
3. Web page does not open
What is the expected output? What do y…
-
```
What steps will reproduce the problem?
1. Implment the IRRemote Library
2. Try to connect to the webserver through the web browser
3. Web page does not open
What is the expected output? What do y…
-
Hi there,
I tried running the following code on Raspberry Pi Pico, Pico W, and Pico 2:
``` C++
/*
This Arduino receive and decode infrared (IR) signals from a remote control. It uses
the…
-
I was using the Arduino Nano RP2040 Connect and trying to use the SdFat library with IrRemote.
This problem was continuously popping in my output as the #define F in the SysCall.h file conflicted wit…
-
I also wanted to interface to the wired remote so I could use the memory settings 1 and 2. In my case, memory position 1 is all the way down and memory position 2 is as far up as I want it to go.
…
-
Hi,
At first, thank You for great project!
I am trying to use infrared and rf (315MHz) remote controllers with my homemade relay controller. Thanks to your library I can flip relays from HA as w…