10 hours ago10 hr Please I need help with this programming.....long time user, getting old and have no clue!Tank level sensor closes contact – Insteon 2450 IO (which 2450 mode?)Then wait 10 minutesTurn on fill pump (Insteon- micro on, with power relay)Keep pump running until tank level sensor open contact – Insteon 2450 IOTurn off fill pump (Insteon- micro off, with power relay) Thank you for your helpKarl
8 hours ago8 hr If sensor is off/on (whichever means not full) Wait 10 minutes Set micro relay on that turns on pumpElse Set micro relay off that controls pump
8 hours ago8 hr Will be easier with 3 programs IMOProgram 1: FillIf FillPumpSensor switches onThen Wait 10 minutes Set FillPump OnProgram 2: StopIf FillPumpSensor switches offThen Set FillPump OffProgram 3: Deadman switchIf FillPumpSensor is on (NOT switched)Then Wait XX Minutes. (You decide, see note below) Set FillPump OffProgram 3 is in case the messaging to/from the iolinc is missed, it can happen. Pick a number of total minutes you think a cycle should be, maybe add 1 minute to it and assign that to XX. The first program use If Switched and the last uses If status
7 hours ago7 hr When your program has a Wait statement, make sure it's triggered by a static condition, like a status change. Looking for control events ("is switched on") won't work because it doesn't remain true other than the first time it's detected.One effect is that if the detector turns off before the 10 minutes is up, then the pump won't turn on at all, which is what you might be wanting here.
2 hours ago2 hr 7 hours ago, kvolger said:Please I need help with this programmingIt might help to describe what it is you are trying to do, under what conditions cause the tank sensor to open and close, and what it is that the program is, or is not, doing that you expect it to do. It is also helpful to see the exact program rather than a paraphrase. Control (switched on) versus status conditions behave differently and can affect how programs work and it seems unclear to me which type of conditions you have in your program.Having said all that, I suspect Guy Lavoie has identified the most likely problem, short of a communication problem between devices. Edited 2 hours ago2 hr by oberkc
Create an account or sign in to comment