Replies: 1 comment 4 replies
-
That's interesting. I haven't come across Wifi as being an issue before. There are plenty of projects (and our examples) that use Wifi and IR commands with no real reported issues. Doesn't mean there isn't a time for a first case or a report. As I understand it (and that not an expert-level opinion), on the 8266 (a single CPU device), all the WiFi processing is done effectively in the background. e.g. during Do you have a simplified case/example code that reproduces it at all? Have you tried wrapping your send call (i.e. |
Beta Was this translation helpful? Give feedback.
-
Excellent library!
I’m using the 288 bit protocols from the ir_Mitsubishi.h library on a Mitsubishi mini-split using a ESP82266 nodeMCU. External circuit is the recommended transistor driver to IR diode and recommended GPIO pin.
Apparently Wifi can interfere with the transmission of the commands. I’m assuming the WiFi activity is doing something with the timing because I can see that the IR command is still transmitting, it’s just not being recognized as a command on the AC unit. I isolated my trouble to the WIfi and now turn off the WiFi before sending the command. With Wifi off, the commands are working as expected. It’s a bit annoying to turn off and on the Wifi since I have a web based interface. Searching the discussions for interference I saw Bluetooth mentioned and CPU loading on an ESP32 too but nothing else. I think I’m implementing a pretty common application with a web interface to a controller; something I would have thought many other people would have tried and this would be commonly run into. Perhaps I’m missing something else that I can be enlightened with. Or is this common knowledge that just hasn’t been highlighted?
Beta Was this translation helpful? Give feedback.
All reactions