diff --git a/examples/Standby_WakeFromPin/Standby_WakeFromPin.ino b/examples/Standby_WakeFromPin/Standby_WakeFromPin.ino index 2603ce1..298094b 100644 --- a/examples/Standby_WakeFromPin/Standby_WakeFromPin.ino +++ b/examples/Standby_WakeFromPin/Standby_WakeFromPin.ino @@ -5,7 +5,7 @@ This sketch is universal and worksn on both Portenta C33 and H7. On the the Portenta C33 you can select any of the supported pins (A0, A1, A2, A3, A4, A5, D4, D7) to wake up the board from standby mode, - but on the Portenta H7 only GPIO0 can be used to wake up the board from standby mode. GPIO0 is available trough the High Density Connectors and you need a breakout board to access it. + but on the Portenta H7 only GPIO0 can be used to wake up the board from standby mode. GPIO0 is available through the High Density Connectors and you need a breakout board to access it. Requirements: - Arduino Portenta C33, Arduino Portenta H7 diff --git a/examples/Standby_WakeFromRTC_C33/Standby_WakeFromRTC_C33.ino b/examples/Standby_WakeFromRTC_C33/Standby_WakeFromRTC_C33.ino index 6926365..bab22d5 100644 --- a/examples/Standby_WakeFromRTC_C33/Standby_WakeFromRTC_C33.ino +++ b/examples/Standby_WakeFromRTC_C33/Standby_WakeFromRTC_C33.ino @@ -3,7 +3,7 @@ This example demonstrates how to wake up the Portenta C33 from standby mode using the included RTC (Real Time Clock). The device will go to sleep for 1 second and then wake up. When the device is awake you will see the board's blue LED turned on. - Effectivelly, you will get the same effect as with blink. + Effectively, you will get the same effect as with blink. On the Portenta C33 with the peripherals turned off you can expect around 60uA of current consumption in standby mode. The example also turns off the peripherals before going to sleep and turns them back on after waking up. @@ -62,7 +62,7 @@ void setup() { board.enableWakeupFromRTC(0, 0, 10); // Sleep for 10 seconds - delay(10000); // Keep the board awake for 1 second, so we can se it working + delay(10000); // Keep the board awake for 10 seconds, so we can se it working board.shutDownFuelGauge(); board.setAllPeripheralsPower(false); diff --git a/examples/Standby_WakeFromRTC_H7/Standby_WakeFromRTC_H7.ino b/examples/Standby_WakeFromRTC_H7/Standby_WakeFromRTC_H7.ino index 0043259..edd61aa 100644 --- a/examples/Standby_WakeFromRTC_H7/Standby_WakeFromRTC_H7.ino +++ b/examples/Standby_WakeFromRTC_H7/Standby_WakeFromRTC_H7.ino @@ -55,10 +55,11 @@ void setup() { } } - delay(10000); // keep the board awake for 5 seconds, so we can se it working + delay(10000); // keep the board awake for 10 seconds, so we can se it working board.shutDownFuelGauge(); + // The LED should go off when the board goes to sleep board.setAllPeripheralsPower(false);