Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By alon24
#13182 Does the ESP8266 Arduino suport IR (infra red)?

I want to do a menu system for my project or just use an ir remote, to control the functions, so I need for it to learn commands, and repeat them.

Is that supported yet?
User avatar
By unreality
#13232 IR generally requires a 36-38khz signal, and without PWM support, i don't think its achievable using only the esp8266 at the moment? Maybe via bit-banging and delayMicroseconds() you could hack something together.

Or use a separate 555 timer (or even AVR) to generate the 36-38khz signal and turn it on/off to send data. Receiving is probably easier though.