PySerial पैकेज का उपयोग करने के पूर्ण उदाहरण [बंद]


96

क्या कोई कृपया मुझे एक पूर्ण अजगर नमूना कोड दिखा सकता है जो कि पीयर्सियल का उपयोग करता है , मेरे पास पैकेज है और मैं सोच रहा हूं कि एटी कमांड कैसे भेजें और उन्हें वापस पढ़ें!

जवाबों:


88

पायथन में ब्लॉग पोस्ट सीरियल RS232 कनेक्शन

import time
import serial

# configure the serial connections (the parameters differs on the device you are connecting to)
ser = serial.Serial(
    port='/dev/ttyUSB1',
    baudrate=9600,
    parity=serial.PARITY_ODD,
    stopbits=serial.STOPBITS_TWO,
    bytesize=serial.SEVENBITS
)

ser.isOpen()

print 'Enter your commands below.\r\nInsert "exit" to leave the application.'

input=1
while 1 :
    # get keyboard input
    input = raw_input(">> ")
        # Python 3 users
        # input = input(">> ")
    if input == 'exit':
        ser.close()
        exit()
    else:
        # send the character to the device
        # (note that I happend a \r\n carriage return and line feed to the characters - this is requested by my device)
        ser.write(input + '\r\n')
        out = ''
        # let's wait one second before reading output (let's give device time to answer)
        time.sleep(1)
        while ser.inWaiting() > 0:
            out += ser.read(1)

        if out != '':
            print ">>" + out

8
serial.serialutil.SerialException: Port is already openइस कोड को चलाते समय मुझे एक त्रुटि मिली । मैं इस पर निश्चित नहीं हूं, लेकिन मेरा मानना ​​है कि सीरियल पोर्ट स्वचालित रूप से खुलता है जब इसे स्पष्ट रूप से परिभाषित किया जाता है जैसा आपने किया है ser। बाहर की टिप्पणी के बाद ser.open()यह काम किया।
14:38 पर user3817250

यह टिप्पणी उद्धारकर्ता है।
सौरभ अग्रवाल

1
@ user3817250: वैकल्पिक रूप से बस इफ-केस बनाते हैंser.open()
आर्क_लूपस

1
btw, एक ser.isopen () सभी होने से कोई मतलब नहीं है। आप यह देखने के लिए यह देखने के लिए कि यह पहले से ही खुद को खोलने की कोशिश कर रहा है, यह देखने के लिए सशर्त में आइसोपेन (आर) का उपयोग कर सकते हैं .. यदि हां, तो यह इंगित कर सकता है कि आपका कार्यक्रम पहले से ही कहीं और चल रहा है। फिर अन्य प्रक्रिया को मारने के लिए कुछ पायथन फू का उपयोग करें और फिर खुले में पुनः प्रयास करें। stackoverflow.com/questions/6178705/…
एसडीसोलर

1
हाय, महान कोड! मेरे पास एक सवाल है, अगर आप इसकी जगह अजगर 3 का इस्तेमाल करेंगे तो आप कैसे बदलेंगे?
लुइस जोस


28

http://web.archive.org/web/20131107050923/http://www.roman10.net/serial-port-communication-in-python/comment-page-1/

#!/usr/bin/python

import serial, time
#initialization and open the port

#possible timeout values:
#    1. None: wait forever, block call
#    2. 0: non-blocking mode, return immediately
#    3. x, x is bigger than 0, float allowed, timeout block call

ser = serial.Serial()
#ser.port = "/dev/ttyUSB0"
ser.port = "/dev/ttyUSB7"
#ser.port = "/dev/ttyS2"
ser.baudrate = 9600
ser.bytesize = serial.EIGHTBITS #number of bits per bytes
ser.parity = serial.PARITY_NONE #set parity check: no parity
ser.stopbits = serial.STOPBITS_ONE #number of stop bits
#ser.timeout = None          #block read
ser.timeout = 1            #non-block read
#ser.timeout = 2              #timeout block read
ser.xonxoff = False     #disable software flow control
ser.rtscts = False     #disable hardware (RTS/CTS) flow control
ser.dsrdtr = False       #disable hardware (DSR/DTR) flow control
ser.writeTimeout = 2     #timeout for write

try: 
    ser.open()
except Exception, e:
    print "error open serial port: " + str(e)
    exit()

if ser.isOpen():

    try:
        ser.flushInput() #flush input buffer, discarding all its contents
        ser.flushOutput()#flush output buffer, aborting current output 
                 #and discard all that is in buffer

        #write data
        ser.write("AT+CSQ")
        print("write data: AT+CSQ")

       time.sleep(0.5)  #give the serial port sometime to receive the data

       numOfLines = 0

       while True:
          response = ser.readline()
          print("read data: " + response)

        numOfLines = numOfLines + 1

        if (numOfLines >= 5):
            break

        ser.close()
    except Exception, e1:
        print "error communicating...: " + str(e1)

else:
    print "cannot open serial port "

2

मैंने pyserial का उपयोग नहीं किया है, लेकिन https://pyserial.readthedocs.io/en/latest/shortintro.html पर API प्रलेखन के आधार पर यह एक बहुत अच्छा इंटरफ़ेस की तरह लगता है। यह डिवाइस / रेडियो / जो भी आप के साथ काम कर रहे हैं, उसके एटी कमांड के विनिर्देशन को दोगुना करने के लायक हो सकता है।

विशेष रूप से, कुछ को कमांड मोड में प्रवेश करने के लिए एटी कमांड से पहले और / या उसके बाद मौन की कुछ अवधि की आवश्यकता होती है। मैंने कुछ का सामना किया है जो पहले कुछ देरी के बिना प्रतिक्रिया को पढ़ना पसंद नहीं करते हैं।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.