我试图计算那些打破激光束(硬件工作)然后发布到谷歌表格的人。法典:############################################################ People Counter v1-1 ##################################################################################################Setting up Python Modules####################################import RPi.GPIO as GPIOimport os, time##################################### Setting up GPIO pins #####################################RECEIVER_PIN = 23######################################Setting up Counters ######################################peoplecount = 0uploadcount = 0door = 1 # <- Use this to designate multiple doors for trackinglocation = 'Entry' # <- Use this to designate multiple locations for tracking in one formrpitemp = 'vcgencmd measure_temp | cut -c6-7' # Temperatur vom RPidef callback_func(channel): if GPIO.input(channel): print("Lichtschranke wurde unterbrochen")## This waits for a specified minute of the hour, checks if anyone has been detected since the last upload, then uploads the data to a Google Form.变量似乎不发送任何数据。如果我不发送表格,它的工作原理。任何人都可以帮助我,或者有更好的方法吗?%s
1 回答
汪汪一只猫
TA贡献1898条经验 获得超8个赞
我认为您正在使用浏览器模块打开URL。如果是这样,您尚未导入浏览器模块。因此,这就是为什么它抛出异常并且打印无法访问页面的原因
from mechanize import Browser br = Browser()
使用 PIP 安装模块,并在代码开头添加此模块。这应该会有所帮助
添加回答
举报
0/150
提交
取消