Ready Images

Automotive Grade Linux (AGL) Image for Rover 0.1.0

Download AGL Image Rover 0.1.0.

Use this link to start with this AGL Image.

Raspbian Jessie Image

Download Raspbian Jessie Image.

  • Includes dependencies and current rover-app, rover-telemetry-ui, and rover-web repositories

  • Image Updated: 10.01.2017

To install the latest roverapp

1
2
3
4
cd ~/rover-app
git pull
git checkout master
sudo ./install_roverapp.sh

To start roverapp

1
2
cd ~/rover-app/build/bin
sudo ./roverapp

Using rover-telemetry-ui

Note

Project is hosted in the repository: https://github.com/app4mc-rover/rover-telemetry-ui.git.

To download:

1
git clone https://github.com/app4mc-rover/rover-telemetry-ui.git

To download dependencies (If you don’t have node.js installed, first install node.js):

1
2
cd rover-telemetry-ui
sudo npm install net connect serve-static http socket.io express path mqtt

To run the server:

1
2
cd scripts/
sudo node start_rovertelemetryui.js

Finally, go to your web browser and find the page at http://<your host address>:5055/rovertelemetryui.html.

To download latest roverweb

1
2
3
4
5
cd ~/rover-web
git pull
git checkout master
cd rover-web
sudo npm install net connect serve-static http socket.io express path mqtt

To start roverweb

1
2
cd ~/rover-web/scripts/nodejs
sudo node start_roverweb.js

Warning

Be sure to change the folder to cd <your/roverweb/root/path>/scripts/nodejs/ before executing the script, since it’ll use default directory for hosting.