This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For our robot, so that we can edit files using VSCode on our laptop, remotely: | |
sshfs pi@whs-pi-robot:/home/pi /home/USERNAME/Documents/PiWars/sshfs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bluetoothctl | |
agent on | |
default-agent | |
pair xx:xx:xx:xx:xx:xx | |
trust xx:xx:xx:xx:xx:xx | |
quit | |
Replace xx:xx:xx:xx:xx:xx with device ID which can be discovered by typing: scan on | |
For the OUYA device we have, you should see entries for: | |
/dev/input/event0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
See: https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
sudo apt-get install -y nodejs build-essential libx11-dev | |
See: https://gist.github.com/ted-piotrowski/e5c223a6a2f6f3079cb38c959ceecaa6 | |
git clone https://github.com/Microsoft/vscode | |
cd vscode | |
./scripts/npm.sh install --arch=armhf |