You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to read device names. Below is my codes. But when using redundancy, it can find nothing.
adapters = pysoem.find_adapters()
adpt = [x.name for x in adapters]
master = pysoem.Master()
for net in adpt:
master.open(net)
if master.config_init() > 0:
for device in master.slaves:
print(f"{net} : {device.name}")
master.close()
The text was updated successfully, but these errors were encountered:
You are looking for the equivalent of the ec_init_redundant() function? So far I don't have it exposed by the PySOEM. Should not be too complicated to add this, let's see if I can do that soon.
I want to read device names. Below is my codes. But when using redundancy, it can find nothing.
The text was updated successfully, but these errors were encountered: