Website Down Alarm

by SelkeyMoonbeam in Circuits > Arduino

21573 Views, 355 Favorites, 0 Comments

Website Down Alarm

original-33-1417737624777-20141204_095736 (1).jpg

If your website goes down, you want to be the first to know. Make it obvious when there's a problem by hooking up a big alarm light to a Tessel, which will ping your website every few seconds to check for trouble.

This project can also be viewed on the Tessel Projects Page.

Materials

original-33-1417737624777-20141204_095736.jpg

You will need:

You'll also need the following tools:

  • Screwdriver
  • Wire strippers (scissors work, if you're careful)
  • Computer for programming

Hack the Light

20141204_095821.jpg

Unscrew the switch from the lamp cord (if you don't have a light with a switch, cut one side of the light's power cord)

Expose the Copper

20141204_100235.jpg

Peel back the cut ends and use the wire strippers to expose the copper.

Insert the Exposed Wires Into the Relay

20141204_100411.jpg

Using a screwdriver to press down on the tabs, insert both exposed copper ends into the two sides of Relay 1 on the Relay Module.

When the relay is latched "on", the two ends of the wire will connect, completing the circuit.

Plug Things In

20141204_102039.jpg

  1. Plug the Relay Module into Port A on the Tessel
  2. Plug in power to the lights
  3. USB power the Tessel (plug it in to your computer to program)

Program the Tessel

Screen Shot 2014-12-05 at 11.07.44 AM.png

Now we're going to add the logic to make the Tessel go online and check on your website. Note that you don't have to be a programmer in order to make this work– I've already written the code! You just have to copy it.

Please poke around in the code, and feel free to comment with any questions!

If you haven't used a Tessel before, you should follow the instructions on this page first to install it.

Programming your alarm light:

  1. Clone this repo ("repo" = repository for code. This might be a helpful read: https://help.github.com/articles/fork-a-repo/)
  2. From within the repo, `npm install` to install dependencies
  3. Ensure your hardware is set up properly by running `tessel run relay-test.js`. If nothing happens, check your connections and refer to the Relay Guide
  4. In `index.js`, change the wifi settings and site to monitor to suit your needs
  5. To run temporarily with logs, `tessel run index.js`
  6. To program for long-term use, `tessel push index.js`
  7. You can now unplug Tessel from your computer and power externally according to the guide

Congratulations, your light should be working!
It can be a little anticlimactic, since when everything is working properly, nothing should happen...

Here are the light patterns you should expect to see:

  • Continuously off: all is well
  • Continuously on: website being monitored is down
  • Two-second bursts (on or off): system error; monitoring isn't working (reset the Tessel)