diff options
Diffstat (limited to 'examples/hwapi/README.md')
-rw-r--r-- | examples/hwapi/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/hwapi/README.md b/examples/hwapi/README.md index f3de752f9c..a1b0c5642a 100644 --- a/examples/hwapi/README.md +++ b/examples/hwapi/README.md @@ -40,13 +40,13 @@ application of this idea would look like: `app.py`: from hwconfig import * - import utime + import time while True: LED.value(1) - utime.sleep_ms(500) + time.sleep_ms(500) LED.value(0) - utime.sleep_ms(500) + time.sleep_ms(500) To deploy this application to a particular board, a user will need: |