python - ValueError : "port" must be None or a string, 不是 <class 'int' >

标签 python python-3.x serial-port

我正在尝试向我的 USB 连接锁 Controller 发出命令。代码运行良好,直到这一行:

Connected ports: 
['COM6']
Please enter the port number that has port connected. 
 i.e. if COM3 is shown, enter 3 when ask to enter port number. 
 If the above shows [] than no connected port is found and errors will follow
Please enter the port number: 6

出现以下错误:

ValueError: "port" must be None or a string, not <class 'int'>

我收到以下错误:

Traceback (most recent call last):
  File "[...]", line 44, in <module>
    serial_connection() #executes the function defined above

  File "[...]", line 29, in serial_connection
    ser.port = COMPORT - 1 #counter for port name starts at 0

  File "[...]", line 260, in port
    raise ValueError('"port" must be None or a string, not {}'.format(type(port)))

代码如下:

#this library is required as it helps establish the serial connection
#Using  pyserial Library to establish connection
import serial #not being used because it was already called in portRead
from portRead import *

#Global Variables
ser = 0

#this will print out the port that can be used; ports that are connected. i.e. if COM3 is shown, enter 3 when ask to enter port number
#if shown [] then no usb is connected to a port and errors will follow
if __name__ == '__main__':
    print ("Connected ports: ") #print means printing information on screen
    print(serial_ports()) #function derived from portRead
    print("Please enter the port number that has port connected. \n "
          "i.e. if COM3 is shown, enter 3 when ask to enter port number. \n If the above shows [] than no connected port is found and errors will follow")

#defining the serial connection
def serial_connection():
    while True: #the while loop is used to continuously ask you to issue a new command until you decide to quit the program
        ser = serial.Serial()
        ser.baudrate = 38400 #Suggested rate in Southco documentation, both locks and program MUST be at same rate
        COMPORT = int(input("Please enter the port number: ")) #this refers to which port your usb is inserted into
        ser.port = COMPORT - 1 #counter for port name starts at 0

        print ('Port %d entered Stephan '%COMPORT)
        #timeout in seconds
        ser.timeout = 10
        ser.open()
        command = input("please type command - open1/close1, or open2/close2. \n"
                    "If already open and you try to open no action will be taken and vice-versa...: \n ")
        #call the serial_connection() function
        ser.write(("%s\r\n"%command).encode('ascii')) #Southco locks receives and sends commands in ASCII


serial_connection() #executes the function defined above

最佳答案

你必须在 ser.port 中将端口 name 指定为 string,而不仅仅是数字(我猜它可能是PRN,不仅是 COMx)。

修复建议:

COMPORT = int(input("Please enter the port number: ")) #this refers to which port your usb is inserted into
ser.port = "COM{}".format(COMPORT-1)

查看文档:https://pythonhosted.org/pyserial/shortintro.html#opening-serial-ports

关于python - ValueError : "port" must be None or a string, 不是 <class 'int' >,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40710110/

相关文章:

python - 预测另一个列表的对应列表时 y 数据应采用什么形状

python - 错误: `Loaded runtime CuDNN library: 5005 but source was compiled with 5103` mean?是什么意思

c# - 使用文本框调用 C#

java - comm.jar 通信串口java

python - 告诉消费者停止等待队列元素

python - requests.get 到 localhost 超时

python - 在 Python 中的特定网络位置打开 Windows 资源管理器

python-3.x - semaphore_tracker : There appear to be 1 leaked semaphores to clean up at shutdown len(cache))

embedded - Microchip PIC 的 Modbus 堆栈

python - django 没有反向匹配错误,但我有可选的 View 参数