10-24-2017 08:43 AM
Hi,
I want to leave an Action step when I reach a particular temperature.
I set the temperature in this Action Step to 35 °C.
As well I want to read the temperature of the climatic chamber (before this Action step I gave the "reading temperature" to a variable).
First I want to what as Long as the reading temperature is 35 degrees or lower.
How can I realise that? Pre-Expression? Post-Expression? Status Expression? Post Action?
Kind Regards,
Andi
10-24-2017 09:09 AM
I would think that looping would be your best option here. If you are not limited to a single step it might be wise to use the flow control while loop step.
In your Loop While Expression just set something like this: Locals.CurrentTemp <= 35
Hope this helps,
10-25-2017 01:35 AM
very good, thanks a lot!