Raspberry Pi - Serial UART Communication
Given this Python code on Raspberry Pi:
import serial
ser = serial.Serial('/dev/serial0', 115200)
ser.write(b'Ping')
response = ser.readline()
print(response.decode().strip())
If Arduino replies with 'Pong\n', what is printed?
