Here is more clearly commented code showing when the coils go off. I recognize you know this, so I'm wondering what you're really saying... the 4 coils close together act like one coil thermally? The turn off time for the coils is equal to the time they are on?If button = high
{
Do this
means it dose
everything that's here
you have a 1.4 second delay
guess what it does that
your coil is on for 1.4 seconds
}
Now read up on how a coil works you'll see that it is trying to move power even after you turn it off so your coil is on for the whole loop
you told it
(If button = high) do this what happens is if this was 1 the (do the loop) starts happening it doesn't check nothing till it's done.
So you can hold the button down or press once all the do stuff will happen till it get's done.

Post 203 also shows the code running and the lamp going off 4 times... It also shows me pressing and releasing the button. I understand the button status is only checked after the "if { }" code is completed. I only wanted one cycle.
I'll read up on coils and study how they shut off.

