2014-10-07 80 views
1

我正在写一个脚本,一旦Pibrella上的按钮被按下,就会每隔10秒发送一封电子邮件。我希望它再次按下按钮时停止。Pibrella + RPI线程停止

因此,例如,第一次按下时,它每隔10秒发送一封电子邮件。然后第二次,它停止线程。

这是我目前的代码,有人可以告诉我我在哪里做错了吗?

import pibrella, signal 
import threading 
import time 
import smtplib 

server = smtplib.SMTP("smtp.gmail.com",587) 
server.ehlo() 
server.starttls() 
server.ehlo() 

server.login("[email protected]", "EmailPassword") 

isPressed = 0 

def pressed(pin): 
    global isPressed 
    if isPressed == 0: 
     isPressed = 1 
     sendMail() 
    else: 
     pibrella.light.off() 
     t.cancel() 
     isPressed = 0 

def sendMail(): 
    pibrella.light.pulse() 
    server.sendmail("[email protected]", "[email protected]", "Hello World") 
    t.start() 

t = threading.Timer(10, sendMail).start() 

pibrella.button.pressed(pressed) 
pibrella.pause() 

server.close() 

我现在正在获取的错误发布在下面。请注意,电子邮件确实正在发送。

Traceback (most recent call last): 
    File "/usr/local/lib/python2.7/dist-packages/pibrella.py", line 262, in handle_callback 
    callback(self) 
    File "sendText.py", line 27, in pressed 
    sendMail() 
    File "sendText.py", line 36, in sendMail 
    t.start() 
AttributeError: 'NoneType' object has no attribute 'start' 
Exception in thread Thread-14: 
Traceback (most recent call last): 
    File "/usr/lib/python2.7/threading.py", line 552, in __bootstrap_inner 
    self.run() 
    File "/usr/lib/python2.7/threading.py", line 760, in run 
    self.function(*self.args, **self.kwargs) 
    File "sendText.py", line 36, in sendMail 
    t.start() 
AttributeError: 'NoneType' object has no attribute 'start' 
+0

你能告诉我们,你当前的代码做和为什么你觉得会失败? – 2014-10-07 15:33:00

+1

用错误消息更新了它。 – user130622 2014-10-07 17:52:12

回答

-1

代码用于发送电子邮件(从我Github上)

import subprocess 
import smtplib 
import socket 
from email.mime.text import MIMEText 
import datetime 
#account info 
to = '[email protected]' 
gmail_user = '[email protected]' 
gmail_password = 'your_password' 
smtpserver = smtplib.SMTP('smtp.gmail.com', 587) 
smtpserver.ehlo() 
smtpserver.starttls() 
smtpserver.login(gmail_user, gmail_password) 
today = datetime.date.today() 
arg='ip route list' 
p=subprocess.Popen(arg,shell=True,stdout=subprocess.PIPE) 
data=p.communicate() 
split_data=data[0].split() 
ipaddr=split_data[split_data.index('src')+1] 
my_ip='your_message' 
msg=MIMEText(my_ip) 
msg['Subject']= 'the_subject' 
msg['From']= gmail_user 
msg['To'] = to 
smtpserver.sendmail(gmail_user, [to], msg.as_string()) 
smtpserver.quit()