这是我的代码。当我运行代码时,它说语法错误=无效语法,它看到“&”符号作为无效语法。
enter code here
# -*- coding:utf-8 -*-
import RPi.GPIO as GPIO
import time
import os
buttonPin = 17
GPIO.setmode(GPIO.BCM)
GPIO.setup(buttonPin,GPIO.IN)
while True:
if (GPIO.input(buttonPin)):
os.system("fswebcam -r -d
/dev/video0/home/pi/webcam.jpg")
os.system("python /home/pi/mailgonder.py")
答案 0 :(得分:0)
while循环中的代码没有正确缩进,os.system
参数应该用引号括起来。