State of the art in timers?

DIY timing systems
Post Reply
User avatar
SlartyBartFast
Master Pine Head
Master Pine Head
Posts: 272
Joined: Mon Feb 12, 2007 11:30 am
Location: Montreal, Quebec

State of the art in timers?

Post by SlartyBartFast »

What's the latest preferred flavour for DIY timers?

I see Arduinos mentioned. Anyone try a Rasberry Pi?

Traveling down memory lane, I remember preparing the circuit diagram for an expandable latching counter. Each sensor latched a counter for that lane. It was modular and simple. Can't remember if I did the same for a timer.

Something like the Swantech timers.

With a mux/demux and I2C support, I wonder if using a microcontroller/Arduino/Rasberry Pi purely for interfacing and keeping it simple for counting and timing might not be a good idea.

Keep the counting and timing out of the realm of software issues and interrupts.
User avatar
gpraceman
Site Admin
Site Admin
Posts: 4926
Joined: Fri Jun 20, 2003 12:46 am
Location: Highlands Ranch, CO
Contact:

Re: State of the art in timers?

Post by gpraceman »

SlartyBartFast wrote:Anyone try a Rasberry Pi?
Sounds yummy. I haven't heard of anyone using Raspberry Pi as a timer.

The Arduino plans posted by Indy are a good option for the DIYer not looking to reinvent the wheel.

http://www.derbytalk.com/viewtopic.php?f=5&t=6216" target="_blank
Randy Lisano
Romans 5:8

Awana Grand Prix and Pinewood Derby racing - Where a child, an adult and a small block of wood combine for a lot of fun and memories.
User avatar
SlartyBartFast
Master Pine Head
Master Pine Head
Posts: 272
Joined: Mon Feb 12, 2007 11:30 am
Location: Montreal, Quebec

Re: State of the art in timers?

Post by SlartyBartFast »

gpraceman wrote:
SlartyBartFast wrote:Anyone try a Rasberry Pi?
Sounds yummy. I haven't heard of anyone using Raspberry Pi as a timer.

The Arduino plans posted by Indy are a good option for the DIYer not looking to reinvent the wheel.

http://www.derbytalk.com/viewtopic.php?f=5&t=6216" target="_blank
Oh come on gpraceman! Re-inventing the wheel is what hobbyists and fanatics do best. :p

I read that post and it is why I started this thread. I've always been suspect of software controlled timing.

I'm a firm believer in using each thing to its strength and building modular. A timer such as the Swantech is unquestionably accurate. No programming errors, well tested, solid state. It just doesn't communicate.

If I can find my circuit notes for lane position counter, I'm really going to have to just build the thing. The plans have been gathering dust for a couple decades now. Adding a timer shouldn't be much more work.

Then, maybe I'll see about data acquisition...

Besides, if I'm going to go the microcontroller route I should use the AVR programmer I already purchased (although that is sitting in component pieces in a box awaiting assembly :p)
User avatar
gpraceman
Site Admin
Site Admin
Posts: 4926
Joined: Fri Jun 20, 2003 12:46 am
Location: Highlands Ranch, CO
Contact:

Re: State of the art in timers?

Post by gpraceman »

SlartyBartFast wrote:I read that post and it is why I started this thread. I've always been suspect of software controlled timing. I'm a firm believer in using each thing to its strength and building modular. A timer such as the Swantech is unquestionably accurate. No programming errors, well tested, solid state. It just doesn't communicate.
:scratching: The only software controlling the timing is the timer's firmware, whether it be a serial port timer or one that has no computer interface. The only real difference firmware-wise, is that there is a bit of extra code written to take those timing results and send them to the computer. The computer itself just reads and displays those results.

When I think of software controlled timing (as in computer software, not firmware) that is with a parallel port type of system where the state of the inputs (lane sensors and start switch) are directly read by the computer and the computer does the timing. GPRM V6 and below supported this type of communications. With the advent of more layers between the software and the hardware with later versions of Windows, real time race timing from a computer became impractical. So, support for that was dropped. GPRM V7+ only supports serial port timing systems. Read and display. No timing on the part of GPRM.
Randy Lisano
Romans 5:8

Awana Grand Prix and Pinewood Derby racing - Where a child, an adult and a small block of wood combine for a lot of fun and memories.
User avatar
SlartyBartFast
Master Pine Head
Master Pine Head
Posts: 272
Joined: Mon Feb 12, 2007 11:30 am
Location: Montreal, Quebec

Re: State of the art in timers?

Post by SlartyBartFast »

Just revisiting, in the past I had a few discussions where people were concerned about the errors that might be induced by poorly written firmware and interrupt handling.

Taking a good look at the Swan-Tech timer I realise that even that is a PIC microcontroller based timer. Guess even when computer connectivity isn't an issue the go to is microcontrollers and not decade counters.

Kind of disappointed me that Swan-Tech doesn't have computer connectivity and scaleability.

My old schematic from years ago was just a set of counters. Each lane would produce a signal that would be counted by all counters (lanes) an the counter for the lane that generated the signal would be latched.

As I'm moving houses, I might come across it...

Meanwhile, I have found the various bits and pieces I had bought to recreate the DerbyTimer PIC based timer using an AVR. But now, you can just buy an Arduino and start from there.

I've also found this interesting PIC based board: https://www.sparkfun.com/products/762" target="_blank

Lots of ways to reinvent the wheel. :)
User avatar
gpraceman
Site Admin
Site Admin
Posts: 4926
Joined: Fri Jun 20, 2003 12:46 am
Location: Highlands Ranch, CO
Contact:

Re: State of the art in timers?

Post by gpraceman »

Ah, you were talking about electronic timing without using a microcontroller.
Randy Lisano
Romans 5:8

Awana Grand Prix and Pinewood Derby racing - Where a child, an adult and a small block of wood combine for a lot of fun and memories.
User avatar
SlartyBartFast
Master Pine Head
Master Pine Head
Posts: 272
Joined: Mon Feb 12, 2007 11:30 am
Location: Montreal, Quebec

Re: State of the art in timers?

Post by SlartyBartFast »

gpraceman wrote:Ah, you were talking about electronic timing without using a microcontroller.
Sorry for not being clear.
Post Reply