From 9877cbff812051b4fd2cb2af63604ab3d04974a1 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Sat, 31 May 2025 18:05:46 -0500 Subject: [PATCH] web ui command updates --- web_interface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_interface.py b/web_interface.py index 21dfb38d..027f7557 100644 --- a/web_interface.py +++ b/web_interface.py @@ -335,8 +335,8 @@ def run_action_route(): explanation_msg = "" if action == 'start_display': - command = "bash start_display.sh" - explanation_msg = "Starts the LED matrix display by executing the start_display.sh script." + command = "sudo python display_controller.py" + explanation_msg = "Starts the LED matrix display by directly running display_controller.py with sudo." elif action == 'stop_display': command = "bash stop_display.sh" explanation_msg = "Stops the LED matrix display by executing the stop_display.sh script."