Changes between Version 12 and Version 13 of VisionFramework


Ignore:
Timestamp:
Nov 19, 2017, 1:34:56 PM (7 years ago)
Author:
benjialbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VisionFramework

    v12 v13  
    8383sudo apt-get install oracle-java8-jdk
    8484}}}
     85
     86test the java installation (output should include "1.8.0_65" and should not include "openjdk"):
     87{{{
     88java -version
     89}}}
     90
     91Now we can install [http://pi4j.com/install.html pi4j], a Java interface for the pi GPIO:
     92{{{
     93curl -s get.pi4j.com | sudo bash
     94}}}
     95
     96Then we can use the rpi_ws281x library for controlling the [https://www.adafruit.com/category/168 Adafruit NeoPixel lightring][[BR]]
     97But first, let's install some tools and dependencies:
     98{{{
     99sudo apt-get install build-essential python-dev git scons swig
     100}}}
     101
     102Now we can install the rpi_ws281x library:
     103{{{
     104git clone https://github.com/jgarff/rpi_ws281x.git
     105cd rpi_ws281x
     106scons
     107}}}
     108
     109Let's also install the python library:
     110{{{
     111cd python
     112sudo python setup.py install
     113}}}