ADPerformances

MrPLC Member
  • Content count

    1
  • Joined

  • Last visited

Community Reputation

1 Neutral

About ADPerformances

  • Rank
    Hi, I am New!

Profile Information

  • Country France
  1. Convert time

    Hello, you can create a function (ST language) in Sysmac with this name => INT_TO_TIME   code : // Input is an INT and return in TIME           NanoSecToTime(In:=INT_TO_LINT(In:= Input) * LINT#1000000);   After you can use an INT on a TON : // TON_Test : TON;          Start_Test : BOOL;          iValue_Test : INT;           TON_Test (IN := Start_Test,     PT := INT_TO_TIME(iValue_Test));   David