From 91505d55dabfc4137dd32582830f5d2f13a59aae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Balzarotti?= Date: Sat, 25 Feb 2023 11:35:51 +0100 Subject: [PATCH] add freezer actuator to pin 14 --- actuators.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/actuators.py b/actuators.py index cd18f09..57b3071 100644 --- a/actuators.py +++ b/actuators.py @@ -101,4 +101,6 @@ actuators = { wattage=25), 'heater2': PIN(pin=17, initial=GPIO.HIGH, onstate=GPIO.LOW, offstate=GPIO.HIGH, wattage=2000), + 'freezer': PIN(pin=14, initial=GPIO.HIGH, onstate=GPIO.LOW, offstate=GPIO.HIGH, + wattage=165), }