Raspberry Pi - Serial UART Communication
What will be the output of this Python code on Raspberry Pi communicating with Arduino over UART?
import serial
ser = serial.Serial('/dev/ttyS0', 9600, timeout=1)
ser.write(b'Hello Arduino')
response = ser.readline().decode().strip()
print(response)