Personal Data

Username:
akkinomo
Joined:
2022-02-18 10:12:27

Projects

  • No projects to display.

User Activity

  • Posted a comment on discussion Codesys V2.3 🇬🇧 on CODESYS Forge

    Dear Users, I am in dilemma, I have a bitmap image of a gauge on which I need to impart needle movement and unable to get the exact movement. Can anyone help me with this task?

  • Posted a comment on discussion Engineering 🇬🇧 on CODESYS Forge

    Please check the below is my code and I'm able to operate one cycle of up down counter but cannot operate continuously. Any suggestions? Declaration: PROGRAM PLC_PRG VAR T1:TON; C1:CTUD; SRT:BOOL; B: BOOL; A: BOOL; COUNT: INT; STP: BOOL; PRESET: INT; END_VAR Code: T1(IN:= SRT AND NOT T1.Q, PT:=T#1s); COUNT :=0; PRESET :=10; WHILE COUNT<PRESET DO C1(CU:= T1.Q AND NOT B, PV:=21); IF C1.QU = TRUE THEN B:=TRUE; A:=TRUE; END_IF; C1(CD:=T1.Q AND A); IF C1.CV = 0 THEN A:=FALSE; END_IF; COUNT := COUNT +1;...

View All