# cron job to turn lights on at a specific time # format is min(0-59) Hour (0-23) Day (1-31) Month (1-12) day of week (0-7) where 0 and 7 are both sunday) # so * * * * * runs the job every minute # 30 14 * * * runs the job once a day at 2:30 PM etc... # you do not have to restart a system for the cron jobs to run # turn them on at 5:01 PM (or 23:01 UTZ as we are 6 hours off and Pi is set to UTZ) 1 23 * * * root /usr/bin/python /home/pi/mycode/shedlights/client-side/lightson.py