element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum ESP 01 overheating
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 5 replies
  • Answers 2 answers
  • Subscribers 392 subscribers
  • Views 3236 views
  • Users 0 members are here
  • internet of thins
  • overheating
  • esp 01
  • esp8266
Related

ESP 01 overheating

alphaallan
alphaallan over 8 years ago

Hello everyone, i am running a small project using an ESP 01, every thing has working fine when out of the nowhere the ESP started to overheat. At first i thought that i had made something wrong with the power supply and/or program (i had fried a PIC 16F877A in pass just because of a typo), but a checked every thing and i didn't mess up this time, in fact even the blink example for the ESP makes it goes really hot now.

The circuit is an remote control for two relays, managed by an ESP 01 powered by an dedicated 3V3 power supply (for the ESP only) with the GPIO0 and GPIO2 hooked to a pair of optocouplers with 130R resistors, the program uses the aREST and aREST UI API.

if anyone can tell me what maybe happen and if it can be fixed, i will be glad. 

  • Sign in to reply
  • Cancel

Top Replies

  • shabaz
    shabaz over 8 years ago +2 suggested
    Hi Allan, Detail is needed.. high quality photos of your set-up, and ideally a circuit diagram if possible, and let people know what tools you have access to, in order to troubleshoot. The editor tools…
Parents
  • shabaz
    0 shabaz over 8 years ago

    Hi Allan,

     

    Detail is needed.. high quality photos of your set-up, and ideally a circuit diagram if possible, and let people know what tools you have access to, in order to troubleshoot.

    The editor tools you need for inserting photos inline etc are described here:

    How to Ask Questions using the Create Discussion tool

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • alphaallan
    0 alphaallan over 8 years ago in reply to shabaz

    image

    #include <ESP8266WiFi.h>
    #include <aREST.h>
    #include <aREST_UI.h>
    
    aREST_UI rest = aREST_UI();
    
    // WiFi parameters
    const char* ssid = "----";
    const char* password = "-----";
    
    #define LISTEN_PORT           80
    WiFiServer server(LISTEN_PORT);
    
    void setup(void)
    {  
      // Start Serial
      Serial.begin(115200);
      
      // Create UI
      rest.title("Relay Control");
      rest.button(0);
      rest.button(2);
        
      // Give name and ID to device
      rest.set_id("1");
      rest.set_name("esp8266");
      
      // Connect to WiFi
      WiFi.begin(ssid, password);
      while (WiFi.status() != WL_CONNECTED) {
        delay(500);
        Serial.print(".");
      }
      
      Serial.println("");
      Serial.println("WiFi connected");
    
      // Start the server
      server.begin();
      Serial.println("Server started");
      
      // Print the IP address
      Serial.println(WiFi.localIP());
      
    }
    
    void loop() {
      
      // Handle REST calls
      WiFiClient client = server.available();
      
      if (!client) {
        return;
      }
      while(!client.available()){
        delay(1);
      }
      rest.handle(client);
    
    }

     

    Well, here is the diagram, the source code and a few more details.

    1° Besides being crazy hot the ESP runs as it should, so the oscillator must be working properly

    2° the Flash memory seams to be fine, since it does not overheats and i still can flash programs

    3° I had swapped the ESP that i was using by another one, and every thing is working normally (just like the first one in the beginning of my tests)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • alphaallan
    0 alphaallan over 8 years ago in reply to shabaz

    image

    #include <ESP8266WiFi.h>
    #include <aREST.h>
    #include <aREST_UI.h>
    
    aREST_UI rest = aREST_UI();
    
    // WiFi parameters
    const char* ssid = "----";
    const char* password = "-----";
    
    #define LISTEN_PORT           80
    WiFiServer server(LISTEN_PORT);
    
    void setup(void)
    {  
      // Start Serial
      Serial.begin(115200);
      
      // Create UI
      rest.title("Relay Control");
      rest.button(0);
      rest.button(2);
        
      // Give name and ID to device
      rest.set_id("1");
      rest.set_name("esp8266");
      
      // Connect to WiFi
      WiFi.begin(ssid, password);
      while (WiFi.status() != WL_CONNECTED) {
        delay(500);
        Serial.print(".");
      }
      
      Serial.println("");
      Serial.println("WiFi connected");
    
      // Start the server
      server.begin();
      Serial.println("Server started");
      
      // Print the IP address
      Serial.println(WiFi.localIP());
      
    }
    
    void loop() {
      
      // Handle REST calls
      WiFiClient client = server.available();
      
      if (!client) {
        return;
      }
      while(!client.available()){
        delay(1);
      }
      rest.handle(client);
    
    }

     

    Well, here is the diagram, the source code and a few more details.

    1° Besides being crazy hot the ESP runs as it should, so the oscillator must be working properly

    2° the Flash memory seams to be fine, since it does not overheats and i still can flash programs

    3° I had swapped the ESP that i was using by another one, and every thing is working normally (just like the first one in the beginning of my tests)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube