#108 RingCounterController
Control the classic CD4017 walking-ring counter with an Arduino
Here’s a quick video of the circuit in action:
Notes
The RingCounter project demonstrated the classic walking ring circuit using a 555 timer to send clock pulses to a CD4017 Decade Counter/Divider with 10 Decoded Outputs.
This project replaces the 555 with a microcontroller for more dynamic effects. The program demonstrates a few effects achieved by controlling the CLOCK, RESET and CLOCK ENABLE pins of the CD4017.
Digital IO pins are connected to the CLOCK, RESET and CLOCK ENABLE pins via 1kΩ resistor. The resistor is not strictly necessary as the CD4017 draws at most 1µA on the inputs. But they provide some over-current protection for the Arduino should anything be going wrong in the circuit.
The minimum clock pulse with is 250ns when operating at 5V.
The program ensures a minimum clock pulse of 1ms which is very conservative.
In fact the sketch works equially well with no delay when pulsing the clock - just digitalWrite
HIGH immediately followed by digitalWrite
LOW.
When operating, the circuit draws about 2mA in total.
Note that since only a single LED should be on at a given time, the 10 x 1kΩ current-limiting resistors could be replaced by a single resistor on a common cathode ground link for the LEDs. But it depends on the specific LED ratings, as this subjects all the “off” LEDs to a reverse voltage equal to the voltage drop across the resistor.
Construction
Credits and References
- CD4017 datasheet
- kit link - example of the same circuit available as a kit
- RingCounter - same project but in classic configuration with 555 timer