@@ -0,0 +1,16 @@
import machine
import utime
uart = machine.UART(1)
uart.write("hello") # Send "hello" over UART
utime.sleep(0.5)
while True:
if uart.any():
line = uart.readline()
print(line)
The note is not visible to the blocked user.