Installation and usage scripts of the Rover Rescue System.
- Start
$ ./start.sh [OPTION] OPTION: - all - camera - rover
- Stop
$ ./stop.sh [OPTION] OPTION: - all - camera - rover
Install Rover (and its dependencies) from your RaspberryPi's shell prompt:
$ wget -q https://git.io/fx0ko -O /tmp/rover && bash /tmp/rover
The installer will complete the steps in the manual installation (below) for you.
These steps apply to the latest release of Raspbian (currently Stretch).
- Update your system package list:
$ sudo apt-get -update -y
- Upgrade all your installed packages to their latest version:
$ sudo apt-get dist-upgrade -y
- To download and install newest version of Node.js, use the following command:
$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
- Now install it by running:
$ sudo apt-get install nodejs -y
- To compile and install native addons from npm you also need to install build tools:
$ sudo apt-get install build-essential -y
- To download the Rover code you need to install git:
$ sudo apt-get install git -y
- Clone 'Scriptor' using git:
$ git clone https://github.com/RescueOnWheels/Scriptor.git
- Clone 'Rover' using git:
$ git clone https://github.com/RescueOnWheels/Rover.git --recursive
- Open the 'Scriptor' folder and start using the Rover:
$ cd Scriptor && ./start.sh all