這里介紹使用PyCharm作為樹莓派的遠(yuǎn)程開發(fā)環(huán)境困檩。
1异逐、設(shè)置
1.1汉嗽、PyCharm軟件安裝
需要Python IDE for professional 版本,它擁有遠(yuǎn)程調(diào)試功能:Remote development capabilities问潭。
1.2猿诸、配置環(huán)境
在Settings-> Python Interpreter中,點(diǎn)擊Add添加一個Python Interpreter:
[圖片上傳失敗...(image-567b43-1626601510499)]
選擇SSH Interpreter ,設(shè)置好樹莓派的SSH信息:
填寫用戶名pi的密碼:
設(shè)置好樹莓派上python的路徑狡忙,如下:
完成配置:
2梳虽、使用
2.1、新建項目
新建項目灾茁,填寫好項目路徑怖辆,并設(shè)置interpreter如下:
- Interpreter 選擇上一步添加的SSH Interpreter
- Remote Project Location 選擇樹莓派上的路徑用于存放項目代碼
2.2、項目設(shè)置
在Settings->Build,Execution,Deployment-> Deployment下删顶,設(shè)置好Connection竖螃、Mappings:
2.3、添加源代碼文件
- 添加main.py文件
代碼內(nèi)容如下:
import time
from gpiozero import LED
print("hello world")
led = LED(26)
while True:
print("red led on")
led.on()
time.sleep(3)
print("yellow led on")
led.off()
time.sleep(3)
2.4逗余、上傳到樹莓派
在main.py文件上右擊特咆,點(diǎn)擊Development,選擇Upload to...:
然后在出現(xiàn)的框中選擇 pi:
代碼會上傳到樹莓派中:
2.5、執(zhí)行
在編輯器中右鍵腻格,選擇 Run 'main':
將看到樹莓派LED的黃色和紅色燈交替打開和關(guān)閉画拾,終端有如下顯示: