Hi everyone, i,m a noob and have just built a internet radio with touchscreen following the tutorial on adafruit. Everything works fine but need to know how I can get this to start up on boot up.
The way I have tried is to create a folder called bin which is stored in the pi section. I have then inputted a start up script as follows:-
#!/bin/bash
# Script to start our application
echo "Doing autorun script..."
sudo /home/pi/pi-radio python radioplayer.py &
Then I test it with the command /home/pi/bin/script_auto_run, but all I get is command not found or file doesn`t exist.
Can anyone point me in the right direction please