From 716abaaa3a6c56b811ac8721193d7c4a2ec874ab Mon Sep 17 00:00:00 2001 From: gijsio <67470426+gijsio@users.noreply.github.com> Date: Mon, 7 Sep 2020 14:31:52 +0200 Subject: [PATCH] reworte sentence --- content/firmwareapi/pycom/machine/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/firmwareapi/pycom/machine/_index.md b/content/firmwareapi/pycom/machine/_index.md index ac32aae..dcefca9 100644 --- a/content/firmwareapi/pycom/machine/_index.md +++ b/content/firmwareapi/pycom/machine/_index.md @@ -64,7 +64,7 @@ Sets the device in to light sleep mode , where in this mode digital peripherals, ### machine.deepsleep([time_ms]) -Stops the CPU and all peripherals, including the networking interfaces (except for LTE). Execution is resumed from the main script, just like when pressing the reset button. The pin states are not held by default. You can choose to hold specific pins using [machine.pin.hold()](../machine/pin/#pinholdhold) +Stops the CPU and all peripherals, including the networking interfaces (except for LTE). Execution is resumed similar to pressing the reset button. The pin states are not held by default. You can choose to hold specific pins using [machine.pin.hold()](../machine/pin/#pinholdhold) * `time_ms` is the sleep time in milliseconds. If not given, it will sleep indefinitely unless power is removed, the reset button is pressed or another wakeup source is configured.