Skip to content

Sparkfun ESP32 Thing: Board gets hot just by including WiFi.h #75

Closed
@chrgro

Description

@chrgro

I'm planning on contributing a bit to this repo, since I've just aquired a couple of these ESP32 based boards. If you can point me to some documentation then I'll help out as best I can.

The following code keeps the ESP32 running cool (even if I add some simple led blinking in the loop).

void setup() {
  // put your setup code here, to run once:
  pinMode(5, OUTPUT);
  digitalWrite(5, HIGH);
}

void loop() {
}

While the exact same code just with included WiFi.h runs very hot! Why is this?

#include <WiFi.h>

void setup() {
  // put your setup code here, to run once:
  pinMode(5, OUTPUT);
  digitalWrite(5, HIGH);
}

void loop() {
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions