-
I'm trying to figure out how to read IO link parameter data using The IO-Link master is a TBEN-S2-4IOL and my device is the TBIL-M1-16DXP. The parameter I'm interested in is 64 "Parameter ID" (page 13 in the TBIL manual). On page 83 in the TBEN manual, it has an example on how to get similar data. I've tried quite a few different combinations, but I always get "Service not supported". This is what I think should be correct:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I have no experience with IO-Link nor these devices, but I'll try my best to give you some tips. I would start by removing the |
Beta Was this translation helpful? Give feedback.
I have no experience with IO-Link nor these devices, but I'll try my best to give you some tips. I would start by removing the
unconnected_send
androute_path
arguments, since you're connecting to this device directly there is nothing to route so those shouldn't be needed. Settingconnected
to False is also probably what you want. I would also make sure you're on the latest version, there was a bug that was adding to the CIP route in the CIPDriver when it should only happen in the LogixDriver. Theservice
,class
,instance
, andattribute
args all look correct, but therequest_data
you only have 1-byte and the example shows 3: Index (LSB), Index (MSB), Sub Index. I think your Index (0x40
) n…