-
Notifications
You must be signed in to change notification settings - Fork 833
Home
David Conran edited this page Jan 23, 2018
·
9 revisions
Welcome to the IRremoteESP8266 wiki!
Notes:
If you are using the (Serial) RX pin to connect to the IR receiver module, make sure to add the following line in the setup()
function.
Serial.begin(115200,SERIAL_8N1,SERIAL_TX_ONLY);
That should
limit in-bound serial communications from interfering on the ESP8266.
[Fritzing/Diagram] NodeMCU v1.0 with ESP-12E and IR Reciever
[Fritzing/Diagram] NodeMCU with a 940nm IR LED and NPN transistor (e.g a 2N3904).
Similarly as with Receiving, if you are using the RX pin to drive the IR LED/transmitter, make sure to add the following line in the setup()
function.
Serial.begin(115200,SERIAL_8N1,SERIAL_TX_ONLY);
That should
limit in-bound serial communications from interfering on the ESP8266.