- Back to Home »
- Raspberry PI »
- Raspberry Pi Tips
Saturday, October 14, 2017
1. raspi-config
sudo raspi-config
2. Setup network
2.1 Wifi
Step1: Scan wifi
$ sudo iwlist wlan0 scan
wlp1s0 Scan completed :
Cell 01 - Address: BC:5C:4C:07:C6:31
Channel:1
Frequency:2.412 GHz (Channel 1)
Quality=69/70 Signal level=-41 dBm
Encryption key:on
ESSID:"elecom2g-07c630"
Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
9 Mb/s; 12 Mb/s; 18 Mb/s
Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
Mode:Master
Note:- wlan0 là tên network interface
Kết quả sẽ được danh sách các wifi, tên của mạng wifi ở chỗ ESSID
Step2:
Mở file config
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
và thêm vào cấu hình dưới đây:
network={
ssid="Wifi Network Name"
psk="SecretPassWord"
}
Lưu lại: Ctrl+X -> Y -> ENTERSau đó khởi động lại
sudo reboot
2.2 Static IP
Mở file:
sudo nano /etc/dhcpcd.conf
Thêm cấu hình như format dưới đây:
interface eth0
static ip_address=192.168.1.XX/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
3.Touch Display
Tùy loại thì có cách cài đặt khác nhau, dưới đây là vd cài đặt cho màn hình 3.5inch, truyền hình ảnh qua SPI, dùng XT2046
https://www.waveshare.com/wiki/3.5inch_RPi_LCD_(A)#Image
Driver installation
1. Download the lasted image from Raspberry Pi website and write it to SD card.
2. Connect RPi LCD to Raspberry Pi and connect Pi to networking.
3. Configure your Pi:
sudo raspi-config
Set as:
- Select Expand Filesystem.
- Boot Option -> Desktop Autologin (may differ depending on Raspbian revision)
3.Open Terminal of Raspberry Pi (You may need to connect an keyboard and HDMI LCD to Pi for driver installing)
git clone https://github.com/waveshare/LCD-show.git cd LCD-show/
Note: Net work connection is required while installing driver to your Pi, or else the touch won't work properly.
chmod +x LCD35-show ./LCD35-show
3. After system rebooting, the RPi LCD is ready to use.