summaryrefslogtreecommitdiff
path: root/examples/hwapi
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-03-08 14:10:02 +1100
committerDamien George <damien@micropython.org>2023-04-27 18:03:06 +1000
commitb1229efbd1509654dec6053865ab828d769e29db (patch)
treee1a65606dd1f0a8cfe2af08f9c4ff821fb575b02 /examples/hwapi
parente160fe7bc64212a3ce56f5478f208e2b4d343a8b (diff)
all: Fix spelling mistakes based on codespell check.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'examples/hwapi')
-rw-r--r--examples/hwapi/README.md2
-rw-r--r--examples/hwapi/hwconfig_pyboard.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/hwapi/README.md b/examples/hwapi/README.md
index df16b4c86..f3de752f9 100644
--- a/examples/hwapi/README.md
+++ b/examples/hwapi/README.md
@@ -5,7 +5,7 @@ which would work from a board to board, from a system to another systems.
This is inherently a hard problem, because hardware is different from one
board type to another, and even from examplar of board to another. For
example, if your app requires an external LED, one user may connect it
-to one GPIO pin, while another user may find it much more convinient to
+to one GPIO pin, while another user may find it much more convenient to
use another pin. This of course applies to relays, buzzers, sensors, etc.
With complications above in mind, it's still possible to write portable
diff --git a/examples/hwapi/hwconfig_pyboard.py b/examples/hwapi/hwconfig_pyboard.py
index a74a1ae15..cb77e9f2d 100644
--- a/examples/hwapi/hwconfig_pyboard.py
+++ b/examples/hwapi/hwconfig_pyboard.py
@@ -1,6 +1,6 @@
from machine import Pin, Signal
-# Red LED on pin LED_RED also kown as A13
+# Red LED on pin LED_RED also known as A13
LED = Signal("LED_RED", Pin.OUT)
# Green LED on pin LED_GREEN also known as A14