summaryrefslogtreecommitdiff
path: root/examples/hwapi/README.md
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-08-19 22:58:37 +1000
committerJim Mussared <jim.mussared@gmail.com>2023-06-08 17:54:24 +1000
commit5fd042e7d1610b4d42acfc523441468f2ac28c6f (patch)
tree87903a5cec5409b89f38fa7d0809d80ca7b127d5 /examples/hwapi/README.md
parent9d7eac07138b6e02f4c0775dc70f36fdd69432a2 (diff)
all: Replace all uses of umodule in Python code.
Applies to drivers/examples/extmod/port-modules/tools. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'examples/hwapi/README.md')
-rw-r--r--examples/hwapi/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/hwapi/README.md b/examples/hwapi/README.md
index f3de752f9..a1b0c5642 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: