我正在开发一个我自己的项目,涉及覆盆子pi上的伺服系统。当我执行代码时,我让它们旋转,但我更喜欢让python脚本在10秒后自杀,而不是一直按CTRL + C.有没有办法用这个特定的代码执行此操作?
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BOARD)
GPIO.setup(7,GPIO.OUT)
try:
while True:
GPIO.output(7,1)
time.sleep(0.0015)
GPIO.output(7,0)
time.sleep(0.01)
except KeyboardInterrupt:
print"Stopping Auto-Feeder"
GPIO.cleanup()
答案 0 :(得分:3)
尝试以下内容:
msdeploy.exe -verb:sync -source:contentPath="..\WebPackage" -dest:auto,computername="http://10.7.5.93/msdeploy.axd?site=name_of_your_site",username=aUserName,password=aPassword