| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | #!/bin/bash | 
					
						
							|  |  |  | # This script is for automating the install for both displays, | 
					
						
							|  |  |  | # The 2-colour and 3-colour one. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Copyright by Ace-Laboratory | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Getting input to see which E-Paper version is currently being used. | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | echo -e "\e[1mWhich version of the E-Paper display are you using?" | 
					
						
							|  |  |  | echo -e "\e[97mEnter \e[91m2 \e[97m if you are using the 2-Colour E-Paper" | 
					
						
							|  |  |  | echo -e "\e[97mEnter \e[91m3 \e[97m if you are using the 3-Colour E-Paper" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:54:06 +02:00
										 |  |  | echo -e "\e[97mconfirm your selection with [ENTER]" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:52:33 +02:00
										 |  |  | read -r -p 'Please type in the number now:  ' digit | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | if [ -z "$digit" ]; then | 
					
						
							|  |  |  |     echo "You didn't enter anything." | 
					
						
							|  |  |  |     echo "Aborting now." | 
					
						
							|  |  |  |     exit | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ "$digit" != 2 ] && [ "$digit" != 3 ]; then | 
					
						
							|  |  |  |     echo "invalid number, only 2 or 3 can be accepted." | 
					
						
							|  |  |  |     echo "Aborting now." | 
					
						
							|  |  |  |     exit | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:09:19 +02:00
										 |  |  | if [ "$digit" = 2 ] || [ "$digit" = 3 ]; then | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  |     echo "" | 
					
						
							|  |  |  |     echo -e "\e[1;36m"Your input was accepted"\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 23:09:50 +02:00
										 |  |  |     echo -e "\e[1;36m"The installer will finish the rest now. You can enjoy a break in the meanwhile."\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  |     echo "" | 
					
						
							| 
									
										
										
										
											2018-10-01 22:09:19 +02:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Updating and upgrading the system, without taking too much space | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | echo -e "\e[1;36m"Running apt-get update and apt-get dist-upgrade for you..."\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | echo -e "\e[1;36m"This will take a while, sometimes up to 30 mins"\e[0m" | 
					
						
							|  |  |  | sudo apt-get update > /dev/null && sudo apt-get dist-upgrade -y > /dev/null | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | echo -e "\e[1;36m"System successfully updated and upgraded!"\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  | echo "" | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Installing a few packages which are missing on Raspbian Stretch Lite | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | echo -e "\e[1;36m"Installing a few packages that are missing on Raspbian Stretch Lite..."\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | sudo apt-get install python3-pip -y | 
					
						
							|  |  |  | sudo apt-get install RPi.GPIO -y | 
					
						
							|  |  |  | sudo apt-get install python3-spidev -y | 
					
						
							|  |  |  | sudo apt-get install git -y | 
					
						
							|  |  |  | pip3 install Pillow  | 
					
						
							|  |  |  | sudo pip3 install Pillow  | 
					
						
							|  |  |  | sudo apt-get install libopenjp2-7-dev -y  | 
					
						
							|  |  |  | sudo apt install libtiff5 -y | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | } > /dev/null | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  | echo "" | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Running apt-get clean and apt-get autoremove | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | echo -e "\e[1;36m"Cleaning a bit of mess to free up some space..."\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | sudo apt-get clean > /dev/null && sudo apt-get autoremove -y > /dev/null | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  | echo "" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Using this part for the 2-colour E-Paper version | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | if [ "$digit" = 2 ]; then | 
					
						
							|  |  |  |     echo -e "\e[1;36m"Installing the 2-Colour E-Paper-Calendar Software"\e[0m" | 
					
						
							|  |  |  |     git clone https://github.com/aceisace/E-Paper-Calendar-with-iCal-sync-and-live-weather | 
					
						
							|  |  |  |     mkdir E-Paper-Master | 
					
						
							|  |  |  |     cd E-Paper-Calendar-with-iCal-sync-and-live-weather | 
					
						
							| 
									
										
										
										
											2018-10-01 22:47:13 +02:00
										 |  |  |     rm -r Calendar | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  |     mv 2-colour Calendar | 
					
						
							|  |  |  |     cp -r Calendar /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cp README.md /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cp LICENSE /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cp -r .git /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cd | 
					
						
							|  |  |  |     sudo rm -r E-Paper-Calendar-with-iCal-sync-and-live-weather | 
					
						
							| 
									
										
										
										
											2018-10-02 01:24:28 +02:00
										 |  |  |     # add a short info | 
					
						
							| 
									
										
										
										
											2018-10-02 01:03:33 +02:00
										 |  |  |     cat > /home/pi/E-Paper-Master/Info.txt << EOF | 
					
						
							| 
									
										
										
										
											2018-10-02 01:10:01 +02:00
										 |  |  | This document contains a short info of the version | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Version: 2-Colour E-Paper-version | 
					
						
							|  |  |  | Installer version: 1.2 (Early October 2018) | 
					
						
							|  |  |  | If the time was set correctly, you installed this software on: | 
					
						
							| 
									
										
										
										
											2018-10-02 01:03:33 +02:00
										 |  |  | EOF | 
					
						
							|  |  |  |     echo "$(date)" >> /home/pi/E-Paper-Master/Info.txt | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  |     echo "" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Using this part for the 3-colour E-Paper version | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | if [ "$digit" = 3 ]; then | 
					
						
							|  |  |  |     echo -e "\e[1;36m"Installing the 3-Colour E-Paper-Calendar Software"\e[0m" | 
					
						
							|  |  |  |     git clone https://github.com/aceisace/E-Paper-Calendar-with-iCal-sync-and-live-weather | 
					
						
							|  |  |  |     mkdir E-Paper-Master | 
					
						
							|  |  |  |     cd E-Paper-Calendar-with-iCal-sync-and-live-weather | 
					
						
							|  |  |  |     cp -r Calendar /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cp README.md /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cp LICENSE /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cp -r .git /home/pi/E-Paper-Master/ | 
					
						
							|  |  |  |     cd | 
					
						
							|  |  |  |     sudo rm -r E-Paper-Calendar-with-iCal-sync-and-live-weather | 
					
						
							| 
									
										
										
										
											2018-10-02 01:24:28 +02:00
										 |  |  |     # add a short info | 
					
						
							|  |  |  |     cat > /home/pi/E-Paper-Master/Info.txt << EOF | 
					
						
							|  |  |  | This document contains a short info of the version | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Version: 3-Colour E-Paper-version | 
					
						
							|  |  |  | Installer version: 1.2 (Early October 2018) | 
					
						
							|  |  |  | If the time was set correctly, you installed this software on: | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     echo "$(date)" >> /home/pi/E-Paper-Master/Info.txt | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  |     echo "" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | fi | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Installing packages required by the main script | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | echo -e "\e[1;36m"Installing a few required packages for the E-Paper Software"\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | sudo pip3 install pyowm | 
					
						
							|  |  |  | sudo pip3 install ics | 
					
						
							|  |  |  | pip3 install pyowm | 
					
						
							|  |  |  | pip3 install ics | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | } > /dev/null | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  | echo "" | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Setting up supervisor | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | echo -e "\e[1;36m"Setting up the script to start at boot..."\e[0m" | 
					
						
							|  |  |  | sudo apt-get install supervisor -y > /dev/null | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | sudo bash -c 'cat > /etc/supervisor/conf.d/E-Paper.conf' << EOF | 
					
						
							|  |  |  | [program:E-Paper] | 
					
						
							|  |  |  | command = sudo /usr/bin/python3.5 /home/pi/E-Paper-Master/Calendar/stable.py | 
					
						
							|  |  |  | stdout_logfile = /home/pi/E-Paper-Master/E-Paper.log | 
					
						
							|  |  |  | stderr_logfile = /home/pi/E-Paper-Master/E-Paper-err.log | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sudo service supervisor start E-Paper | 
					
						
							| 
									
										
										
										
											2018-10-01 22:23:33 +02:00
										 |  |  | echo "" | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 22:14:19 +02:00
										 |  |  | # Final words | 
					
						
							| 
									
										
										
										
											2018-09-09 21:22:19 +02:00
										 |  |  | echo -e "\e[1;36m"The install was successful"\e[0m" | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | echo -e "\e[1;36m"The programm will now start at every boot."\e[0m" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo -e "\e[1;31m"Please enter your details in the main script."\e[0m" | 
					
						
							|  |  |  | echo -e "\e[1;31m"If the file is not modified, the programm will not start"\e[0m" | 
					
						
							| 
									
										
										
										
											2018-09-23 23:12:16 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-01 21:38:23 +02:00
										 |  |  | echo -e "\e[1;36m"To modify the main file, enter:"\e[0m" | 
					
						
							|  |  |  | echo -e "\e[1;36m"nano /home/pi/E-Paper-Master/Calendar/stable.py"\e[0m" |