Closed
Description
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
Labels
No labels