Edit debug message

This commit is contained in:
2019-01-02 21:25:07 +08:00
parent 4d15df1add
commit 3ee1f2e6b2

4
app.py
View File

@ -8,11 +8,11 @@ def main():
time.sleep(0.1)
GPIO.output(pin, GPIO.LOW)
print("Unlocking...")
print("[Door] Unlocking...")
time.sleep(0.4)
GPIO.output(pin, GPIO.HIGH)
print("Unlocked!")
print("[Door] Unlocked!")
time.sleep(0.4)
GPIO.cleanup(pin)