Thanks again medelec35.
But this confuses me more and more.
I've used combined variables often in Flowcode, but these days all my attempts fail.
Later in the chart I want to check if a temperature is the same as the previous value AND if a counter (byte) isn't larger then a certain value.
But again, this must be my lack of intelligence, but this doesn't work either.
Is it because I combine a float (temp/tempold) with a byte variable (counter)?
Code: Select all
((Temp != TempOld) && (counter != 2))
So this should read: If NOT Temp is the same as TempOld AND counter is not 2.. then...
The way I read it, the first part, if that is true (so they are not the same) this part is true
AND this with the second part: if counter is not 2, then this is also true.
So this should be inverse to this (in my case couter is reset to 0 everytime):
Code: Select all
((Temp == TempOld) && (counter > 2))
I think I must write it all down somewhat more, I'm getting old
