AKnuts
August 31, 2023, 7:08pm
1
I have an MKR 1310 here. I removed the jumper at the bottom and I'm powering it through the VCC pin directly. When it's powered on, no led is ON, as expected.
For testing I'm using this sketch:
#include "ArduinoLowPower.h"
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
for (int i=0; i < 15; i++) {
pinMode(i, INPUT_PULLUP);
}
USBDevice.detach();
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(500);
digitalWrite(LED_BUILTIN, LOW);
delay(500);
LowPower.deepSleep(20000);
}
It's sleeping 20 seconds but while it's sleeping I do measure 2.78mA while in theory it should be possible to power down to 104uA?
What am I doing wrong? What am I missing?
Where did you find the theoretical figure of 104uA?
Does ArduinoLowPower library fully support all sleep modes of the MKR 1310?
Are the other ICs on the board either powered down or in the deepest possible sleep? If the latter, what is their expected current consumption?
AKnuts
August 31, 2023, 7:20pm
3
It's written here: https://docs.arduino.cc/hardware/mkr-wan-1310
Lowest power consumption 104uA
For now there are no other IC's. I have the arduino on a pretty much empty breadboard.
Have you carefully gone through this post?
Hey,
I recently bought the MRK WAN 1310, as the WAN 1300 did consume too much power and it seems that the 1300 was not able to shut down the LoRa module (see this discussion on thethingsnetwork.org ).
The description in the store states:
When properly configured, the power consumption is now as low as 104uA!
How can I achieve this? I'm using the LoRa library (without LoRaWAN) and did get the following measurements:
~30mA while idle, but running (no RX/TX)
~9mA with the SAMD21 in deep slee…
AKnuts
September 1, 2023, 6:30am
5
It turned out that the WAN 1310 I'm using is faulty. I used another one and with that one I'm at 18uA in deepSleep().
system
Closed
February 28, 2024, 6:30am
6
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.