-->
Page 1 of 1

Re: ESP8266 not detectable

PostPosted: Wed Mar 09, 2022 1:50 pm
by Inq720
Couple of things
  • What is the UNO doing? Wiring, picture or schematic?
  • Can you reference this github readme? Don't know which one you're talking about. I'm seeing an onslaught of people lately using Arduino to interface to ESP8266 and that is the hardest way imaginable to get things done. Either a built-in USB version WeMos or NodeMCU or a dedicated programmer for an ESP-01 or ESP-07 will be cheaper than any Clone UNO.
  • Since you're getting some output, you're seem to have that part working
  • Problem 1 - The Serial.begin() and such code should be done once... in the setup(). Not in the loop().
  • Problem 2 - I would bet all that code be in the loop should be in the setup(). - Just a guess since "setup end" is my first clue.
  • If that doesn't fix your problem, I've got nothing more - I don't use that ITEADLIB_Arduino_WeeESP8266 library so I don't know what it does or needs.

Good luck