vote up 2 vote down star

Can someone please show me a full python sample code that uses pyserial, i have the package and am wondering how to send the AT commands and read them back!

H-e-l-p !

flag

22% accept rate
please dont use stackoverflow for questions regarding homework – theman_on_vista Mar 27 at 13:29

2 Answers

vote up 1 vote down
import serial
ser = serial.Serial(0)  # open first serial port
print ser.portstr       # check which port was really used
ser.write("hello")      # write a string
ser.close()             # close port

use http://pyserial.wiki.sourceforge.net/pySerial for more examples

link|flag
vote up 0 vote down

I have not used pyserial but based on the API documentation at http://pyserial.wiki.sourceforge.net/pySerial it seems like a very nice interface. It might be worth double-checking the specification for AT commands of the device/radio/whatever you are dealing with.

Specifically, some require some period of silence before and/or after the AT command for it to enter into command mode. I have encountered some which do not like reads of the response without some delay first.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.