Skip to content

Part 1. GrovePi Setup

jrbail01 edited this page Feb 21, 2016 · 1 revision

Grove Pi Mounted

To get started, first connect the GrovePi+ to your unpowered Raspberry Pi by sliding the Pi pin headers into the GrovePi pin socket.

Next, we need to install the GrovePi software onto our Pi to make reading Grove sensors super easy. We will follow the instructions listed at http://www.dexterindustries.com/GrovePi/get-started-with-the-grovepi/setting-software/ and add one step at the end.

The TL;DR version is as follows:

$ cd /home/pi/Desktop
$ sudo git clone https://github.com/DexterInd/GrovePi
$ cd /home/pi/Desktop/GrovePi/Script
$ sudo chmod +x install.sh
$ sudo ./install.sh
$ sudo pip install grovepi

The step, "$ sudo ./install.sh", will take several minutes. Be patient.

The last step, "$ sudo pip install grovepi", allows us to import the grovepi Python library from any directory on our Pi. If you skip this step, you will have to create all of your GrovePi projects within the /home/pi/Desktop/GrovePi/Software/Python directory (which is icky).

<< Part 1: Equipment List - Part 2: Initial State >>