Jonas Berg
Jonas Berg
Hi! You typically use OPC-UA to connect to PLCs to collect information. The p-net library is a Profinet device (slave) library, and can unfortunately not do this.
Closing due to inactivity. Please reopen if necessary.
The name given in pnet_cfg_t is the device name used at first startup, or after factory reset. I think maybe we could add a callback at IP and station name...
Hi! I fully agree that the implementation in pf_cmrdr_inquiry_read_all_reg_ind() is strange, as we check against the sequence number (which will be in the hundreds when running Proneta). This results in...
Replaces #520
Updated the commit message
Hi, thanks for the input. I can make it work from Proneta with these changes: in pf_cmdev_check_ar_type() replace ``` if (ar_type == PF_ART_IOCAR_SINGLE) ``` with ``` if (ar_type == PF_ART_IOCAR_SINGLE...
Maybe you can just silence the error for that particular write: ``` try: instrument.write_register(24, NEW_TEMPERATURE, 1) except minimalmodbus.InvalidResponseError: pass ```