From 1bec94cb85f8340ded0ef9b31e62e5206ca99708 Mon Sep 17 00:00:00 2001 From: Nathan Gill Date: Sat, 29 Mar 2025 14:38:17 +0000 Subject: [PATCH] Updated start pin GPIO to make the button work. --- shepherd/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shepherd/__init__.py b/shepherd/__init__.py index fcd0d79..6784fe6 100644 --- a/shepherd/__init__.py +++ b/shepherd/__init__.py @@ -15,7 +15,7 @@ from shepherd.blueprints import upload, run, pyls, editor, staticroutes -START_BUTTON_PIN = 5 # This is a BCM pin number (BCM0 corresponds to phys27). +START_BUTTON_PIN = 26 # GPIO 26, pin 37 syslogger = logging.getLogger() syslogger.addHandler(SysLogHandler('/dev/log'))