我需要使用win32com遠程連接到兩臺儀器,但創建第二個對象時出現錯誤。代碼如下所示:python:創建2個com對象
scope1 = win32com.client.Dispatch("LeCroy.ActiveDSOCtrl.1") #creates first instance of the ActiveDSO control
scope1.MakeConnection("GPIB:5") #Connects to device via GPIB
scope2 = win32com.client.Dispatch("LeCroy.ActiveDSOCtrl.2") #creates a second instance of the ActiveDSO control
scope2.MakeConnection("IP:127.0.0.1") #Connects to the oscilloscope on local host
我在創建第二個COM對象時出現錯誤。 有沒有人知道如何完成這項工作?