我们正在为学校开展一个项目,我们有 2 个PIR运动传感器运行 Arduino 微控制器。我们可以在 Ardunio IDE 和 Python IDLE中查看串口的输出。
我们接下来要做的是,在检测到大约 30 秒的运动后,发送电子邮件警报,看到此时我们没有以太网功能,我们认为最简单的方法是通过 Python 获取电子邮件。
如何做到这一点?
更新:
此时我们可以从 Python 发送一封电子邮件,我们可以在 Python 中读取 Arduino 串行端口,但我们只是在将它们放在一起时遇到了问题。
这就是我们的 Python 代码的样子,在 while 1: 是发生混淆的地方:
import smtplib,serial
ser = serial.Serial(port=2, baudrate=9200)
from email.MIMEMultipart import MIMEMultipart
from email.MIMEBase import MIMEBase
from email.MIMEText import MIMEText
from email import Encoders
import os
gmail_user = "usr@gmail.com"
gmail_pwd = "pw"
def mail(to, subject, text, attach):
msg = MIMEMultipart()
msg['From'] = gmail_user
msg['To'] = to
msg['Subject'] = subject
msg.attach(MIMEText(text))
part = MIMEBase('application', 'octet-stream')
part.set_payload(open(attach, 'rb').read())
Encoders.encode_base64(part)
part.add_header('Content-Disposition',
'attachment; filename="%s"' % os.path.basename(attach))
msg.attach(part)
mailServer = smtplib.SMTP("smtp.gmail.com", 587)
mailServer.ehlo()
mailServer.starttls()
mailServer.ehlo()
mailServer.login(gmail_user, gmail_pwd)
mailServer.sendmail(gmail_user, to, msg.as_string())
# Should be mailServer.quit(), but that crashes...
mailServer.close()
while 1: **// CONFUSION HAPPENS HERE //** <----------------------
ser.readline()
if ser.readline() = "motion"
do this mail sequence?
mail("usr2@gmail.com",
"Alarm Alert!",
"Both Motion Sensor A & B have been active for over # seconds",
"stor_fight.jpg")
任何提示将不胜感激。