Skip to content

Instantly share code, notes, and snippets.

@SteveEdson
Created August 22, 2017 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveEdson/794222662809a92aafc3f6b03c91c8ec to your computer and use it in GitHub Desktop.
Save SteveEdson/794222662809a92aafc3f6b03c91c8ec to your computer and use it in GitHub Desktop.
// Take a photo on load
takePhoto();
setInterval(() => {
// Take a photo every X minutes, defined in the ENV
takePhoto();
}, 1000 * 60 * parseInt(process.env.PHOTO_INTERVAL, 10));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment