Python RGB Matrix games and animations https://www.xythobuz.de/ledmatrix_v2.html
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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"