2017-06-25 49 views
0

我正試圖將電機控制器連接到我的覆盆子pi 3b。我一直沿着這個教程到這個頁面herefrom:無法閱讀/ var/mail/Adafruit_MotorHAT

在直流電機控制演練的第一步,我得到這個截圖終端:

我在做什麼錯?

+0

守在我,我感到非常新的樹莓派和編碼,從而一步解答步驟我請你發言,並承擔我知道absolutley什麼都沒有 – Chris

回答

0

首先檢查,蟒蛇是你的系統上:

edwards-iMac:~$ which -a python 
/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python 
/usr/bin/python 

要進入現場解釋這樣做對你的命令行:

python 

現在你在外殼(Live Interpreter)中。 然後你就可以行中輸入以下行:

from Adafruit_MotorHAT import Adafruit_MotorHAT, Adafruit_DCMotor 

import time 
import atexit 

mh = Adafruit_MotorHAT(addr=0x60) 

def turnOffMotors(): 
    mh.getMotor(1).run(Adafruit_MotorHAT.RELEASE) 
    mh.getMotor(2).run(Adafruit_MotorHAT.RELEASE) 
    mh.getMotor(3).run(Adafruit_MotorHAT.RELEASE) 
    mh.getMotor(4).run(Adafruit_MotorHAT.RELEASE) 

atexit.register(turnOffMotors) 

這裏更多:http://pythoncentral.io/execute-python-script-file-shell/

1

您似乎已將腳本粘貼到您的終端中。它是行不通的,除非你調用python第一

+0

請解釋一下,我對python非常陌生....至於在30分鐘左右的經歷大聲笑 – Chris