Changes between Version 4 and Version 5 of VisionFramework


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

--

Legend:

Unmodified
Added
Removed
Modified
  • VisionFramework

    v4 v5  
    1010* Light Ring
    1111* 3-pin female to female jumper wire
    12 == Raspberry Pi Subscriber-Publisher Architecture ==
    13 tbd
     12== Raspberry Pi Setup ==
     13Install [https://sourceforge.net/projects/win32diskimager/ Win32 Disk Imager]
     14Install [https://downloads.raspberrypi.org/raspbian_lite_latest Raspian Lite] onto MicroSD card via Win32 Disk Imager
     15
     16Load Raspberry Pi 3 (rpi) with the newly imaged MicroSD
     17connect to wifi by adding the following to the /etc/network/interfaces file:
     18{{{
     19auto wlan0
     20iface wlan0 inet dhcp
     21  wpa-ssid "your-ssid"
     22  wpa-psk  "your-password"
     23}}}
     24
     25reboot the pi:
     26{{{sudo shutdown -r now}}}
     27
     28update with the following commands:
     29{{{
     30sudo apt-get update
     31sudo apt-get upgrade
     32sudo apt-get dist-upgrade
     33sudo apt-get clean
     34}}}
     35
     36set localization configuration options:
     37{{{
     38sudo raspi-config
     39}}}
     40
     41reboot:
     42{{{sudo shutdown -r now}}}
     43
     44Install Xorg abd Xinit:
     45{{{
     46sudo apt-get install --no-install-recommends xserver-xorg
     47sudo apt-get install --no-install-recommends xinit
     48}}}
     49
     50Install the MATE GUI:
     51{{{sudo apt-get install mate-desktop-environment-core}}}
     52
     53Install LightDM login manager:
     54{{{sudo apt-get install lightdm}}}