Fire Bell Wakes You For Work By Shaving Years Off Your Life

fire-bell-alarm-clock

If you suck at getting up in the morning [Jake Lee] has a solution that will make sure you don’t get fired from your job. Unfortunately it’s going to scare the life out of you — but maybe we’re just not hard enough sleepers to appreciate the value in an alarm clock that’s so horribly loud.

At first we wondered where he got the bell but it looks like you can buy one for about fifteen bucks. We’re not saying you should hide one of these under your best friend’s bed, but the cost of the bell does put it firmly in the worth-it-as-a-prank price range. [Jake] used rigid and flexible conduit to connect the bell to a power source, and the control panel shown on the left. He uses the LED backlight of the bedside alarm clock to drive the base of a transistor, switching a relay to trigger the bell. The big button on the grey box makes the wailing stop (seriously, cut your volume before you hit 0:30 in the clip below).

Continue reading “Fire Bell Wakes You For Work By Shaving Years Off Your Life”

Heathkit Clock Updated With A PIC32 And GPS

heathkit-clock

One of [Bob’s] most treasured possessions is a Heathkit alarm clock he put together as a kid. Over the years he’s noticed a few problems with his clock. There isn’t a battery backup, so it resets when the power goes out. Setting the time and alarm is also a forward only affair – so stepping the clock back an hour for daylight savings time means holding down the buttons while the clock scrolls through 23 hours. [Bob] decided to modify his clock with a few modern parts. While the easiest method may have been to gut the clock, that wouldn’t preserve all those classic Heathkit parts. What [Bob] did in essence is to add a PIC32 co-processor to the system.

Like many clocks in the 70’s and 80’s, the Heathkit alarm clock was based upon the National Semiconductor MM5316 Digital Alarm Clock chip. The MM5316 operates at 8 – 22 volts, so it couldn’t directly interface with the 3.3V (5V tolerant)  PIC32 I/O pins. On PIC’s the input side, [Bob] used a couple of analog multiplexer chips. The PIC can scan the individual elements of the clock’s display. On the PIC’s output side, he used a couple of analog switches to control the ‘Fast’, ‘Slow’, and ‘Display Alarm/Time’ buttons.

Continue reading “Heathkit Clock Updated With A PIC32 And GPS”

An Overly-Complicated Logic Chip Clock

Clock

When a normal alarm clock just won’t do, the only option is to build your own, entirely out of discrete logic chips. [jvok] built this alarm clock for last year’s 7400 Logic Competition. In a desire to go against the grain a little bit, [jvok] decided to use 4000-series logic chips. It was allowed under the rules, and the result is a wonderful example of what can be done without a microcontroller.

Most clock projects we’ve seen use a single button to increase each digit. [jvok] wanted to do something unique, so he is able to set his clock with a ‘mode’ button that allows him to independently set the hours, minutes, and seconds. He’s only ever seen this method of setting a clock’s time used with microcontroller-based projects, and translating even that simple code into pure circuitry is quite impressive.

This clock also includes an alarm function, set by a bunch of DIP switches in binary coded decimal. It’s a great piece of work, and deserving of much more attention than it received during the Open Logic Competition.

Game Of Life Clock

GOLclockOperating

[Alex] wanted to make an LED clock. But simply making an LED array clock was far too easy — so he decided to make it follow some interesting rules…

Ever heard of John Conway’s Game of Life? It’s quite simple — there are four rules.

  1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overcrowding.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
    [from Wikipedia]

So [Alex] decided to make his clock LED matrix follow these rules, with lit pixels representing life. Every minute, on the minute, the time is displayed. But as soon as it is displayed, the rules take over, and the display disintegrates, following the rules of the Game of Life. It makes for an very interesting display that’s just waiting to be scaled up to a larger size!

He’s done a great job writing it up on his blog, and has included his code as well — so if you’re so inclined, take a look! If not, stick around after the break to see the clock in action.

Continue reading “Game Of Life Clock”

The Greenest Wall-Powered Clock

clock

Some of the most inefficient appliances in the home are AC mains-powered clocks. You can’t exactly turn them off and they use a whole lot of energy considering how often they’re looked at. [t3andy] came up with a great low power AC Mains clock that is only on 3% of the time. As a neat bonus, it also looks really, really cool.

[t3andy] is using a Teensy 3 as the brains of this clock, and the serial interface on the board provides a relatively easy means of setting the time without having to use buttons or tact switches. The clock face consists of 13 neopixels, with two red pixels showing the hour and a single green pixel showing the minutes. The time is measured with a DS3232 I2C real time clock with a battery backup.

The design is remarkably efficient since the LEDs are off 97% of the time, only being lit at the top of the minute. There are provisions for IR control and a PIR sensor to display the time whenever it’s needed, but that would obviously mean a hit to the energy efficiency.

CD-ROM POV Clock

clock

[Kyle] wanted to try something new. A Persistence of Vision Clock using a CD-ROM drive.

We have covered lots of POV Clocks that make use of hard drives, but we think this is the first time we have seen a CD-ROM drive used instead. [Kyle] points out that CD-ROM drives are typically much quieter than hard drives, which is the main reason he chose the CD-ROM route.

At the heart of this project is a good old ATMEGA168 and an RGB LED strip for the lights. To measure and maintain the rotational speed of the clock [Kyle] used an IR photodiode that detects a reference mark on the disc. An elegant build of a classic POV Clock, with a new twist!

The cool thing about this project is he did not actually use the CD-ROM drive like you think he would — he chucked the spindle motor and instead is spinning the disk using the tray ejection motor! He did this so he could control the motor by PWM straight off the microcontroller, whereas the spindle motor would require an IC and a varying control signal with specific voltage amplitudes.

He also experimented with different backgrounds and background lighting, which you can see in the video after the break!

Continue reading “CD-ROM POV Clock”

A Simple Nixie Clock With Logic Gates

Here is a very nice project that [Znaxque] finished a few months ago: a simple nixie clock made with logic gates only. In this build, the mains 50Hz is used as a time base instead of a 32KHz crystal that most readers here may use. In the very long term, this clock may actually be more precise than a crystal-based one as power companies in Europe adjust the mains frequency. However, at a given moment the difference between this clock and a reference may be as big as 60 seconds.

The design was sketched on a simple piece of paper and later made using salvaged ICs. [Znaxque] only bought the six IN-14 nixies for $45 and the veroboard shown in the picture above. The BCD to Decimal decoders are 74141s and three buttons are present on the board to set minutes, hours, as well as resetting all the counters.