From 3ee1f2e6b26919449f5cbdc92db65403a5aca358 Mon Sep 17 00:00:00 2001 From: Pin Lin Date: Wed, 2 Jan 2019 21:25:07 +0800 Subject: [PATCH] Edit debug message --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index d79f608..77d1535 100644 --- a/app.py +++ b/app.py @@ -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)