summaryrefslogtreecommitdiff
path: root/tests/circuitpython-manual/busio/uart_echo.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/circuitpython-manual/busio/uart_echo.py')
-rw-r--r--tests/circuitpython-manual/busio/uart_echo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/circuitpython-manual/busio/uart_echo.py b/tests/circuitpython-manual/busio/uart_echo.py
index f55d4db9e..d429c7781 100644
--- a/tests/circuitpython-manual/busio/uart_echo.py
+++ b/tests/circuitpython-manual/busio/uart_echo.py
@@ -9,10 +9,10 @@ u = busio.UART(tx=board.TX, rx=board.RX)
while True:
u.write(str(i).encode("utf-8"))
time.sleep(0.1)
- print(i, u.in_waiting) # should be the number of digits
+ print(i, u.in_waiting) # should be the number of digits
time.sleep(0.1)
- print(i, u.in_waiting) # should be the number of digits
+ print(i, u.in_waiting) # should be the number of digits
r = u.read(64 + 10)
- print(i, u.in_waiting) # should be 0
+ print(i, u.in_waiting) # should be 0
print(len(r), r)
i += 1