02-11-2018 04:11 PM
I feel pretty stupid for asking this question but I'm fed up with this sprinkler lol...
Can someone explain to me why I cannot press the "start" boolean control?
The sequence is supposed to be: Hit the Setup button> Hit the Start Button.
However I can't press the button, it's like the program froze?
Any help is appreciated
Thanks
02-11-2018 11:45 PM
Your issue may be that you have not pressed the Setup button first. Your state machine goes from Init to Wait on Setup, where the Setup button is required to transition to the Wait on Start state.
I highly recommend that you consolidate all the event structures into a single Idle state where any button can be pressed to execute the desired operation. If Setup is required before Start you can disable the Start button during init until setup is completed.
Additionally, your Running state will only execute one since there is no value wired to the timeout input of the event structure and therefore the Zone Indicator will not update to show the state of the test.
02-14-2018 02:03 PM
Yeah it definitely would be good to get a timeout/idle case going I'll give it a shot as soon as I get the chance. Thanks for the reply!