pilzner:
I don’t seem to be able to identify the type of timer that I would need.
Is there an example somewhere that you could point me towards to create a timer that has a simple rotary dial and simple 7 seg display?
The problem is there are too many ways to do the still undefined design you've put forth. How many timers and what display(s) might be the 1st detail to (try to) definitize. You've mentioned LCD and bubble LEDs. Let's look at the latter.
https://www.sparkfun.com/products/12710
You need 7 pins to control the segments and 4 to control which digit is on. Ands that’s for 4 digits. Is 4 enough for any single timer display ? 11 pins is really all you have on an Uno. What Arduino are you going to use ? You need another 4 pins to control each additional bubble display. Does that mean going to a Mega ? Or perhaps using an LED 7 segment driver or some shift registers ? Or going to an LCD ? All of these have $$s and space and complexity considerations that “we” can’t evaluate for you.
What’s your software background ? Not knowing what, if any, background you have let me recommend that you should read the following pages to “learn how to swim”.
http://arduino.cc/en/Tutorial/Foundations
Read the pages on the basics of a sketch (gack, I loathe that term). Then the pages on digital pins, variables and functions.
And these on libraries.
https://learn.adafruit.com/adafruit-all … -libraries
http://www.arduino.cc/en/Hacking/Libraries
http://arduino.cc/en/Tutorial/HomePage
Look at the 1’st pages on Basics and then those under Control structures for - if, for loops and the switch case.
If you can grok the above then you should be able to look at, and decipher how, most sketches work. Look at the sketches in the lessons on this page.
http://arduino.cc/en/Tutorial/Links
Above all else bookmark this page and have it open when reading or writing a sketch.
http://arduino.cc/en/Reference/HomePage
It’s your Rosetta Stone.
There are also a gaggle of Arduino tutorials online. Google for them.
There are many ways to time events w/an Arduino but I’ll guess you want a count down timer for display purposes. I’ve not seen pre-“done” software (aka a library) to do that but I’ve not looked. You can Google as well as I can.