Skip to content
Sebastien edited this page Mar 10, 2016 · 38 revisions

Spopi can only work on Raspberry Pi 2 and 3

Installation

Raspbian 2016-02-26

Download last Raspbian Jessie img here

Then you can insert the µSD card in the Raspberry Pi 2

Default keyboard configuration

sudo raspi-config => International option and change keyboard layout if needed. Default is english => expand filesystem

Then you can reboot the Raspberry

Network

By default Raspbian as DHCP on the network interface. If you want static IP address, you have to modify /dev/network/interface/ and

Replace

iface eth0 inet manual

by

auto eth0
iface eth0 inet static
        address 192.168.2.16
        netmask 255.255.255.0
        gateway 192.168.2.1
        dns-nameservers 192.168.2.1

And then relaunch the network with sudo service networking restart Now you can test the network: ping www.ipgp.fr

Dependencies

wget -O /tmp/spopi_install.bash https://raw.githubusercontent.com/IPGP/Spopi/master/spopi_install.bash 
or
wget -O /tmp/spopi_install.bash https://goo.gl/bEwmmC

bash /tmp/spopi_install.bash

Spopi

They are two simple example of Spopi usage in /home/pi/visu:

drum-line

2/3 of the screen with a drum plot and 1/3 of the screen with a line plot

two-drums

half of the screen with a station, the other half with another one

You can modify them and choose which of those programms will start at the end of /home/pi/visu/screen_on.bash

Clone this wiki locally