1. 程式人生 > >樹莓派 Raspberry PI基礎

樹莓派 Raspberry PI基礎

數字 -c san 波特率 fin block dddddd exp org

樹莓派 Raspberry PI基礎

官網網址https://www.raspberrypi.org

下載地址:https://www.raspberrypi.org/downloads/

官方系統:RaspBian ,地址https://www.raspberrypi.org/downloads/raspbian/

系統安裝工具: Etcher,地址https://etcher.io/

技術文檔:https://www.raspberrypi.org/documentation/

安裝系統步驟

安裝系統鏡像文件需要用到讀卡器、SD卡以及Etcher軟件。

  • 下載Etcher軟件並安裝

  • 連接讀卡器和SD卡

  • 打開Etcher軟件,選擇需要寫入SD卡的系統 Raspberry PI .img

    或者.zip文件

  • 點擊Flash!開始寫入系統文件,等待寫入完成

開啟串口終端SSH

最新版本的RaspBian系統默認串口處於關閉狀態,需要在config.txt文件中編輯選擇打開串口。

  • 打開SD卡中的config.txt文本文件

  • 在文件末尾加上 enable_uart=1

登陸系統

將SD卡插入模塊,上電,等待模塊啟動完成。選擇使用putty軟件通過串口連接模塊,波特率為115200.

登陸賬號:pi

登陸密碼:raspberry

系統配置工具raspi-config

終端運行指令: sudo raspi-config

功能:修改用戶密碼,網絡選項,啟動選項,硬件選擇開啟或者關閉等功能

配置網絡

掃描附近網絡設備指令

? sudo iwlist wlan0 scan

添加已知網絡

  • 打開網絡配置文件wpa-supplicant:

    sudo nano /etc/wpa_supplicant/wpa_supplicant.conf

  • 根據以下格式添加網絡名稱、密碼

    network={ ssid="testing" psk="testingPassword"}

  • 重新配置網絡

    wpa_cli -i wlan0 reconfigure

  • 查看連接狀態

    ifconfig wlan0

  • 網絡其他屬性配置

    id_str="school" / id_str="home", 將網絡標誌位家庭或者學校網絡

    priority = 數字,多個網絡的連接優先級,數字越大,優先級越高

開啟網絡終端SSH

  • 通過桌面應用配置

    • Preferences菜單中運行Raspberry Pi Configuration

    • 選擇 Interfaces,使能SSH

    • 點擊OK完成配置

  • 通過raspi-config工具

    • 終端輸入 sudo raspi-config

    • 選擇 Interfacing options

    • 選擇SSH

    • 先後選擇YES >> OK >> Finish,設置完成退出

  • 使用 systemctl

    sudo systmctl enable ssh

    sudo systmctl start ssh

    ?

    選擇使用putty軟件,指定模塊IP地址即可連接樹莓派模塊。

樹莓派 Raspberry PI基礎