commit 8ff5e1a1fc403cb29f08125c398c2e9591e534f7 Author: polyfloyd Date: Sun Nov 12 22:00:46 2017 +0100 Initial vommit diff --git a/README.md b/README.md new file mode 100644 index 0000000..bc1279b --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +ledcat webinterface +=================== + +1. Stick your executables in `programs`. +2. Point ledcat to `$FIFO`. +3. Fire up PHP. +4. ???? +5. PROFIT diff --git a/index.php b/index.php new file mode 100644 index 0000000..70dfbf6 --- /dev/null +++ b/index.php @@ -0,0 +1,65 @@ + $FIFO & echo $!"); + file_put_contents($PIDFILE, $pid); + + echo "Started $program"; +} +?> + +
+$program
\n"; + } +?> + +
diff --git a/programs/blue.py b/programs/blue.py new file mode 100755 index 0000000..edf95cc --- /dev/null +++ b/programs/blue.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import sys + +while True: + sys.stdout.buffer.write(b"\x00\x00\xff") diff --git a/programs/red.py b/programs/red.py new file mode 100755 index 0000000..5ef4610 --- /dev/null +++ b/programs/red.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python3 + +import sys + +while True: + sys.stdout.buffer.write(b"\xff\x00\x00")