From 9c32bb4c4c8e085290adc020bf265cc4605c979e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Balzarotti?= Date: Tue, 21 Feb 2023 19:24:34 +0100 Subject: [PATCH] update humidifier with correct wattage --- actuators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actuators.py b/actuators.py index 2c2bf46..8f0a683 100644 --- a/actuators.py +++ b/actuators.py @@ -98,5 +98,5 @@ actuators = { 'fan': PIN(pin=27, initial=GPIO.HIGH, onstate=GPIO.LOW, offstate=GPIO.HIGH, wattage=12*0.4), 'humidifier': PIN(pin=17, initial=GPIO.HIGH, onstate=GPIO.LOW, offstate=GPIO.HIGH, - wattage=30), + wattage=25), }