-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Labels
status: waiting for informationMore information must be provided before work can proceedMore information must be provided before work can proceedtype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project
Description
After uploading a sketch to my MKR FOX 1200, the following code never wakes up after the first sleep call (LED remains on):
#include <ArduinoLowPower.h>
void setup() {
pinMode(6, OUTPUT);
}
void loop() {
digitalWrite(6, HIGH);
LowPower.sleep(500);
digitalWrite(6, LOW);
LowPower.sleep(500);
}
The fault only occurs under the specific conditions of the program running after a sketch upload has been performed. If I power cycle the board, it works correctly.
Additional context
Metadata
Metadata
Assignees
Labels
status: waiting for informationMore information must be provided before work can proceedMore information must be provided before work can proceedtype: imperfectionPerceived defect in any part of projectPerceived defect in any part of project