What about putting If Time > 00:00 Then HET OFF instead ? And then follow it with
If Temp < 78.0 Then HET ON
If Temp > 78.5 Then HET OFF
This way I don't think the heater would stay off forever since it is follow by another conditions.
Couple of points..
1) All commands in the Aquacontroller are evaulated top down. At the end of your code, whatever state the device is in, that is what command will be sent (meaning, on or off).
2) The only thing the if Time > is doing for you above is to keep the state from ever being Unknown, which would only happen if the temp was between 78.0 and 78.5 and had never been above or below those values.