Maker Pro
Maker Pro

need help ? How would an analogue alarm work with a digital clock

shelby

Mar 7, 2012
7
Joined
Mar 7, 2012
Messages
7
I am designing an alarm clock which has a digital clock interface but an standard old fashioned alarm clock dials. How could I make the alarm hands react according to the digital set time.

manually set alarm on a standard hands clock, linked to a digital time.
 

donkey

Feb 26, 2011
1,301
Joined
Feb 26, 2011
Messages
1,301
i can think of 2 ways both require some prgramming knowledge. the first is complicated but it works by using 3 pots that rotate a full 360 degrees, they each determine out where the hand is located on the "face" of the clock and give said information to the digital read out.
the second also uses microcontroller but may be slightly easier. have contacts around the clock face, they don't even have to bee on every second just have them on the numbers. as each hand touches the sensors the microcontroller figures out which is which and using the last known location it determines the time{e.g. the hour hand has passed the 8 but not reached the nine, the minute hand has passed the 4 but not the 5 and the second hand has passed the 12 4 times and is on the 6 the time would read 8:24:30)
there is one last way that uses infared do determine the time....

the easy way of doing this is having an lcd that shows the time in the centre and another lcd to show an analogue clock like in the bottom right of windows 7.....
there may be other options that are easier but at the moment these are the ones i can think of
 

Rleo6965

Jan 22, 2012
585
Joined
Jan 22, 2012
Messages
585
You can connect small magnet and reed switch to mechanical ringer of the analog clock.
 

timothy48342

Nov 28, 2011
218
Joined
Nov 28, 2011
Messages
218
I was going to say, "what about a stepper motor"? or 2. One for the hours hand, one for the minutes. They wouldn't have to constantly run, but just update the positions of the hand about once per minute or so.

You won't find one that has one shaft inside the other like the hands of a clock, but you could take part of the gearing from an analog clock and figure out which gears need to turn by how much to get the hands where you want them. You might have to have a calibrate function where you manually push the hands both to midnight, then press calibrate so the controller know where they are to start.

They would not need to be powerful or fast, was thinking you could even make one. Or possibly use the idea of how they work and position magnet coils in the certain spots behind the face of the clock to get the same result that a stepper motor would get. Basically the position on the clock face farthest from where you want the hand to be would get a current flow to repulse the clock hand. The ones near it would get less. The ones 90 degrees from where you want it to be would get none. The coils closer would get some, but in the attracting polarity, and the coil directly under where you want the clock hand would get the most.

If you use permanent magnets in the hands, one could be close to the center post and the other could be way out at the tip. And so 2 rings of coils(total 24).
Or you could put coils in the hands, too, and only power the coil of the hand you want to move, so only 12 coils under the face of the clock.

You might be able to use a lot less coils. I know stepper motors have a lot more position than they have wires. I know they work by putting current through more than one winding at a time, but I'm not quite sure how they do it beyond that.

Maybe as an experiment you could start with 1 clock hand, a permanent magnet and 2 coils of wire and see if you can control the position manually by adjusting the current through the 2 coils and see how much current is needed.

Anyway, I was going to post all that, but when searching for "make your own stepper motor" someone's avatar picture was this:
xerxes.gif


Is that a "Gray Coded Wheel"? (or a section of one?) If that is, then I just find it funny that you mention them, and they I immediately come across a picture of one while searching for something else.


--tim
 

shelby

Mar 7, 2012
7
Joined
Mar 7, 2012
Messages
7
what type of sensor could you use, if i were to use the microcontroller method?
 

poor mystic

Apr 8, 2011
1,074
Joined
Apr 8, 2011
Messages
1,074
:)
Microcontrollers can handle digital signals, such as Gray code, and generate digital outputs. Some microcontrollers have A-D converters, and can measure voltage calues to a high degree of accuracy. Some microcontrollers also have D-A converters.
Therefore microcontrollers are extremely flexible devices and can be applied to many different applications.
Microcontrollers can be configured to measure from any kind of sensor.
 
Top