https://hackaday.io/project/181418-clocktal

” data-image-caption=”” data-medium-file=”https://hackaday.com/wp-content/uploads/2021/09/3031891630990168968.jpg?w=400″ data-large-file=”https://hackaday.com/wp-content/uploads/2021/09/3031891630990168968.jpg?w=800″>

<img data-attachment-id="495789" data-permalink="https://hackaday.com/2021/09/13/clocktal-for-when-reading-a-clock-is-just-too-easy/attachment/9701491631368879842/" data-orig-file="https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png" data-orig-size="616,265" data-comments-opened="1" data-image-meta='{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}' data-image-title="9701491631368879842" data-image-description="

https://hackaday.io/project/181418-clocktal

” data-image-caption=”” data-medium-file=”https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png?w=400″ data-large-file=”https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png?w=616″ loading=”lazy” src=”https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png?w=400″ alt=”” width=”400″ height=”172″ srcset=”https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png 616w, https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png?resize=250,108 250w, https://hackaday.com/wp-content/uploads/2021/09/9701491631368879842.png?resize=400,172 400w” sizes=”(max-width: 400px) 100vw, 400px”>

Over on Hackaday.io, [danjovic] presents clOCkTAL, a simple LED clock for those of us who struggle with the very concept of making it easy to read the time. Move aside binary clocks, you’re easy, let’s talk binary coded octal. Yes, it is a thing. We’ll leave it to [danjovic] to describe how to read the time from it:

Do not try to do the math using 6 bits. The trick to read this clock is to read every 3-bit digit in binary and multiply the MSBs by 8 before summing to the LSBs.

Simple. If you’re awake enough, that is. Anyway, we’re a big fan of the stripped-down raw build method using perf board, and scrap wood. No details hidden here. The circuit is straightforward, being based on a minimal configuration needed to drive the PIC16F688 and a handful of LEDs arranged in a 3×4 matrix.

An interesting detail is the use of Bresenham’s Algorithm to derive the one event-per-second needed to keep track of time. And no, this isn’t the more famous Bresenham’s line algorithm you may be more familiar with, it’s much simpler, but does work on the same principle of replacing expensive arithmetic division operations with incremental errors. The original Bresenham’s Algorithm was devised for using with X-Y plotters, which had limited resolution, and was intended to allow movements that were in an imperfect ratio to that resolution. It was developed into a method for approximating lines, then extended to cover circles, ellipses and other types of drawables.

Bresenham’s Algorithm allows you to create the event you want, with any period from any oscillator frequency, and this is very useful indeed. Now obviously you don’t get something for nothing, and the downside is periodic jitter, but at least it is deterministic. The way it works is to alternate the period being counted between two power-of-two division ratios (or something easily created from that) such that the average period is what you want. Cycle-to-cycle there is an error, but overall these errors do not accumulate, and we get the desired average period. The example given in [Roman Black]’s description is to alternate 16 cycles and 24 cycles to get an average of 20 cycles.

The software side of things can be inspected by heading over to the clOCkTAL GitHub which makes use of the Small Device C Compiler which has support for a fair few devices, in case dear readers, you had not yet come across it.

The video shows the clock being put through a simple test demonstrating the LED dimming in response to ambient light. All-in-all a pretty simple and effective build.

…read more

Source:: Hackaday