diff --git a/Chilled_Drinkibot/main.py b/Chilled_Drinkibot/main.py index 917ce1c1..4a9f3546 100644 --- a/Chilled_Drinkibot/main.py +++ b/Chilled_Drinkibot/main.py @@ -18,9 +18,9 @@ pump = DigitalInOut(board.D4) # Pin to control the pump pump.direction = Direction.OUTPUT -chillTime = 5 # How many _minutes_ of cooling +chillTime = 1 # How many _minutes_ of cooling -pumpTime = 15 # How many seconds of pumping +pumpTime = 35 # How many seconds of pumping while True: # we could also just do "led.value = not button.value" ! @@ -33,7 +33,7 @@ while True: print('pressed') led.value = True # turn ON LED chiller.value = True # turn ON chiller - time.sleep(chillTime / 60) # wait chiller time (in seconds) + time.sleep(chillTime * 60) # wait chiller time (in seconds) chiller.value = False # turn OFF chiller pump.value = True # turn ON pump time.sleep(pumpTime) # wait pump time