A Vibrating Timepiece

vibratingWatch

It may not look like much, but the above pictured device is [qquuiinn’s] handy little watch that indicates time through pulsed vibrations. Perhaps we should refrain from labeling it as a “watch,” however, considering it’s [qquuiinn’s] intention to remove the need to actually look at the thing. Vibrations occur in grandfather clock format, with one long vibration for each hour, accompanied by one, two, or three short pulses for the quarter-hour increments.

The design is straightforward, using an ATTiny85 for the brains along with a few analog components. The vibration motor sticks to the protoboard with some glue, joining the microcontroller, a coin cell battery, and a pushbutton on a small protoboard. The button allows for manual time requests; one press responds with the current time (approximated, probably) in vibrations. The build is a work in progress, and [qquuiinn] acknowledges the lack of an RTC (real-time clock) causes some drift in the timepiece’s accuracy. We suspect, however, that you’d address that problem—twice daily—when you replace the battery: it only lasts ten hours.

21 thoughts on “A Vibrating Timepiece

  1. A CR2032 provides only 3.0V nominal, for 0.2mA. At the current drawn by even a tiny vibration motor, it’s not at all surprising that a slightly discharged cell would drop below the minimum voltage spec of the ATTiny85 when the motor went off.

    Also, I note that an external pulldown resistor is being used for the pushbutton. I wonder why the internal pull-up isn’t being used instead?

    1. Should look into isolating the motor (or shocker :) power from the uC by
      means of a few hundred ohms series resistor and a large capacitor. As
      pointed out, the coin cell has high internal resistance and isn’t good
      for high current drains.

      Sort of like those solar bots, the large capacitor holds the energy for
      the motor and *slowly* charges up between twitches. The resistor keeps
      the charging current low to reduce dips.

    1. My phone vibrates all day from texts and updates from Hackaday :D. Any more from other sources (that don’t provide any helpful distractions from work) could possibly drive me up the wall!
      But more on point… I saw this post the other day before it was posted here and had concerns about power managment myself. It seems difficult to belive the coin cell would last more than a couple of days before the voltage dropped below what is needed for the mcu oor (even) the motor. I think one of the *impossibly* small lipos would be a better choice.

  2. And yeah, busy-looping waiting for a button press isn’t gonna help matters either. ATTinys can give you impressive power usage, but you’ve got to set up your interrupts properly.

  3. I recently came up with the idea for a tactile watch to use for when looking at a watch would be considered rude (like when in a lecture). This is very similar to what I had in mind.

  4. RTC is the “cop out” for lazy person. If you know the watch is always 10
    seconds fast after 5 hours, the software *can* trim back a second every
    5x60x60/10 = 1800 seconds. You can even compensate for temperature.

    “Low power crystal/oscillator for AVR watch…”
    http://www.avrfreaks.net/index.php?name=PNphpBB2&file=printview&t=125629&start=0
    Scroll down to 3rd post for a list of links on keeping time accurate.

    Also scroll down for “AVR Watch” and pictures etc.

  5. 10 hours – oh yea, that’s way better then looking at a mobile or a real watch.

    If you’re going to re-invent something, especially something that has had a working design for centuries, it’d be nice if you IMPROVE the design.

      1. Really, I’ll remove my shoes and socks, so I can do higher math if you’d only use small words and simple ideas to explain why a watch that can only run 10 hours before the battery dies is a “awesome” improvement on any type of timepiece invented in the last couple of centuries. I have a 1870’s Elgin pocket watch that runs for about 26 hours on a single winding – so explain how you can use 10 hours and awesome in any sentence that doesn’t include derisive laughter.

Leave a Reply to Xavier AsheCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.