Skip to content

Arduino library to receive numbers dialed by a rotary telephone dial via pulse dialing

Notifications You must be signed in to change notification settings

equant/Rotary-Dial

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This is my version of markfickett's code. Essentially, all I've done is changed it to use internal pullups, and changed the debounce delay from 15ms to 40ms to better work with my dial.

Rotary Dial

Arduino library to read numbers from a rotary dial (or otherwise using pulse dialing; see Wikipedia: Rotary dial).

front of a rotary telephone dial

This implementation is for the North American system, where [1, 9] pulses correspond to the numbers [1, 9], and 0 is represented by 10 pulses. This library was written for use with the dial demonstrated here and pictured above.

Connection & Circuit

On the back of the dial are two connections relevant for this implementation. One (the 'ready' switch) is normally open (NO), and is closed whenever the rotor is not at rest (specifically, as soon as the user draws back the rotor, and until it finishes returning). The other (the 'pulse' switch) is normally closed (NC), and is opened briefly for each pulse (roughly 10 - 20 Hz).

The expected circuit is:

Connect ready and pulse lines from their pins to ground.

The expected sequence is:

readyPin  pulsePin  state
HIGH      n/a       default (waiting)
LOW       LOW       ready to dial / for first pulse
LOW       HIGH      pulse received (number = 1)
LOW       LOW       ready for next pulse
LOW       HIGH      pulse received (number = 2)
LOW       ...       (repeat)
HIGH      n/a       rotation complete, count recorded

There is 15ms allowed for debounce, which is the implementation's only constraint on pulse speed.

See Also

See also: USB output from the Arduino, including presenting the Arduino as a keyboard by installing new firmware.

About

Arduino library to receive numbers dialed by a rotary telephone dial via pulse dialing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%