4_tx_file 369 B

12345678910111213141516171819
  1. #!/bin/bash
  2. # Utile pour couper le TX quand on ctrl+c et que le script n'abouti pas
  3. trap ctrl_c INT
  4. function ctrl_c() {
  5. echo "Ctrl + C happened"
  6. raspi-gpio set 4 dh
  7. rm -rf /ramfs/*
  8. }
  9. # Setup the GPIO4 as output for Tx
  10. raspi-gpio set 4 op && raspi-gpio set 4 dh
  11. raspi-gpio set 4 dl
  12. sleep 1
  13. echo " => Playing WAV file"
  14. sleep 1
  15. aplay $1
  16. raspi-gpio set 4 dh