Initial Commit

This commit is contained in:
2026-02-13 12:22:06 -05:00
parent 43fdccf67b
commit 8fec41e3e6
612 changed files with 1313484 additions and 2 deletions

24
run_web.sh Normal file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# LED Matrix Web Interface V2 Runner
# This script runs the web interface using system Python
set -e
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
echo "Setting up LED Matrix Web Interface V2..."
# Install dependencies using system Python
echo "Installing dependencies..."
python3 -m pip install --break-system-packages -r requirements_web.txt
# Install rgbmatrix module from local source
echo "Installing rgbmatrix module..."
python3 -m pip install --break-system-packages -e rpi-rgb-led-matrix-master/bindings/python
# Run the web interface
echo "Starting web interface on http://0.0.0.0:5001"
python3 web_interface.py