脚本不断提升标志不符合设定条件

时间:2013-09-08 18:43:37

标签: python if-statement raspberry-pi

以下脚本是发送电子邮件警报,由于某种原因它会绕过我设置的标志..

############################################################
##                       MAIN                             ##
############################################################

Open_serial()

while True:

    line = ser.readline()
    if line:
        tmp = line.split()
        if 'tank' in line:
            tank_temp = tmp[1]
            print 'Tank temperature:',tank_temp
            if tank_temp >= 27:
                flag = raise_flag()
                if flag:
                    send_email('Tank temperature overheat',tank_temp)
                    flag = False
            elif tank_temp <= 23:
                flag = raise_flag()
                if flag:
                    send_email('Tank temperature too low',tank_temp)
                    flag = False

        if 'led' in line:
            led_temp = tmp[1]
            print 'Lights temperature:',led_temp
            if led_temp >= 55:
                flag = raise_flag()
                if flag:
                    send_email('Lights temperature Overheat',led_temp)
                    flag = False

        if 'White' in line:

            white_pwm = tmp[1]
            print 'White lights PWM value:',white_pwm
            white_per = white_percent(white_pwm)
            print 'White lights % value:',white_per

        if 'Blue' in line:
            blue_pwm = tmp[1]
            print 'Blue lights PWM:',blue_pwm
            blue_per = blue_percent(blue_pwm)
            print 'Blue lights % value:',blue_per

这是标志功能:

def raise_flag():
    global start
    interval = 900
    if start > interval:
        start = 0
        flag = True
        return flag
    else:
        flag = False
        start = start + 1
        time.sleep(1)
        return flag

当临时温度在25°C范围内时,脚本会继续发送电子邮件,我不知道它为什么一直发送电子邮件?我放置了旗帜,所以当条件满足时,它不发送1000封电子邮件,每15分钟只发送一次......

1 个答案:

答案 0 :(得分:1)

传入line.split()的readline()将生成一个字符串列表。所以你要比较一个字符串(你的数据)和一个整数(27)。这不是一个好主意。见this explanation of how sting/int comparison works

要修复它,只需在操作它之前将数据转换为这样的浮点数:

tank_temp = float(tmp[1])

或比较这样的字符串:

if tank_temp >= '27':

我会选择前者,因为你的数据应该是浮点数,所以将它们转换为浮点数是有意义的。