RX/TX Login - Raspberry Pi Forums


hello,
tried ommunication between tx/rx make test , received following response:

code: select all

raspberrypi login : raspbian gnu/linux 8 raspberrypi ttyama0
can please explain me problem , if possible how solve :). lot

python code is:

code: select all

#!/usr/bin/pynthon import serial import time  ser=serial('/dev/ttyama0',9600)  while true:     ser.write('x')     received=ser.readline().strip()     print(received)     time.sleep(2)   

you need disable console login enabled on port default.

there option in raspi-config implement change.


raspberrypi



Comments