Aurelien_TT

MrPLC Member
  • Content count

    2
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Aurelien_TT

  • Rank
    Hi, I am New!

Profile Information

  • Country Switzerland
  1. Twincat PLC - how declare variable

    Yes you have to declare every Input one-by-one, but you will also have to linked manually every variable with every IOs one-by-one. (Maybe you can use array for your IOs but it will be a little bit more complicated) Here is a very useful guide, you can have a look at the last chapter of this tutorial https://www.contactandcoil.com/twincat-3-tutorial/quick-start/
  2. Twincat PLC - how declare variable

    Hi ! Hope you've already found a solution, if not, or if somebody as the same question, in TwinCAT you have to declare a input or output like that:   temp0 AT %I*: INT; myOutput AT %Q*: BOOL; And once you've build your solution you will be able to link those virtual IOs with your reel IOs in the "IO" module of TwinCAT