forked from KarlFranke/akrobat_imu
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
22 lines (16 loc) · 816 Bytes
/
install.sh
File metadata and controls
22 lines (16 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
echo "##############################################"
echo "Installing Bricks V2 IMU drivers..."
echo "##############################################"
# bricks viewer (launch via brickv) to get the UID of each unit
sudo apt-get install python python-qt4 python-qt4-gl python-opengl python-serial
sudo wget http://download.tinkerforge.com/tools/brickv/linux/brickv_linux_latest.deb
sudo dpkg -i brickv_linux_latest.deb
# get the bricks daemon
sudo wget http://download.tinkerforge.com/tools/brickd/linux/brickd_linux_latest_amd64.deb
sudo dpkg -i brickd_linux_latest_amd64.deb
# start bricks daemon
sudo systemctl start brickd-resume.service
echo "##############################################"
echo "Finished installing Bricks V2 IMU drivers"
echo "##############################################"