import machine
import time
uart1 = machine.UART(1, tx=1, rx=3, baudrate=115200)
uart1.write(str('hello world!'))
time.sleep(1)import machine
import time
uart1 = machine.UART(1, tx=1, rx=3, baudrate=115200)
uart1.write(str('hello world!'))
time.sleep(1)