Close

Setting Up For App to Raspberry Pi File Transfer

A project log for The Guitar Pedal Project: Multi-Effect Processor

A guitar multi-effect stompbox that allows musicians to create new and never-before-seen effect creations using their mobile phone.

cesimmermancesimmerman 05/18/2020 at 20:520 Comments

Follow these instructions to set up the raspberry pi to be able to receive files from the app. Almost the entire list of instructions below is thanks to a tutorial on YouTube referenced at https://www.youtube.com/watch?v=DmtJBc229Rg 

One major issue came from the git repository link, which I have fixed below.

sudo apt-get install python-dev libbluetooth-dev
sudo nano /lib/system/system/bluetooth.service
ExecStar=/usr/lib/bluetooth/blluetoothd 
ExecStart=/usr/lib/bluetooth/blluetoothd -C
bash home/patch/bin/bluetoothOn.sh
cd /home/patch/
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
git clone https://github.com/karulis/pytbluez
cd pybluez/
sudo python setup.py install
cd /home/patch
sudo nano bluetooth_adv
sudo hciconfig hci0 piscan
sudo sdptool add SP
ctrl-X
sudo chmod +x bluetooth_adv
sudo ./bluetooth_adv

Discussions