123456789101112131415161718 |
- #!/bin/bash
- source ~/BallonSonde/variables.sh
- source ~/BallonSonde/functions.sh
- touch /ramfs/.canbetx
- cp /home/pi/BallonSonde/sound/mire.wav /ramfs/totx.wav
- # Old version stylez
- # Setup the GPIO4 as output for Tx
- ptt_on
- sleep 1
- echo " => Playing WAV file"
- #cd ~/trxamadrmv3_7/linux
- #./txwfal 0
- aplay /home/pi/BallonSonde/sound/mire.wav
- ptt_off
|