You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read the documentation at readthedocs and the issue is not addressed there.
I have tested that the issue is present in current master branch (aka latest git).
I have searched the issue tracker for a similar issue.
If there is a stack dump, I have decoded it.
I have filled out all fields below.
Platform
Hardware: [ESP-12E]
Core Version: [latest git hash or date]
Development Env: [Arduino IDE]
Operating System: [MacOS]
Settings in IDE
Module: [Nodemcu]
Flash Mode: [no idea]
Flash Size: [4MB]
lwip Variant: [v2 Lower Memory]
Reset Method: [nodemcu]
Flash Frequency: [40Mhz]
CPU Frequency: [80Mhz]
Upload Using: [OTA|SERIAL]
Upload Speed: [115200] (serial upload only)
Problem Description
I have a similar issue as #1020, using ESP12E board. When I am declaring certain pins, using attachInterrupts() and setting up Access Point WiFi in the same void setup() the wifi stops working. I have tested out that if I only declare pins D0, D1, D2, D3, D4, A0 and set up WiFi without the interrupts it does work. Please seen my setup code below!
I have tried detachInterrupt(), but it did not work.
Does anyone have the same problem? Is there a solution to this problem?
You mention D numbering, but your code uses GPIO numbering, and they're not the same.
E.g.: on a nodemcu board, D1 is GPIO5 and GPIO1 is TX.
Your code is using GPIO0-4, and some of those are not allowed for user applications. I suggest you study the board pinout and how it connects to the ESP12 pinout.
Closing as user error.
Basic Infos
Platform
Settings in IDE
Problem Description
I have a similar issue as #1020, using ESP12E board. When I am declaring certain pins, using attachInterrupts() and setting up Access Point WiFi in the same void setup() the wifi stops working. I have tested out that if I only declare pins D0, D1, D2, D3, D4, A0 and set up WiFi without the interrupts it does work. Please seen my setup code below!
I have tried detachInterrupt(), but it did not work.
Does anyone have the same problem? Is there a solution to this problem?
Thank you in advance.
MCVE Sketch
The text was updated successfully, but these errors were encountered: