I am trying to send serial message from one nodemcu to two arduino boards. However, i am able to use only one uart pin of nodemcu which is TX pin. I can send message without any problem. But how can i send serial message from another uart. Node mcu documentation shows that it have two uart pins which are TX and GPIO15. Can someone share the syntax or example to use GPIO15. I have attached the program that i used to send message from TX pin but no idea for GPIO15.
import machine
from machine import UART
uart = UART(0) #For TX pin
uart.write("Hello \n")