-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_arribada_tools_v2_101.sh
112 lines (90 loc) · 3.02 KB
/
install_arribada_tools_v2_101.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Install Arribada Tools v1.0.1 compatible with STM32-based Arribada Horizon tags.
echo "###############################"
echo "###############################"
echo "##### Setting Up Horizon #####"
echo "##### Version 2 Hardware #####"
echo "###############################"
echo "###############################"
cd ~
# system up to date
echo ""
echo "###############################"
echo "##### Update System #####"
echo "###############################"
sudo apt update
sudo apt upgrade
# install required software
echo ""
echo "###############################"
echo "##### Install Core Software ###"
echo "###############################"
sudo apt install git python-pip unzip openssh-server python2.7 python-setuptools build-essential libgtk2.0-dev
# allow ssh access
echo ""
echo "###############################"
echo "##### Enable SSH Access #####"
echo "###############################"
sudo systemctl enable ssh
# arribada tools
echo ""
echo "###############################"
echo "##### Install Hardware Tools ##"
echo "###############################"
curl -L -o 1.0.1.zip "https://github.com/arribada/horizon-v2-tools/archive/1.0.1.zip"
unzip -o 1.0.1.zip
cd horizon-v2-tools-1.0.1
sudo python setup.py install
# Install SCUTE framework
echo ""
echo "###############################"
echo "##### Install SCUTE #####"
echo "###############################"
pip install git+https://github.com/octophin/scute
# Install Horizon Tags project
echo ""
echo "###############################"
echo "##### Install Horizon ####"
echo "###############################"
cd ~
curl -L -o gui_install.zip "https://github.com/arribada/horizon-gui/archive/0.2.3.zip"
unzip -o gui_install.zip
cd horizon-gui-0.2.3
# accesspoint
echo ""
echo "###############################"
echo "##### Setup Access point #####"
echo "###############################"
sudo snap install wifi-ap
# disable cloud-init - not needed and causes errors.
sudo touch /etc/cloud/cloud-init.disabled
echo ""
echo "###############################"
echo "##### Set WIFI network #####"
echo "###############################"
sudo wifi-ap.config set wifi.ssid=Horizon
sudo wifi-ap.config set wifi.security=wpa2 wifi.security-passphrase=arribada
sudo wifi-ap.config set wifi.address=10.0.60.1
echo "###############################"
echo "##### ifconfig #####"
echo "###############################"
ifconfig
echo ""
echo "###############################"
echo "###############################"
echo " _____ ____"
echo " / \ | o |"
echo " | |/ ___\| "
echo " |_________/ "
echo " |_|_| |_|_|"
echo "###############################"
echo "###############################"
echo "Successfully Installed."
#echo "Disconnect the Ethernet cable. Rebooting in 10 seconds."
#sleep 10 ; reboot
echo "Development Mode - No Reboot."
echo "###############################"
echo "##### TEMP: Starting Python app"
echo "##### ctrl-C to exit."
echo "###############################"
cd ~/horizon-gui-0.2.3/webserver
sudo python horizon_gui.py