Python RGB Matrix games and animations https://www.xythobuz.de/ledmatrix_v2.html
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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"