Archived
1
0

Adding relay output test program.

This commit is contained in:
Shaun Setlock
2021-10-17 20:55:25 -04:00
parent 54ec983e05
commit 30251525a5
2 changed files with 31 additions and 1 deletions

30
relay/relay.py Normal file
View File

@@ -0,0 +1,30 @@
#! env/bin/python3
import RPi.GPIO as GPIO
import time
if __name__ == "__main__":
# Setup for Hardware
RELAY1_PIN = 26
RELAY2_PIN = 20
RELAY3_PIN = 21
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
# Setup the output pin; initialize OFF.
GPIO.setup(RELAY1_PIN, GPIO.OUT)
GPIO.output(RELAY1_PIN, False)
# Short toggle.
i = 0
try:
time.sleep(1.0)
GPIO.output(RELAY1_PIN, True)
time.sleep(2.0)
GPIO.output(RELAY1_PIN, False)
time.sleep(1.0)
finally:
GPIO.cleanup()