just thought i'd post a little 'bullet-proofing' code i added to my sensor-reading script; this code reboots the system in 10 minutes following a failed sensor reading... this has helped me with my RPi in the garage, which takes readings from outside and logs them onto a lighttpd Web directory for pickup by other RPis in the casa:
Code: Select all
def reboot():
text_file = open("/var/www/html/weather.txt", "a")
text_file.write(str(datetime.now().strftime('%F %H:%M ')))
text_file.write("error reading sensor - rebooting\n")
text_file.close()
time.sleep(600)
cmd = "/usr/bin/sudo /sbin/shutdown -r now"
import subprocess
process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
output = process.communicate()[0]
return "%s" % output
Code: Select all
# Read temperature/pressure/humidity
try:
data = bus.read_i2c_block_data(addr, REG_DATA, 8)
except IOError:
reboot()
Code: Select all
2016-11-03 02:10 error reading sensor - rebooting
2016-11-03 02:20 error reading sensor - rebooting
2016-11-03 02:31 67.6 22.7 100.0
2016-11-03 02:41 error reading sensor - rebooting
2016-11-03 02:51 67.6 22.7 100.0
2016-11-03 03:01 error reading sensor - rebooting
2016-11-03 03:11 67.6 22.7 100.0
2016-11-03 03:21 error reading sensor - rebooting
2016-11-03 03:31 67.6 22.7 100.0
2016-11-03 03:41 error reading sensor - rebooting
2016-11-03 03:52 67.6 22.7 100.0
2016-11-03 04:02 error reading sensor - rebooting
2016-11-03 04:12 67.6 22.7 100.0
2016-11-03 04:22 error reading sensor - rebooting
2016-11-03 04:32 error reading sensor - rebooting
2016-11-03 04:44 error reading sensor - rebooting
2016-11-03 04:54 error reading sensor - rebooting
2016-11-03 05:04 67.6 22.7 100.0
2016-11-03 05:14 error reading sensor - rebooting
2016-11-03 05:25 67.6 22.7 100.0
2016-11-03 05:35 error reading sensor - rebooting
2016-11-03 05:45 67.6 22.7 100.0
2016-11-03 05:55 error reading sensor - rebooting
2016-11-03 06:05 67.6 22.7 100.0
2016-11-03 06:15 error reading sensor - rebooting
2016-11-03 06:25 error reading sensor - rebooting
2016-11-03 06:36 error reading sensor - rebooting
2016-11-03 06:46 error reading sensor - rebooting
2016-11-03 06:56 67.6 22.7 100.0
2016-11-03 07:06 error reading sensor - rebooting
2016-11-03 07:16 69.7 30.2 58.9
Hope this helps someone!
willie
on the cooling Gulf of Mexico