Added a very simple script that just works.

This commit is contained in:
YuruC3 2025-06-10 22:59:21 +02:00
parent 18427298bc
commit 69cce7be3e
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,2 @@
# Run every minute
* * * * /location/to/bash/simple.sh

View File

@ -0,0 +1,9 @@
#!/bin/bash
for i in {1..59}
do
stty -F /dev/ttyUSB0 speed 38400 cs8 -ixon raw
echo -ne "_shutup 24\n\r" > /dev/ttyUSB0
sleep 1
done
exit