diff --git a/test.py b/test.py index e517c30..6b614b5 100644 --- a/test.py +++ b/test.py @@ -7,4 +7,9 @@ pins = [8,10,12,16,18,22,24,26] for pin in pins: print(pin) relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False) - relay.on() \ No newline at end of file + relay.on() + +for pin in pins: + print(pin) + relay = gpiozero.OutputDevice(pin, active_high=False, initial_value=False) + relay.off() \ No newline at end of file