I'm trying to control my Beckhoff device by means of Python Pyads wrapper.
If TwinCAT is in Config mode on my target device, is it possible to start it with a Python command?
I'm trying to control my Beckhoff device by means of Python Pyads wrapper.
If TwinCAT is in Config mode on my target device, is it possible to start it with a Python command?
This should be possible using the method write_control
in the connection class. And sending the device state ADSSTATE_RUN
.
The example in C is here: https://infosys.beckhoff.com/content/1033/tc3_adsdll2/124821771.html?id=4386625485690101318
But this should translate to pyads as it's just a wrapper around the C DLL.
I don't think this is possible from pyads. It is possible to do it with the TwinCAT automation interface. See example code from InfoSys:
Then you could use PythonNET to call this program from Python.