Cron Job for pipedream to turn on my computer

PHOTO EMBED

Thu Aug 10 2023 18:35:35 GMT+0000 (Coordinated Universal Time)

Saved by @zeroxclem #nodejs

const axios = require('axios');

module.exports = {
  schedule: '0 8 * * 1-5', // runs at 8am Mon-Fri
  handler: async () => {
    try {
      // Make API call to turn on computer
      await axios.post('https://api.example.com/poweron');

      console.log('Computer turned on successfully!');
    } catch (error) {
      console.error(error);
    }
  }
};
content_copyCOPY