Chad my "Electric Blanket" cycle is a special super delicate cycle for washing my electric blanket. At night in the winter I love having the bedroom freezing and the electric blanket on high. Years ago I could wash and wash and wash electric blankets with no problem, but the blankets manufactured over the last 15 years or so have been of such poor quality that if I don't wash it extremely gently after one or two washings it's dead. Then I hang it over stairwell railing to dry <br
If you want to read the program code for the Electric Blanket cycle here it is, this way you can see exactly what the washer does for this cycle <br
The cycle creation section of the program is pretty easy to read, in between the parenthesis are the parameters that get passed to the washer (Function Name, Operation Name, Time to run in seconds, Components Energized). The time to run are estimated for the Fills. Each line in blue is a step for the washer to perform in that order <br
Motor=agitation, DivJet=Jet Circle Fill, DivDet=Detergent Dispenser, Solenoid=Spin Solenoid, DPump= Drain Pump, RPump=Recirculation Pump, Hot-Warm and Cold are obvious <br
Public Sub ButtonElectricBlanket_Click(
SuperUnimatic.Caption = "Super Unimatic - Cycle Selected: Electric Blanket"
Call CreateCycle<font color=Blue>("Wait", "Gently Engage Spin Solenoid", 1, Solenoid
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Rotate Wash Tub", 5, Motor + Solenoid
<font color=green>Call CreateCycle<font color=Blue>("Fill", "1 Gallon Fill", 60, Warm + Solenoid + DivJet
<font color=green>Call CreateCycle<font color=Blue>("Fill", "2 Gallon Fill", 90, Warm + Solenoid + DivDet
<font color=green>Call CreateCycle<font color=Blue>("Pre-Wash Gain Speed", "Gain Speed", 35, Motor + Solenoid + RPump
<font color=green>Call CreateCycle<font color=Blue>("Pre-Wash", "Concentrated Spray", 60, Solenoid + RPump
<font color=green>Call CreateCycle<font color=Blue>("Fill", "Clear Window", 5, Solenoid + Warm + DivCab
<font color=green>Call CreateCycle<font color=Blue>("Fill", "Charge Tub", 30, RPump
<font color=green>Call CreateCycle<font color=Blue>("Metered Fill", "Warm Fill", 120, RPump + Warm + DivDet
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Wash", 30, Motor + RPump
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Soak", 120, RPump
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Wash", 15, Motor + RPump
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Soak", 120, RPump
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Wash", 15, Motor + RPump
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Soak", 120, RPump
<font color=green>Call CreateCycle<font color=Blue>("Wash", "Wash", 15, Motor + RPump
<font color=green>Call CreateCycle<font color=Blue>("Pause", "Pause", 1, 0
<font color=green>Call CreateCycle<font color=Blue>("Wait", "Gently Engage Spin Solenoid", 1, Solenoid + DPump
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Wash Water Spin Off", 42, Motor + Solenoid + DPump
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Spray Rinse", 30, Motor + Solenoid + Cold + DPump + DivJet
<font color=green>Call CreateCycle<font color=Blue>("Fill", "Rinse Fill", 230, Cold + Warm + DPump + DivJet
<font color=green>Call CreateCycle<font color=Blue>("Rinse", "Overflow Rinse", 30, Motor + Cold + DPump + DivJet
<font color=green>Call CreateCycle<font color=Blue>("Pause", "Pause", 1, 0
<font color=green>Call CreateCycle<font color=Blue>("Wait", "Gently Engage Spin Solenoid", 1, Solenoid
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Rinse Water Spin Off", 35, Motor + Solenoid
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Seven Second Spray Rinse", 7, Motor + Solenoid + Cold + DPump + DivJet
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Spin", 7, Motor + Solenoid
<font color=green>Call CreateCycle<font color=Blue>("Spin", "Seven Second Spray Rinse", 7, Motor + Solenoid + Cold + DPump + DivJet
<font color=green>Call CreateCycle<font color=Blue>("Imperial Rapidry", "Dry", 60, Motor + Solenoid
<font color=green>Call CreateCycle<font color=Blue>("Drain", "Remove Ballast Water", 75, DPump
<font color=black>End Su <br
Estimated Total Cycle Time: 21 minutes, 33 seconds.