Quote:
Originally Posted by Tyguy56
Code:
import serial
ser = serial.Serial(
port='/dev/ttyS0',
baudrate = 115200,
parity=serial.PARITY_NONE
stopbits=serial.STOPBITS_ONE,
bytesize=serial.EIGHTBITS
)
if(ser.isOpen()):
ser.close()
ser.open()
ser.write('hello'.encode('utf-8'))
|
Uhm your first post said 9600 baud.
Are you using 115200 to the Arduino but only 9600 between the Arduino and the Tegra?