Jake Zimmer

Results 2 issues of Jake Zimmer

Hi, I have a system in which all slaves are initially powered down and would like the system to wait until they are all powered up before proceeding. Is there...

Hello, I'm trying to read the object dictionary of a slave. ```python master = pysoem.Master() master.open(adapter) if master.config_init() > 0: for slave in master.slaves: print(slave.name) print(slave.state) print(slave.sdo_read(0x1008, 0).decode('utf-8')) print(slave.od) else:...