Skip to content
Sophy edited this page Feb 24, 2017 · 32 revisions

#The Voice Command Multimedia CARPUTER

###We have:

  • Raspberry Pi 3 model 2
  • Tach screen
  • USB web-camera Logitech HD WebCam C270 whith microphone
  • GSM
  • Micro SD card holder
  • Power adapter

The mobile computer can be installed and run in either automobile. It based on Raspberry Pi 3 model 2, and includes useful technologies like GSM, Internet connection and voice command block. Although the board has wi -fi, Bluetooth, HDMI screen connection. The contents of this carputer may vary by differ software.

##Working stages

###Setting of operation system to Raspberry Pi We used image RASPBIAN JESSIE WITH PIXEL.

###Plugging Raspberry Pi to Wi-fi access point

sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

Adding lines

network={
        ssid="YourSSID"
        psk="password"
        key_mgmt=WPA-PSK
}

Push the buttons Ctrl-X on clip board and don’t forget to save the changes (press Y, then Enter).

For the changes in force may reload:

sudo reboot

and then watch how the connection success:

$ ifconfig  wlan0
 
 wlan0     Link encap:Ethernet  HWaddr 7c:dd:90:04:2f:bc
          inet addr:192.168.0.14  Bcast:192.168.0.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:9 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:1866 (1.8 KiB)  TX bytes:1004 (1004.0 B)

##Updateing Raspberry Pi In the beginning you must ensure you use the latest program versions. This problem is solving in two steps. First you need to update available programs list, stored locally on Raspberry Pi. This step you should make before any updates. Input the command:

sudo apt-get update

Then for packages upgrading input:

sudo apt-get upgrade

and press Y for the question Do you want to continue [Y/n]?

Clone this wiki locally