diff options
author | Martijn Koster <mak-github@greenhills.co.uk> | 2015-10-25 11:01:07 +0000 |
---|---|---|
committer | danicampora <daniel@wipy.io> | 2015-10-25 21:36:01 +0100 |
commit | 8e8aac89a5c5cd9e1510f332194d286df7e08945 (patch) | |
tree | d5197966a363ec0bbb7c9a7c13a6873e59bfdd93 | |
parent | c773053f58680ad52130d84c3c1f22ad474da942 (diff) | |
download | micropython-8e8aac89a5c5cd9e1510f332194d286df7e08945.tar.gz micropython-8e8aac89a5c5cd9e1510f332194d286df7e08945.zip |
cc3200: Update README to change pyb to machine.
-rw-r--r-- | cc3200/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc3200/README.md b/cc3200/README.md index d02e233ce9..218492554f 100644 --- a/cc3200/README.md +++ b/cc3200/README.md @@ -80,8 +80,8 @@ the file was successfully transferred, and it has been signed with a MD5 checksu Now, reset the MCU by pressing the switch on the board, or by typing: ```python -import pyb -pyb.reset() +import machine +machine.reset() ``` ### Note regarding FileZilla: |