jthyge

MrPLC Member
  • Content count

    10
  • Joined

  • Last visited

Community Reputation

1 Neutral

About jthyge

  • Rank
    Sparky

Profile Information

  • Country Denmark
  1. Hi  The output now works, i found that forcing did not work. Properly because i did not enable i/o forcing as BobLfoot is suggesting.  Did not konw that was nessesary, could just see that the forcemask was true and the processor had a force status.  So is set the output high in the program and then it worked.  Next time I will know to enable i/o forcing... 
  2. Hi, I have a 1734-OB8E module on a POINT I/O system. In the hardware configuration, everything looks fine. However, I am not able to energize any outputs on the card. What could be wrong? Working in Logix5000.
  3. Emulate 5069-L310ERS2

    Thanks for your reply.  I now downloaded v34 and I am now able to emulate a version 32.  But when I have a project with a 5069-L310ERS2 CPU, how do I emulate it when the emulated processor is a EmuLogix5068??
  4. Hi  I am working on a project in Studio 5000 with 5069-L310ERS2 controller.  How can i simulate the program with RSLogix Emulate 5000?  and When i try to add a new module in RSLogix Emulate 5000 it is only possible to choose version 20. When working in Studio 5000 v32 should I not be able to choose version 32?  Thanks  
  5. Ok, thanks for your reply.  I will work out at tag structure for my data  
  6. Hi  I normal work in Siemens TIA, where i can use DB´s to store data.  How can i do somthing like this i Studio 5000?      
  7. Hi  Is it not possible to use the datatype struct in Stuido 5000, when making a UDT?  Best regards  Jesper   
  8. SCL Code not working.

    OK Apparently the timers in TwinCat and Siemens work different.  In Siemens the timers run in a DB. So if the timer resets itself, the FB code will not catch the output on a scan.  So if I use the TimerOneShot.Q to reset til timer i will work fine. Best regards Jesper  
  9. SCL Code not working.

    Hi collinds70 Thanks for your reply.  Maybe i did not explain the problem correct.  The code is working fine, but the function is not working. Maybe the Timer or R_Trig works differently in TIA than TwinCat? When I test the timer it works, when I test the oneshot i works fine. But they do not work i combination.    I want the "Test" to increase by 1, every 2 second.  It is a bit frustrating that I can not get simple things like this to work i TIA, when it is no problem i TwinCat...
  10. SCL Code not working.

    Hello,  I am new to SCL programming in TIA Portal.  I have some experience in TwinCat3, but i have  difficulties getting som simpelt code to work in TIA.  This code works fine in TwinCat, but i does not work in TIA.  "Timer".TOF(IN:=NOT "Timer".Q, PT:=T#2s);  "TimerOneShot"(CLK := "Timer".Q); IF "TimerOneShot".Q THEN     "Test" := "Test" + 1; END_IF; Can anyone help me in the right track.... ??