ArduinoLowPower
ArduinoLowPower copied to clipboard
Powersave features for SAMD boards
After days of work (I am a noob), I have finally achieved the following: - Deep sleep of the SAMD21G18 - Sleep current at around 3µA - Wake up from...
I am using the [**Nordic Semiconductor nRF5 Boards** platform](https://github.com/sandeepmistry/arduino-nRF5) with a custom nRF52 dev board. I tried to compile one of the simple timed low power examples and I am...
I have multiple standard arduino `attachInterrupt` calls and one LowPower.attachInterruptWakeup, however all interrupts cause the arduino to wake up, and none of them, if I have no LowPower.attachInterruptWakeup
https://github.com/arduino-libraries/ArduinoLowPower/blob/6fd308af4aaf2759a13697f9e670e427eb517b3a/src/samd/ArduinoLowPower.cpp#L9 The comment at this line says "disable GCLK module". But my reading of the somewhat ambiguous documentation of the CLKCTRL register is different. I believe each generic clock id...
I'm using a MKR WAN 1310 with the following code: ```cpp Serial.print("Battery voltage: "); Serial.println(analogRead(BATTERY_ANALOG_PIN)); LowPower.attachAdcInterrupt(BATTERY_ANALOG_PIN, lowBatteryVoltage, ADC_INT_BETWEEN, minLowBattery, maxLowBattery); Serial.println("Can you see me?"); ``` I can see in my...
Hi, I am using a button to put Arduino in sleep mode and wake it up, but the Serial is not working anymore after it is waking up. What should...
Hi, just wondering if The Low Power Library will soon also work for the Arduino Nano RP2040 Connect ? If yes, when will this be the case? If no, what...
Hello, I am using the Arduino Low Power library with an MKR1000 board. I have found that when I implement the LowPower.sleep function the sleep cycle is lasting twice as...
This commit tries to solve https://github.com/arduino-libraries/ArduinoLowPower/issues/7 ; must be used in conjuction with https://github.com/arduino/ArduinoCore-samd/pull/361 Expected behaviour: the USB core is now totally disabled during standby (eg. it cannot receive a...