I’m in a gateway tagchange script and I’m looking to do an “if” statement with an ‘or’ and an ‘and’. How is this accomplished?
if gateFootPedal == 1 or BlowerShelfFootLH == 1 or BlowerShelfFootRH == 1 and BlowerShelfMemory < CycleTimeTarget:
I want the first three together in an ‘or’, then the last two in an ‘and’. Hope this is clear.
Thanks!