我正在攻击我的第一个Python项目。我正在运行下面的Python代码并遇到linecache.getline问题。我想要它打开stoarage.txt文件。检查数字是否为0.如果是,请将其更改为1 - 播放音乐并打开LED。然后将其切换为2,每次关闭电源并启动我的Raspberry Pi时,它都不会再播放音乐。任何建议都会超级惊人。
我的storage.txt最终结果如下:
0
0
0
我认为它应该是这样的:
2
0
0
我的python代码如下所示:
import requests
import pygame
import RPi.GPIO as GPIO
from BeautifulSoup import BeautifulSoup
import linecache
pygame.mixer.init()
pygame.mixer.music.load('chaching.wav')
GPIO.setmode(GPIO.BCM)
#Im using pin 23 for the led.
GPIO.setup(21, GPIO.OUT)
#Im using pin 4 as a basic switch in replacement for a motion sensor.
GPIO.setup(4, GPIO.IN)
#Cleans up the number taken from my php file.
Soup = BeautifulSoup
#Subscriber number
sub_num = 0
#goal one value
goal1 = 93
#goal1 celebration flag pulled from the txt file. Line 1 of the doc.
goal1cel = linecache.getline('storage.txt', 1)
goal2 = 100
goal2cel = linecache.getline('storage.txt', 2)
goal3 = 150
goal3cel= linecache.getline('storage.txt', 3)
detectDaniel = 0
while True:
response = requests.get('http://www.bringyourownlaptop.com/php-test')
html= response.content
soup = BeautifulSoup(html)
num = soup.find('section')
sub_num = int(num.contents[0].strip())
# figure out if goal have been reached and set the appropriate goal celebration flag
if sub_num == goal1 and goal1cel == 0:
goal1cel = 1
if sub_num == goal2 and goal2cel == 0:
goal2cel = 1
if sub_num == goal3 and goal3cel == 0:
goal3cel = 1
# This passed the current status of the goal1cel e.g. 0 not done, 1 current, 2 finished.
text_file = open("storage.txt", "w")
#This added it to the text document with slash n used as a line break. Weve also had to change the value to a string instead of a integer.
text_file.write(str(goal1cel)+"\n"+str(goal2cel)+"\n"+str(goal3cel))
#closes the file.
text_file.close()
detectDaniel = 1
# checks if celebrations need to happen from goal celebration flags
if goal1cel == 1 and detectDaniel == 1:
GPIO.output(21, True)
pygame.mixer.music.play()
while pygame.mixer.music.get_busy() == True:
continue
print("Goal 1 reached!")
goal1cel = 2
if goal2cel == 1 and detectDaniel == 1:
GPIO.output(21, True)
pygame.mixer.music.play()
while pygame.mixer.music.get_busy() == True:
continue
print("Goal 2 reached!")
goal2cel = 2
if goal3cel == 1 and detectDaniel == 1:
print("Goal 3 reached!")
goal3cel = 2
print(sub_num)
print(detectDaniel)
答案 0 :(得分:0)
你的错误在于假设linecache.getline
只会返回一个整数。如果在解释器中运行它,它将返回字符串'0\n'
,这是一个字符串。
你得到这条线之后,你需要找到一些方法来简单地得到你想要的数字(如果它们只是一个字符值,你可能只需要取第一个字符和与角色进行比较,例如if goal1cel == '1'
。