-->
Page 1 of 5

Power usage

PostPosted: Sat Jun 13, 2015 8:15 am
by remcohn
did anyone ever measure the powerusage? i have a simple application:
Code: Select all#include <ESP8266WiFi.h>
#include <WiFiClient.h>
const char* ssid = "aaa"; const char* password = "bbb";
void setup(void) {
  WiFi.mode(WIFI_STA);
  WiFi.begin(ssid, password);
}

void loop(void) {
  delay(10000);
}


My module is a ESP-01, and i cannot get it below ~20mA. I measured this with a 1F 'gold cap' and a 1 Ohm resistor, to get rid of the worst spike.

Remco

Re: Power usage

PostPosted: Sat Jun 13, 2015 8:42 am
by lethe
Try removing the power LED. 20 mA is a typical max. LED forward current...

Re: Power usage

PostPosted: Sat Jun 13, 2015 9:02 am
by remcohn
oh wow, something i should have really done myself. i had it dangling up-side-down so never really noticed the led. but unfortunately, it doesnt make a measurable difference. Even with the huge cap, the current jumps up and down quite bit, between ~17 and ~29mA.

Remco

Re: Power usage

PostPosted: Sat Jun 13, 2015 5:07 pm
by cal
If you want less power you can put the esp into sleep mode when you don't need it.