Colt-H

Results 8 comments of Colt-H

State is an optional parameter in the CIP spec, does your device support it? The below code snip should get you where you need to go, make sure to update...

It's defined by CIP Volume 1 CH 5-2 under the identity object. I'm not sure about the copyright of posting from the exact CIP spec, but the short of it...

The document I have is the CIP specification from ODVA. _The CIP Networks Library Volume 1: Common Industrial Protocol_

I believe your data type needs to be set to an array. See below: ``` with CIPDriver(device_ip) as drive: param = drive.generic_message( service=service, class_code=class_code, instance=instance, attribute=attribute, data_type=INT[10], #change 10 to...

Can you post a code sample?

See #279, there has been some luck setting route_path to false and/or none.

What does your tag structure look like in the PLC? Also see #279

Specifically, the insufficient command data is telling you that the requested service didn't supply enough data for the requested operation. Are you supplying it with two bytes in request_data? `len(b'\x0f')`...