Maybe I'll explain the project. I have to cool some parts with air. There is first a TON time and then a TOF which acts as a cooling time. But if there is a problem with a part, I need to be able to cancel this cooling time and restart it.
Hi all, For a project, I would like to stop and restart a timer. TOF and TP timer from the standard library can't be stopped. Do you know if a restable timer exist in another library ? Have a nice day π
Hi, Not sure but : If you use ARRAY [1..6,1..38] OF WORD you can't use a variable to reach your table yourtable[1,1] But with ARRAY [1..6] OF ARRAY[1..38] OF WORD you can easly use a boucle FOR to search what you want in your table yourtable[1][1] OR yourtable[iIndex1][iIndex2]