
jthyge
MrPLC Member-
Content count
8 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout jthyge
-
Rank
Newbie
Profile Information
- Country Denmark
-
jthyge liked a post in a topic: Emulate 5069-L310ERS2
-
jthyge liked a post in a topic: 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??
-
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
-
Ok, thanks for your reply. I will work out at tag structure for my data
-
jthyge liked a post in a topic: Data Block in Studio 5000
-
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?
-
Hi Is it not possible to use the datatype struct in Stuido 5000, when making a UDT? Best regards Jesper
-
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
-
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...
-
jthyge started following 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.... ??