Edit, the solder pad should be bridged to power the board.
I reconnected the power LED. Please see image.
What should be bridged?
Do you mean the LED pad?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Edit, the solder pad should be bridged to power the board.
The solder bridge is on the back on most boards
That instructable confirms the position of your solder jumper. Also shows how to put Arduino in sleep mode.
Mike.
#include <LowPower.h>
LowPower.powerDown(SLEEP_2S, ADC_OFF, BOD_OFF);
The regulator that it said it has is not a. Bad one it has good specks
With the power LED disconnected, it dropped from 16.5ma to 16.4ma. Not much of a savings.
Are you disconnected the transmitter, and putting the Arduino to sleep? - those are the important things - disconnecting the LED will make a massive saving once you've already done that.
The solder bridge is on the back on most boards
Come to think of it, right now I am only putting the processor to sleep for (I think) only 2 seconds for each run of the loop.
Mike suggested I look at the transceiver data sheet on how to shut it down but I have not figured it out yet.
Please, let me ask this.
How about if I use one of these?
SparkFun 3.3V Step-Up Breakout - NCP1402
https://www.sparkfun.com/products/10967
Switch the power to it, using an I/O pin, and either a transistor or FET switch. Even if it has a shut-off capability, they still waste a certain amount of power.
I would also suggest you increase the sleep time (at least temporarily), as repeatedly coming out of sleep while measuring makes it more difficult to measure - to measure mine I temporarily switch the TMR off, so it never comes out of sleep. Then I measure again, without sleep at all, then measure how long it spends out of sleep during normal functioning (using a scope) - a bit of simple maths then gives you the average current consumption.
In my case I was amazed how little time it spends out of sleep, only a few micro-seconds out of every second.
Switch the power to it, using an I/O pin, and either a transistor or FET switch. Even if it has a shut-off capability, they still waste a certain amount of power.
The transceiver only uses 1uA when in sleep mode.
Mike.