Hi,
I’m working with a raspberry pi2 and with a xbee pro S3B, and I need to achieve the communication of two xbee connected to two raspberrys, initially I’m only reading data from one of the xbee, using serial port and the following code:
import serial
ser= serial.Serial(‘/dev/ttyUSB0’, 9600)
print ‘Conectando puerto serial’
while True:
incoming = ser.readline().strip()
print ‘Recibo: %s’ % incoming
I already included the Serial and Xbee-Python libraries in the terminal, but when I run this algorithm, it doesn’t show me anything in the terminal, I did the same test with an xbee S2B and i can do the communication.
I would like to know if it is necessary to configure something else or if this communication can’t be done.
ASAP
Thanks