Hi everyone, is it possible to activate a sleep mode on mkr wan 1300 ? or it's not possible ?
but it's possible, have you an sketch example for sleep mode for this board ?
thank you
Hi everyone, is it possible to activate a sleep mode on mkr wan 1300 ? or it's not possible ?
but it's possible, have you an sketch example for sleep mode for this board ?
thank you
Hi,
It works for the MKR1000, so I think it should work for the MKRWAN 1300.
Have a look here: Sleep mode for MKR1000 using RTCZero - MKR1000 - Arduino Forum
Luc
Hello!
If you want deep sleep, or standby sleep mode:
SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk; // Setting sleep mode to Standby
__WFI(); // sleep
Otherwise read in the samd21 datasheet, or search for how to sleep the arduino zero, it is the same.