All python code lives in the ~/Adafruit_Python_GPIO/Adafruit_Python_BME280 directory that was created when the Adafruit BME280 code was unzipped. From user crontab start BME280 tasks and also use cron to run the wide format and csv reads along with grabbing the tail of the pressure sensor delta reading. This helps form the dashboard. # Start BME280 sensor tasks @reboot /home/erick/Adafruit_Python_GPIO/Adafruit_Python_BME280/task_BME280.py @reboot /home/erick/Adafruit_Python_GPIO/Adafruit_Python_BME280/task-pressure-sensor-delta-BME280.py 3 * * * * /home/erick/Adafruit_Python_GPIO/Adafruit_Python_BME280/wide-format-read_BME280.py >> /tmp/web/BME280-CRON-data.txt 5 * * * * /home/erick/Adafruit_Python_GPIO/Adafruit_Python_BME280/csv-read_BME280.py >> /tmp/web/csv-BME280-CRON-log.csv */10 * * * * tail /tmp/web/pressure-delta.txt > /tmp/web/pressure-delta-tail.txt && cat /tmp/web/pressure-delta-tail.txt | grep -c "= -" >> /tmp/web/wx-trender.txt && cat /tmp/web/pressure-delta-tail.txt | grep -c "0.000" >> /tmp/web/wx-trender-flat.txt