December 26, 2016

Raspberry Pi. Day 1

========================================
Raspberry Pi
2016-12-24
---------------------------------------

Unpackning Paspberry Pi 3
1) Prepare SD card, write f.ex. Rasbian OS image
2) USB UART calbe for DEBUG console
* To use USB UART TTL cable you need to enable UART interface
in /boot/config.txt add line:

enable_uart=1

* Check your cable connection wires: Gnd-black, Rx-green, Tx-white (green and white might be swapped!)
* Connect via Putty to COMx port (UART cable appears as COMx in PC): 115200, user pi, password raspberry
* Reboot RPi after connection or push some keys to see something on the console screen

3) Setup wi-fi manualy, set dhcp settings
/etc/wpa_supplicant/wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicantctrl_interface_group=0update_config=1
network={ ssid="your_wifi_network" psk="your_wifi_password"}