Hi all, I just started playing around with PyBridge today, so please excuse my ignorance, I have the following python code which I use at work, it communicates with a Power Supply via USB connection, I am trying to get this to work using B4J and PyBridge, I have python 3.12 installed on my PC.
I have the following so far inside a function in my B4J project
I get an error at the highlighted line, I have tried several ways of running that part of the code but continue getting errors:
I know I'm doing something wrong but can't figure out what, as I mentioned the python native code works well.
Thanks all for any help provided here.
Walter
PLZ205W:
import pyvisa
import time
import csv
import os
os.add_dll_directory('C:\\Program Files\\Keysight\\IO Libraries Suite\\bin')
# Connect to PLZ205W
rm = pyvisa.ResourceManager()
plz = rm.open_resource("USB0::0x0B3E::0x1042::XF001985::0::INSTR")
# Optional: identify the device
print("Connected to:", plz.query("*IDN?").strip())
# Open a CSV file to store the log
with open("plz205w_log.csv", "w", newline="") as file:
writer = csv.writer(file)
writer.writerow(["Timestamp", "Voltage (V)", "Current (A)"]) # Header
print("Logging started... Press Ctrl+C to stop.")
try:
while True:
voltage = float(plz.query("MEAS:VOLT?"))
current = float(plz.query("MEAS:CURR?"))
timestamp = time.time()
writer.writerow([timestamp, voltage, current])
print(f"{timestamp:.2f}: {voltage:.3f} V, {current:.3f} A")
time.sleep(0.5) # Log every 0.5 seconds
except KeyboardInterrupt:
print("Logging stopped by user.")
# Close the VISA connection
plz.close()
I have the following so far inside a function in my B4J project
B4X:
Private Sub IdentifyKikusui
Dim ID As PyWrapper = Py.ImportModule("pyvisa")
Dim OS As PyWrapper = Py.ImportModule("os")
OS.RunArgs("add_dll_directory", Array($"C:\\Program Files\\Keysight\\IO Libraries Suite\\bin"$), Null)
Dim rm As PyWrapper = ID.RunArgs("ResourceManager()", Null, Null)) ''Error here
Dim plz As PyWrapper = rm.RunArgs("open_resource", Array("USB0::0x0B3E::0x1042::XF001985::0::INSTR"), Null)
End Sub
I get an error at the highlighted line, I have tried several ways of running that part of the code but continue getting errors:
(b4xmainpage._identifykikusui) - Python Error (AttributeError) - Method: module.ResourceManager(): module 'pyvisa' has no attribute 'ResourceManager()'
I know I'm doing something wrong but can't figure out what, as I mentioned the python native code works well.
Thanks all for any help provided here.
Walter