Python RGB Matrix games and animations https://www.xythobuz.de/ledmatrix_v2.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pi.sh 491B

123456789101112131415161718192021222324
  1. #!/bin/sh
  2. echo "Stopping running script"
  3. ssh rpi-rgb-matrix "sudo systemctl disable --now led"
  4. echo
  5. echo
  6. echo "Syncing code"
  7. rsync -avh -e ssh ./*.py rpi-rgb-matrix:~/rgb-matrix-visualizer
  8. echo
  9. echo
  10. echo "Syncing images"
  11. rsync -avh -e ssh ./images/* rpi-rgb-matrix:~/rgb-matrix-visualizer/images
  12. echo
  13. echo
  14. echo "Syncing fonts"
  15. rsync -avh -e ssh ./fonts/* rpi-rgb-matrix:~/rgb-matrix-visualizer/fonts
  16. echo
  17. echo
  18. echo "Starting script"
  19. ssh rpi-rgb-matrix "sudo systemctl enable --now led"