derickloo

MrPLC Member
  • Content count

    4
  • Joined

  • Last visited

Community Reputation

0 Neutral

About derickloo

  • Rank
    Hi, I am New!

Profile Information

  • Country Malaysia
  1. I face an issue with Beckhoff CX5020 controller. The controller attached with EL3403. I load the plc code into the controller and use my C# program to read the value. It's work fine but when I restart the CX5020, my C# program can't read any value and complain the symbol not found. I need to re-run the plc code by login -> Run then my C# program can get the value. Every time restart the controller, I need to re-run the PLC code. I have create a boot project and set it run mode but it's still the same. Any one have an idea what setting I have miss out? Please guide me, thanks
  2. I have Twincat 2 PLC program in the controller and it work fine. Now I update my plc program and need to load it into the controller, in Twincat PLC control system; I click Login and it show me Runtime system already in use? What is this error? Please help
  3. Twincat PLC - how declare variable

    Means I no need declare one by one, just declare temp0 AT %I*: INT, then during linked time, all my IOs can link to same variable?
  4. Twincat PLC - how declare variable

    I'm new in PLC programming.  I have a small project which have 15 temperature sensor.  How I should declare the variable for this 15 sensor.   I try code below temp0 AT %IW10: INT;     temp1 AT %IW12:INT; I also have 15 controller which use to control the temperature.  How I should declare this 15 controller also?