MSP430G2xxx based Tea Timer
November 8, 2010Hello all,
I am an avid tea drinker. As such, I make many cups of various kinds of tea, each with their own optimal steep times. Usually, I just keep track of the time, but I have found that I can make the best cup of tea by setting a timer to go off after a certain amount of time, depending on the style of tea that I am brewing. I find the best results come from going by the following table (based on personal preference and experimentation):
Tea Variety | Recommended Steep Time |
White tea | 2 minutes |
Green tea | 3 minutes |
Black/Oolong tea | 4 minutes |
Herbal tea/infusions (most varieties) | 5 minutes |
Rooibos tea (African redbush) | 6 minutes |
Chai tea (regardless of base) | 8 minutes |
Kukicha twig tea and other varieties | in intervals of 1 minute |
With this in mind, I decided that I should make a tea timer. This seems simple enough, and it has been on my to-do list for a while anyway, and 43oh! is having an MSP430 Project of the Month Contest, so I decided to hack it together. Turned out rather simple.
The full part count is as follows:
- 3 toggle switches (or a 3-switch DIP, as I used)
- 4 10k resistors
- 1 5mm green LED
- 1 piezo buzzer with integrated driver circuit
- 1 tact switch/push button
- wire
- Any MSP430 uC with at least 1k flash and a TimerA module (though I could have hacked the WDT to work)
So, I assembled the circuit on my breadboard, following the schematic at the end of my post, and programmed the MSP430.
For the code, I borrowed beretta's TimerA code example, and tweaked it to fit the needs of my timer. The timer is to read the input value of the three switches as a binary value to determine tea type, set a "goal" amount of half-second ticks based upon the user's request, and when the user presses the "start" button, go into a waiting period. While the uC is waiting, the LED will be flashed slowly at first, but increasingly faster as the timer ticks closer to the goal. Once the goal amount of ticks has been reached, the LED will be turned on, and the buzzer will sound (mine sounds reminiscent of an old-fashioned tea kettle, so it's suitable). The buzzing can be stopped by pressing the "start" button again to reset the device, and allow another time to be set. Simple enough, right?
The code is available:
Basically, as I stated above, the user selects a mode (tea type) by way of the three switches, and then presses a button to start the timer. When the tea is done steeping, the buzzer goes off, and the user can press the button again to reset it. The switch positions corresponding to the tea types are as follows:
P1.6 | P1.5 | P1.4 | Tea type (time) |
0 | 0 | 0 | White Tea (2 minutes) |
0 | 0 | 1 | Green Tea (3 minutes) |
0 | 1 | 0 | Black/Oolong Tea (4 minutes) |
0 | 1 | 1 | Herbal Tea/Infusions (5 minutes) |
1 | 0 | 0 | Chai Tea (8 minutes) |
1 | 0 | 1 | Rooibos Tea (6 minutes) |
1 | 1 | 0 | Other1 (1 minute) |
1 | 1 | 1 | Other2 (30 seconds) |
Now, this isn't the most accurate timer, as I'm not using the crystal, but it's accurate enough to steep a good cup of tea (believe me, I've used it a lot since I hacked it together), and my stopwatch tells me it's accurate to within around 6 seconds on average.
In the future, I'd like to use a better input mechanism (I might be geeky enough to remember binary codes for tea types, but most are not, so a rotary switch or something would be perfect), maybe a cheap LCD for a status indicator, even showing how much time remains, and potentially having the last two codes (110 and 111) be user programmable for any time in second increments up to half of an unsigned long (as the ticks are half-second ticks). Maybe even shove it all into an Altoids tin for portability and the geek-chic factor. Who knows?
Anyways, here's the schematic, and a photo of it in action:
Tea-Timer in action! (notice the LaunchPad is only used as a power supply here... I don't have a battery clip yet.)
schematic
Thanks for reading!
Keep tweaking~
EDIT: Featured on 43oh! again! Check it here!
EDIT THE SECOND: Ended up tied for 4th place. Congratulations to the winners, AMagill and simpleavr! Check out the results here.